diff options
| author | Michal Marek <mmarek@suse.cz> | 2011-06-09 09:35:22 -0400 |
|---|---|---|
| committer | Michal Marek <mmarek@suse.cz> | 2011-06-09 17:05:54 -0400 |
| commit | fc4da9a3e68b1f64237fafda084f61067f568a99 (patch) | |
| tree | fcbcdde8bcd1b1bc85a7c0daba00971bce9c3cb1 | |
| parent | 78d3bb4483ba1b206dbaaf209219ed517b01f7da (diff) | |
kbuild: Move depmod call to a separate script
Do not bloat the Makefile with multiline shell statements. No
user-visible change intended.
Signed-off-by: Michal Marek <mmarek@suse.cz>
| -rw-r--r-- | Makefile | 12 | ||||
| -rwxr-xr-x | scripts/depmod.sh | 25 |
2 files changed, 26 insertions, 11 deletions
| @@ -1110,11 +1110,6 @@ modules_install: _modinst_ _modinst_post | |||
| 1110 | 1110 | ||
| 1111 | PHONY += _modinst_ | 1111 | PHONY += _modinst_ |
| 1112 | _modinst_: | 1112 | _modinst_: |
| 1113 | @if [ -z "`$(DEPMOD) -V 2>/dev/null | grep module-init-tools`" ]; then \ | ||
| 1114 | echo "Warning: you may need to install module-init-tools"; \ | ||
| 1115 | echo "See http://www.codemonkey.org.uk/docs/post-halloween-2.6.txt";\ | ||
| 1116 | sleep 1; \ | ||
| 1117 | fi | ||
| 1118 | @rm -rf $(MODLIB)/kernel | 1113 | @rm -rf $(MODLIB)/kernel |
| 1119 | @rm -f $(MODLIB)/source | 1114 | @rm -f $(MODLIB)/source |
| 1120 | @mkdir -p $(MODLIB)/kernel | 1115 | @mkdir -p $(MODLIB)/kernel |
| @@ -1531,12 +1526,7 @@ quiet_cmd_rmfiles = $(if $(wildcard $(rm-files)),CLEAN $(wildcard $(rm-files)) | |||
| 1531 | 1526 | ||
| 1532 | # Run depmod only if we have System.map and depmod is executable | 1527 | # Run depmod only if we have System.map and depmod is executable |
| 1533 | quiet_cmd_depmod = DEPMOD $(KERNELRELEASE) | 1528 | quiet_cmd_depmod = DEPMOD $(KERNELRELEASE) |
| 1534 | cmd_depmod = \ | 1529 | cmd_depmod = $(srctree)/scripts/depmod.sh $(DEPMOD) $(KERNELRELEASE) |
| 1535 | if [ -r System.map -a -x $(DEPMOD) ]; then \ | ||
| 1536 | $(DEPMOD) -ae -F System.map \ | ||
| 1537 | $(if $(strip $(INSTALL_MOD_PATH)), -b $(INSTALL_MOD_PATH) ) \ | ||
| 1538 | $(KERNELRELEASE); \ | ||
| 1539 | fi | ||
| 1540 | 1530 | ||
| 1541 | # Create temporary dir for module support files | 1531 | # Create temporary dir for module support files |
| 1542 | # clean it up only when building all modules | 1532 | # clean it up only when building all modules |
diff --git a/scripts/depmod.sh b/scripts/depmod.sh new file mode 100755 index 000000000000..9f205dafed36 --- /dev/null +++ b/scripts/depmod.sh | |||
| @@ -0,0 +1,25 @@ | |||
| 1 | #!/bin/sh | ||
| 2 | # | ||
| 3 | # A depmod wrapper used by the toplevel Makefile | ||
| 4 | |||
| 5 | if test $# -ne 2; then | ||
| 6 | echo "Usage: $0 /sbin/depmod <kernelrelease>" >&2 | ||
| 7 | exit 1 | ||
| 8 | fi | ||
| 9 | DEPMOD=$1 | ||
| 10 | KERNELRELEASE=$2 | ||
| 11 | |||
| 12 | if ! "$DEPMOD" -V 2>/dev/null | grep -q module-init-tools; then | ||
| 13 | echo "Warning: you may need to install module-init-tools" >&2 | ||
| 14 | echo "See http://www.codemonkey.org.uk/docs/post-halloween-2.6.txt" >&2 | ||
| 15 | sleep 1 | ||
| 16 | fi | ||
| 17 | |||
| 18 | if ! test -r System.map -a -x "$DEPMOD"; then | ||
| 19 | exit 0 | ||
| 20 | fi | ||
| 21 | set -- -ae -F System.map | ||
| 22 | if test -n "$INSTALL_MOD_PATH"; then | ||
| 23 | set -- "$@" -b "$INSTALL_MOD_PATH" | ||
| 24 | fi | ||
| 25 | exec "$DEPMOD" "$@" "$KERNELRELEASE" | ||
