summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--images/NEWS1
-rwxr-xr-ximages/make_boot_img17
2 files changed, 2 insertions, 16 deletions
diff --git a/images/NEWS b/images/NEWS
index ff0126c03..968639069 100644
--- a/images/NEWS
+++ b/images/NEWS
@@ -1,4 +1,5 @@
- fix modules.order so that cciss got detected (mga#5833)
+- use new hotplug (mga#6323)
Version 1.82 - 12 September 2012 by Thierry Vignaud
diff --git a/images/make_boot_img b/images/make_boot_img
index 1c506b471..517d959ec 100755
--- a/images/make_boot_img
+++ b/images/make_boot_img
@@ -170,22 +170,7 @@ sub initrd {
_ "cp -a $firm $tmp_initrd/$dest";
}
- output("$tmp_initrd/hotplug", q{#!/bin/sh
-if [ "$SUBSYSTEM" = firmware ] && [ "$ACTION" = add ] && [ -n "$FIRMWARE" ] ; then
- if [ ! -e /sys$DEVPATH/loading ]; then
- exit 1
- fi
- if [ -e "/lib/firmware/$FIRMWARE" ]; then
- echo 1 > /sys$DEVPATH/loading
- cat "/lib/firmware/$FIRMWARE" > /sys$DEVPATH/data
- echo 0 > /sys$DEVPATH/loading
- exit 0
- fi
- echo -1 > /sys$DEVPATH/loading
- exit 1
-fi
-});
- _ "chmod 755 $tmp_initrd/hotplug";
+ _ "install $stage1_root/hotplug $tmp_initrd/";
symlink "../hotplug", "$tmp_initrd/sbin/hotplug";
_ "install $stage1_root/init $tmp_initrd/";
_ "install $stage1_root/stage1 $tmp_initrd/sbin/";