# HG changeset patch # User Rob Landley # Date 1196733914 21600 # Node ID 0efba0e70c43e6b2e559d00e11798570089aab47 # Parent 8c0809cee2b07dca024db87ce4cb79f92225cc9a Other chroots fall back to "/bin/sh -i", so add the -i. diff -r 8c0809cee2b0 -r 0efba0e70c43 toys/chroot.c --- a/toys/chroot.c Mon Dec 03 19:59:34 2007 -0600 +++ b/toys/chroot.c Mon Dec 03 20:05:14 2007 -0600 @@ -1,13 +1,15 @@ /* vi: set sw=4 ts=4: */ /* * chroot.c - Run command in new root directory. + * + * Not in SUSv3. */ #include "toys.h" void chroot_main(void) { - char *binsh[] = {"/bin/sh", 0}; + char *binsh[] = {"/bin/sh", "-i", 0}; if (chdir(*toys.optargs) || chroot(".")) perror_exit("%s", *toys.optargs); xexec(toys.optargs[1] ? toys.optargs+1 : binsh);