summaryrefslogtreecommitdiffstats
path: root/appliance
diff options
context:
space:
mode:
authorRichard Jones <rjones@trick.home.annexia.org>2009-06-04 10:58:28 +0100
committerRichard Jones <rjones@trick.home.annexia.org>2009-06-04 10:58:28 +0100
commita903368c6db67dc599e5cbefe9e41611fba81faf (patch)
treea9803ca4fd404cfb4612a1235e8d50867cb27c99 /appliance
parent6490ed4e5106b7c4e10c693068525c879dfb5964 (diff)
downloadlibguestfs-a903368c6db67dc599e5cbefe9e41611fba81faf.tar.gz
libguestfs-a903368c6db67dc599e5cbefe9e41611fba81faf.tar.xz
libguestfs-a903368c6db67dc599e5cbefe9e41611fba81faf.zip
Add missing /dev devices (bug 503169 comment 10).
Diffstat (limited to 'appliance')
-rwxr-xr-xappliance/make-initramfs.sh.in7
1 files changed, 7 insertions, 0 deletions
diff --git a/appliance/make-initramfs.sh.in b/appliance/make-initramfs.sh.in
index 5cdfed3a..72289931 100755
--- a/appliance/make-initramfs.sh.in
+++ b/appliance/make-initramfs.sh.in
@@ -132,11 +132,18 @@ cat > init.new <<'__EOF__'
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
+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
mount -t proc /proc /proc
mount -t sysfs /sys /sys
mount -t devpts -o gid=5,mode=620 /dev/pts /dev/pts
+ln -sf /proc/self/fd/0 /dev/stdin
+ln -sf /proc/self/fd/1 /dev/stdout
+ln -sf /proc/self/fd/2 /dev/stderr
modprobe virtio_pci
modprobe virtio_net
modprobe dm_mod ||: