summaryrefslogtreecommitdiff
path: root/hook-functions
diff options
context:
space:
mode:
authormaximilian attems <maks@debian.org>2006-10-18 13:16:03 +0200
committermaximilian attems <maks@debian.org>2006-10-18 13:16:03 +0200
commitdc67493c8b72ebb4a360194a13c74a13d06def52 (patch)
tree8bdbde7e898899789d9ecb54c511cb0de577c13d /hook-functions
parent63f337b6a8cfa058bb2ed9fcf0de6a71f3ffb9ab (diff)
downloadinitramfs-tools-dc67493c8b72ebb4a360194a13c74a13d06def52.tar.gz
initramfs-tools-dc67493c8b72ebb4a360194a13c74a13d06def52.zip
- improve run_bootloader (elilo, zipl)
- fix preinst sed command - bunch of minor fixes
Diffstat (limited to 'hook-functions')
-rw-r--r--hook-functions3
1 files changed, 2 insertions, 1 deletions
diff --git a/hook-functions b/hook-functions
index 98c88a2..8df30f2 100644
--- a/hook-functions
+++ b/hook-functions
@@ -40,7 +40,8 @@ add_modules_from_file()
manual_add_modules()
{
- for mam_x in $(modprobe --set-version="${version}" --show-depends "${1}" 2>/dev/null | awk '/^insmod/ { print $2 }'); do
+ for mam_x in $(modprobe --set-version="${version}" --ignore-install \
+ --show-depends "${1}" 2>/dev/null | awk '/^insmod/ { print $2 }'); do
# Prune duplicates
if [ -e "${DESTDIR}/${mam_x}" ]; then
continue