It turns out that DODMALLOC was broken when I reorganized busybox.h
[oweals/busybox.git] / pivot_root.c
1 /* vi: set sw=4 ts=4: */
2 /*
3  * pivot_root.c - Change root file system.  Based on util-linux 2.10s
4  *
5  * busyboxed by Evin Robertson
6  */
7 #include <stdlib.h>
8 #include <stdio.h>
9 #include <sys/syscall.h>
10 #include <linux/unistd.h>
11 #include "busybox.h"
12
13 #ifndef __NR_pivot_root
14 #error Sorry, but this kernel does not support the pivot_root syscall
15 #endif
16
17 static _syscall2(int,pivot_root,const char *,new_root,const char *,put_old)
18
19
20 int pivot_root_main(int argc, char **argv)
21 {
22     if (argc != 3)
23         show_usage();
24
25     if (pivot_root(argv[1],argv[2]) < 0)
26         perror_msg_and_die("pivot_root");
27
28     return EXIT_SUCCESS;
29
30 }
31
32
33 /*
34 Local Variables:
35 c-file-style: "linux"
36 c-basic-offset: 4
37 tab-width: 4
38 End:
39 */