diff options
-rwxr-xr-x | appliance/init | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/appliance/init b/appliance/init index 41ce9166..96d785c5 100755 --- a/appliance/init +++ b/appliance/init @@ -3,8 +3,12 @@ echo Starting /init script ... PATH=/sbin:/usr/sbin:$PATH mount -t tmpfs none /dev mkdir /dev/pts /dev/shm /dev/mapper -MAKEDEV mem null port zero core full ram tty console fd \ - hda hdb hdc hdd sda sdb sdc sdd loop sd +# Must do each MAKEDEV individually, because if one device fails, +# MAKEDEV will quit without creating the rest (RHBZ#507374). +for dev in mem null port zero core full ram tty console fd \ + hda hdb hdc hdd sda sdb sdc sdd loop sd; do + MAKEDEV $dev ||: +done mknod /dev/ptmx c 5 2; chmod 0666 /dev/ptmx mknod /dev/random c 1 8; chmod 0666 /dev/random mknod /dev/urandom c 1 9; chmod 0444 /dev/urandom |