2001-02-14 01:34:30 +05:30
|
|
|
/* vi: set sw=4 ts=4: */
|
|
|
|
/*
|
|
|
|
* pivot_root.c - Change root file system. Based on util-linux 2.10s
|
|
|
|
*
|
|
|
|
* busyboxed by Evin Robertson
|
2001-02-25 00:47:07 +05:30
|
|
|
* pivot_root syscall stubbed by Erik Andersen, so it will compile
|
2004-03-15 13:59:22 +05:30
|
|
|
* regardless of the kernel being used.
|
2006-05-20 00:59:19 +05:30
|
|
|
*
|
2010-08-16 23:44:46 +05:30
|
|
|
* Licensed under GPLv2, see file LICENSE in this source tree.
|
2001-02-14 01:34:30 +05:30
|
|
|
*/
|
2007-05-27 00:30:18 +05:30
|
|
|
#include "libbb.h"
|
2001-02-14 01:34:30 +05:30
|
|
|
|
2001-04-05 08:44:39 +05:30
|
|
|
extern int pivot_root(const char * new_root,const char * put_old);
|
2001-02-14 01:34:30 +05:30
|
|
|
|
2007-10-11 15:35:36 +05:30
|
|
|
int pivot_root_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
|
2001-02-14 01:34:30 +05:30
|
|
|
int pivot_root_main(int argc, char **argv)
|
|
|
|
{
|
2006-09-10 23:56:51 +05:30
|
|
|
if (argc != 3)
|
|
|
|
bb_show_usage();
|
2001-02-14 01:34:30 +05:30
|
|
|
|
2007-02-06 06:05:36 +05:30
|
|
|
if (pivot_root(argv[1], argv[2]) < 0) {
|
|
|
|
/* prints "pivot_root: <strerror text>" */
|
|
|
|
bb_perror_nomsg_and_die();
|
|
|
|
}
|
2001-02-14 01:34:30 +05:30
|
|
|
|
2006-09-10 23:56:51 +05:30
|
|
|
return EXIT_SUCCESS;
|
2001-02-14 01:34:30 +05:30
|
|
|
}
|