summaryrefslogtreecommitdiffstats
path: root/initramfs/initrd-stuff/init
diff options
context:
space:
mode:
Diffstat (limited to 'initramfs/initrd-stuff/init')
-rwxr-xr-xinitramfs/initrd-stuff/init8
1 files changed, 4 insertions, 4 deletions
diff --git a/initramfs/initrd-stuff/init b/initramfs/initrd-stuff/init
index e3257bc9..15d88fc9 100755
--- a/initramfs/initrd-stuff/init
+++ b/initramfs/initrd-stuff/init
@@ -487,7 +487,6 @@ if [ -n "${bldmod}" ] ; then
;;
lbdev)
# using clients local block device (disk partition is to be specified)
- echo "B: /dev/$blddev"
RDEV=/dev/$blddev
;;
esac
@@ -770,9 +769,10 @@ fi
# post init for some distro specific
postinit
-[ -s /initramfs/postinit.local ] && \
- mv /initramfs/postinit.local /bin/postinit.local
-[ -x /bin/postinit.local ] && {
+[ -s /initramfs/postinit.local ] && {
+ mv /initramfs/postinit.local /bin/postinit.local;
+ chmod u+x /bin/postinit.local; }
+[ -f /bin/postinit.local ] && {
[ $DEBUGLEVEL -gt 0 ] && \
echo "Running postinit.local - if boot stops here, check the script!"
/bin/postinit.local; }