diff options
-rw-r--r-- | initramfs/distro-specs/debian/functions-default | 2 | ||||
-rw-r--r-- | initramfs/distro-specs/suse/functions-default | 2 | ||||
-rw-r--r-- | initramfs/distro-specs/ubuntu/functions-default | 10 |
3 files changed, 6 insertions, 8 deletions
diff --git a/initramfs/distro-specs/debian/functions-default b/initramfs/distro-specs/debian/functions-default index 879d5c0b..a3f46652 100644 --- a/initramfs/distro-specs/debian/functions-default +++ b/initramfs/distro-specs/debian/functions-default @@ -70,7 +70,7 @@ initial_boot () { # boot.slx is a special runlevel script generated within initialramfs which # should be executed before the normal runlevel scripts. Proper shutdown is # not needed!? - for i in boot.slx mountkernfs.sh mountvirtfs udev procps.sh bootlogd \ + for i in mountkernfs.sh mountvirtfs boot.slx udev procps.sh bootlogd \ $D_SPLASHY keymap.sh hwclock.sh sudo dbus-1; do count=$(($count + 1)) [ $DEBUGLEVEL -ge 2 ] && echo "boot-runlevelscript $i" diff --git a/initramfs/distro-specs/suse/functions-default b/initramfs/distro-specs/suse/functions-default index 6b2ce754..78a55064 100644 --- a/initramfs/distro-specs/suse/functions-default +++ b/initramfs/distro-specs/suse/functions-default @@ -328,7 +328,7 @@ local count=10 # boot.slx is a special runlevel script generated within initialramfs which # should be executed before the normal runlevel scripts. Proper shutdown is # not needed!? -for i in boot.slx boot.udev boot.proc boot.klog boot.loadmodules boot.clock \ +for i in boot.udev boot.proc boot.klog boot.loadmodules boot.slx boot.clock \ boot.sysctl boot.ipconfig boot.swap $D_SPLASHY; do count=$(($count + 1)) [ $DEBUGLEVEL -ge 2 ] && echo "boot-runlevelscript $i" diff --git a/initramfs/distro-specs/ubuntu/functions-default b/initramfs/distro-specs/ubuntu/functions-default index 884a40ad..fe27f245 100644 --- a/initramfs/distro-specs/ubuntu/functions-default +++ b/initramfs/distro-specs/ubuntu/functions-default @@ -29,11 +29,9 @@ D_DIRINBINDMNT="/var/run /var/log /var/tmp /var/lib/gdm" D_RODIRSINRW="/etc/X11/xkb /var/lib/gconf /var/lib/dpkg /var/lib/aspell \ /var/lib/pango /var/lib/defoma /var/cache/fontconfig" #D_RWDIRSINRO="/var/lib/gdm" -D_DIRINDXS="/var/X11R6/compose-cache \ -/var/run/sysconfig/tmp /var/adm /var/lib/rpm /var/lib/nobody \ -/var/lib/pam_devperm /var/lib/bluetooth \ -/var/lib/texmf /var/lib/nfs/sm \ -/var/lib/misc /var/lib/acpi /var/spool/cron \ +D_DIRINDXS="/var/X11R6/compose-cache /var/run/sysconfig/tmp /var/adm \ +/var/lib/nobody /var/lib/pam_devperm /var/lib/bluetooth /var/lib/texmf \ +/var/lib/nfs/sm /var/lib/misc /var/lib/acpi /var/spool/cron \ /var/lock/subsys/sysconfig" # empty functions are defined at the beginning of /etc/functions @@ -77,7 +75,7 @@ local count=10 # boot.slx is a special runlevel script generated within initialramfs which # should be executed before the normal runlevel scripts. Proper shutdown is # not needed!? -for i in boot.slx mountkernfs.sh keyboard-setup mountdevsubfs.sh procps.sh \ +for i in mountkernfs.sh mountdevsubfs.sh boot.slx keyboard-setup procps \ bootlogd hwclock.sh sudo console-setup $D_SPLASHY; do count=$(($count + 1)) [ $DEBUGLEVEL -ge 2 ] && echo "boot-runlevelscript $i" |