diff options
author | erik <erik@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2000-01-23 01:34:05 +0000 |
---|---|---|
committer | erik <erik@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2000-01-23 01:34:05 +0000 |
commit | 1e68bf8b811f3da09754d89dd1bd91091aea43b5 (patch) | |
tree | 0360b39142f1c85e1cac2637e09c6e452cf1a444 /busybox.def.h | |
parent | 430139b1b3461254047bd7a0b5a6ca38b309be8b (diff) | |
download | busybox-w32-1e68bf8b811f3da09754d89dd1bd91091aea43b5.tar.gz busybox-w32-1e68bf8b811f3da09754d89dd1bd91091aea43b5.tar.bz2 busybox-w32-1e68bf8b811f3da09754d89dd1bd91091aea43b5.zip |
Some busybox updates. You no longer _have_ to put a "-" in front of tar
options, logger is better behaved and has a "-t" option now. init now supports
the kernel chroot patch, so you can chroot to a new device and umount the old
root.
-Erik
git-svn-id: svn://busybox.net/trunk/busybox@328 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'busybox.def.h')
-rw-r--r-- | busybox.def.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/busybox.def.h b/busybox.def.h index 871b152d3..c56f151db 100644 --- a/busybox.def.h +++ b/busybox.def.h | |||
@@ -139,3 +139,10 @@ | |||
139 | // Enable support for creation of tar files. | 139 | // Enable support for creation of tar files. |
140 | //#define BB_FEATURE_TAR_CREATE | 140 | //#define BB_FEATURE_TAR_CREATE |
141 | // | 141 | // |
142 | // Allow init to permenently chroot, and umount the old root fs | ||
143 | // just like an initrd does. Requires a kernel patch by Werner Almesberger. | ||
144 | // ftp://icaftp.epfl.ch/pub/people/almesber/misc/umount-root-*.tar.gz | ||
145 | #ifdef BB_MOUNT | ||
146 | #define BB_FEATURE_INIT_CHROOT | ||
147 | #endif | ||
148 | // | ||