blob: d34dcd7cc727c862d39a16a65eb3026f7e475d03 [file] [log] [blame]
Eric Andersen6fd8c662001-02-13 20:04:30 +00001/* 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 */
Eric Andersen6fd8c662001-02-13 20:04:30 +00007#include <stdlib.h>
8#include <stdio.h>
9#include <sys/syscall.h>
10#include <linux/unistd.h>
Eric Andersencbe31da2001-02-20 06:14:08 +000011#include "busybox.h"
Eric Andersen6fd8c662001-02-13 20:04:30 +000012
13#ifndef __NR_pivot_root
Eric Andersen0ed99232001-02-23 02:31:03 +000014#warning This kernel does not support the pivot_root syscall
15#warning The pivot_root application is being stubbed out...
16int pivot_root_main(int argc, char **argv)
17{
18 printf("Please recompile with a kernel supporting the pivot_root syscall.\n");
19 return 0;
20}
21#else
Eric Andersen6fd8c662001-02-13 20:04:30 +000022
23static _syscall2(int,pivot_root,const char *,new_root,const char *,put_old)
24
25
26int pivot_root_main(int argc, char **argv)
27{
28 if (argc != 3)
Eric Andersen67991cf2001-02-14 21:23:06 +000029 show_usage();
Eric Andersen6fd8c662001-02-13 20:04:30 +000030
31 if (pivot_root(argv[1],argv[2]) < 0)
32 perror_msg_and_die("pivot_root");
33
34 return EXIT_SUCCESS;
35
36}
Eric Andersen0ed99232001-02-23 02:31:03 +000037#endif
Eric Andersen6fd8c662001-02-13 20:04:30 +000038
39
40/*
41Local Variables:
42c-file-style: "linux"
43c-basic-offset: 4
44tab-width: 4
45End:
46*/