summaryrefslogtreecommitdiffstats
path: root/tools/busybox-patches/unionfs-run-init-1.10.2.diff
blob: 6e1d25fb5d898b2a355fdc7971e2d141aa992dd0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
diff -wur busybox-1.10.2/util-linux/switch_root.c busybox-1.10.2-openslx/util-linux/switch_root.c
--- busybox-1.10.2/util-linux/switch_root.c	2008-04-19 05:50:39.000000000 +0200
+++ busybox-1.10.2-openslx/util-linux/switch_root.c	2008-05-31 18:20:21.000000000 +0200
@@ -105,6 +105,10 @@
 	// Overmount / with newdir and chroot into it.  The chdir is needed to
 	// recalculate "." and ".." links.
 
+	if ( !lstat("/rorootfs", &st1 ) )
+		if ( mount("/rorootfs", "/", NULL, MS_MOVE, NULL) )
+			bb_error_msg_and_die("moving rorootfs");
+
 	if (mount(".", "/", NULL, MS_MOVE, NULL))
 		bb_error_msg_and_die("error moving root");
 	xchroot(".");