From 93ae3fa9da7e31bba563977ee61b2df1b395400f Mon Sep 17 00:00:00 2001 From: Richard Jones Date: Mon, 13 Sep 2010 14:44:05 +0100 Subject: [PATCH 1/1] ubuntu: /proc can be a symlink If it's a symlink then the succeeding mount commnd will fail. Remove it and make a /proc directory. --- appliance/init | 1 + 1 file changed, 1 insertion(+) diff --git a/appliance/init b/appliance/init index cda6453..bd93d15 100755 --- a/appliance/init +++ b/appliance/init @@ -7,6 +7,7 @@ export PATH mkdir -p /sysroot +rm -f /proc; mkdir /proc mount -t proc /proc /proc mount -t sysfs /sys /sys -- 1.8.3.1