summaryrefslogtreecommitdiffstats
path: root/initramfs
diff options
context:
space:
mode:
Diffstat (limited to 'initramfs')
-rw-r--r--initramfs/distro-specs/suse/functions-10.22
-rwxr-xr-xinitramfs/stage3-stuff/bin/hwautocfg3
2 files changed, 3 insertions, 2 deletions
diff --git a/initramfs/distro-specs/suse/functions-10.2 b/initramfs/distro-specs/suse/functions-10.2
index 16d0cdee..f7412fa6 100644
--- a/initramfs/distro-specs/suse/functions-10.2
+++ b/initramfs/distro-specs/suse/functions-10.2
@@ -35,7 +35,7 @@ local start=5
local stop=18
if [ "x$start_dreshal" = "xyes" ]; then
for dir in /var/run/dbus /var/run/resmgr/classes /var/run/hal \
- /var/cache/hald /var/lib/PolicyKit; do
+ /var/cache/hald /var/lib/PolicyKit /var/lib/misc ; do
testmkd /mnt/$dir
done
if [ -f /mnt/etc/init.d/dbus ] ; then
diff --git a/initramfs/stage3-stuff/bin/hwautocfg b/initramfs/stage3-stuff/bin/hwautocfg
index 39969808..5bb4885b 100755
--- a/initramfs/stage3-stuff/bin/hwautocfg
+++ b/initramfs/stage3-stuff/bin/hwautocfg
@@ -57,7 +57,8 @@ mdev -s
#( hwinfo --bluetooth >/etc/hwinfo.bt ) &
# load harddisk driver and check for harddisk
-( grep -q -E "IDE|SCSI" /etc/hwinfo.data && modprobe ${MODPRV} sd_mod
+( grep -q -E "IDE|SCSI" /etc/hwinfo.data && { \
+ modprobe ${MODPRV} sd_mod ; modprobe ${MODPRV} ide-disk; }
hwinfo --disk | sed -n "/Device File: /p" | \
sed -e "s|.*Device File: /dev/||;s| .*||" >/etc/hwinfo.disk
echo "disk detection finished at $(sysup)" >/tmp/diskready; ) &