summaryrefslogtreecommitdiffstats
path: root/fs/cpio/init
diff options
context:
space:
mode:
authorArnout Vandecappelle (Essensium/Mind) <arnout@mind.be>2011-09-06 23:16:08 +0200
committerPeter Korsgaard <jacmet@sunsite.dk>2011-09-27 22:36:26 +0200
commit3fac21ef8d794b47f731003b399e704349c54346 (patch)
treeaf2e10c1908c9241f89defd522eeb4767980aa00 /fs/cpio/init
parent0a775837fb869ff6ac0996a08b8a3c9ead8fdbf0 (diff)
downloadbuildroot-novena-3fac21ef8d794b47f731003b399e704349c54346.tar.gz
buildroot-novena-3fac21ef8d794b47f731003b399e704349c54346.zip
cpio: fix boot with dynamic /dev
Devtmpfs doesn't get automounted by the kernel when an initramfs is used. Since cpio archives are used almost exclusively as an initramfs, the same fix should be applied to it as for the initramfs. Cfr. commit 424888e47431db738f5f9b3c6392435bfce7a842 and 10a130f91e5b947e2d2558443ff09b1686eac273. Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
Diffstat (limited to 'fs/cpio/init')
-rwxr-xr-xfs/cpio/init7
1 files changed, 7 insertions, 0 deletions
diff --git a/fs/cpio/init b/fs/cpio/init
new file mode 100755
index 000000000..a27548217
--- /dev/null
+++ b/fs/cpio/init
@@ -0,0 +1,7 @@
+#!/bin/sh
+# devtmpfs does not get automounted for initramfs
+/bin/mount -t devtmpfs devtmpfs /dev
+exec 0</dev/console
+exec 1>/dev/console
+exec 2>/dev/console
+exec /sbin/init $*