On the palmpre machine we are currently come into the SHR rootfs through mounting it from
/boot and switch the rootfs via pivot_root. So we can't automatically mount devtmpfs on
/dev. Instead we do this right after SHR begins to boot and before any other filesystem is
mounted on the new rootfs.
Signed-off-by: Simon Busch <morphis@gravedo.de>
Acked-by: Klaus Kurzmann <mok@fluxnetz.de>
--- /dev/null
+#!/bin/sh
+
+mount -t devtmpfs -o mode=0755,nr_inodes=0 devtmpfs /dev
+
+# Create additional nodes which devtmpfs does not provide
+test -c /dev/fd || ln -s /proc/self/fd /dev/fd
+test -c /dev/stdin || ln -s fd/0 /dev/stdin
+test -c /dev/stdout || ln -s fd/1 /dev/stdout
+test -c /dev/stderr || ln -s fd/2 /dev/stderr
RDEPENDS_${PN} = "procps"
LICENSE = "GPL"
PV = "0.0.1"
-PR = "r20"
+PR = "r21"
RCONFLICTS_${PN} = "initscripts"
file://umountnfs.sh \
"
+SRC_URI_append_palmpre = " file://mountdevtmpfs.sh"
+
inherit base
do_install () {
install -m 0755 ${WORKDIR}/umountfs ${D}${sysconfdir}/init.d
install -m 0755 ${WORKDIR}/umountnfs.sh ${D}${sysconfdir}/init.d
+ if [ "${MACHINE}" == "palmpre" ]; then
+ install -m 0755 ${WORKDIR}/mountdevtmpfs.sh ${D}${sysconfdir}/init.d
+ ln -sf ../init.d/mountdevtmpfs.sh ${D}${sysconfdir}/rcS.d/S03mountdevtmpfs.sh
+ fi
+
#
# Create runlevel links
#