mirror of
https://git.busybox.net/busybox
synced 2026-01-31 16:43:21 +00:00
Stub out pivot_root so it won't fail to compile.
-Erik
This commit is contained in:
parent
3574b70efc
commit
0ed9923887
2 changed files with 18 additions and 4 deletions
11
pivot_root.c
11
pivot_root.c
|
|
@ -11,8 +11,14 @@
|
|||
#include "busybox.h"
|
||||
|
||||
#ifndef __NR_pivot_root
|
||||
#error Sorry, but this kernel does not support the pivot_root syscall
|
||||
#endif
|
||||
#warning This kernel does not support the pivot_root syscall
|
||||
#warning The pivot_root application is being stubbed out...
|
||||
int pivot_root_main(int argc, char **argv)
|
||||
{
|
||||
printf("Please recompile with a kernel supporting the pivot_root syscall.\n");
|
||||
return 0;
|
||||
}
|
||||
#else
|
||||
|
||||
static _syscall2(int,pivot_root,const char *,new_root,const char *,put_old)
|
||||
|
||||
|
|
@ -28,6 +34,7 @@ int pivot_root_main(int argc, char **argv)
|
|||
return EXIT_SUCCESS;
|
||||
|
||||
}
|
||||
#endif
|
||||
|
||||
|
||||
/*
|
||||
|
|
|
|||
|
|
@ -11,8 +11,14 @@
|
|||
#include "busybox.h"
|
||||
|
||||
#ifndef __NR_pivot_root
|
||||
#error Sorry, but this kernel does not support the pivot_root syscall
|
||||
#endif
|
||||
#warning This kernel does not support the pivot_root syscall
|
||||
#warning The pivot_root application is being stubbed out...
|
||||
int pivot_root_main(int argc, char **argv)
|
||||
{
|
||||
printf("Please recompile with a kernel supporting the pivot_root syscall.\n");
|
||||
return 0;
|
||||
}
|
||||
#else
|
||||
|
||||
static _syscall2(int,pivot_root,const char *,new_root,const char *,put_old)
|
||||
|
||||
|
|
@ -28,6 +34,7 @@ int pivot_root_main(int argc, char **argv)
|
|||
return EXIT_SUCCESS;
|
||||
|
||||
}
|
||||
#endif
|
||||
|
||||
|
||||
/*
|
||||
|
|
|
|||
Loading…
Reference in a new issue