gz_open and gz_close were left in, even when BB_FEATURE_TAR_GZIP was disabled.
[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  * pivot_root syscall stubbed by Erik Andersen, so it will compile
7  *     regardless of the kernel being used. 
8  */
9 #include <stdlib.h>
10 #include <stdio.h>
11 #include <errno.h>
12 #include <sys/syscall.h>
13 #include <linux/unistd.h>
14 #include "busybox.h"
15
16 #ifndef __NR_pivot_root
17 #warning This kernel does not support the pivot_root syscall
18 #warning The pivot_root system call is being stubbed out...
19 int pivot_root(const char * new_root,const char * put_old)
20 {
21         /* BusyBox was compiled against a kernel that did not support
22          *  the pivot_root system call.  To make this application work,
23          *  you will need to recompile with a kernel supporting the
24          *  pivot_root system call.
25          */
26         fprintf(stderr, "\n\nTo make this application work, you will need to recompile\n");
27         fprintf(stderr, "with a kernel supporting the pivot_root system call. -Erik\n\n");
28         errno=ENOSYS;
29         return -1;
30 }
31 #else
32 static _syscall2(int,pivot_root,const char *,new_root,const char *,put_old)
33 #endif
34
35
36
37 int pivot_root_main(int argc, char **argv)
38 {
39     if (argc != 3)
40         show_usage();
41
42         if (pivot_root(argv[1],argv[2]) < 0)
43                 perror_msg_and_die("pivot_root");
44
45     return EXIT_SUCCESS;
46
47 }
48
49
50 /*
51 Local Variables:
52 c-file-style: "linux"
53 c-basic-offset: 4
54 tab-width: 4
55 End:
56 */