diff options
author | Paul Sokolovsky <pmiscml@gmail.com> | 2007-01-06 12:54:32 +0000 |
---|---|---|
committer | Paul Sokolovsky <pmiscml@gmail.com> | 2007-01-06 12:54:32 +0000 |
commit | 02e78f3ea9489b204c91ccde7c17d83ed96b8c3f (patch) | |
tree | c2174cf3334e97171f4954ae8ff8ead58742574d | |
parent | 0d08caccf4984dd60d57ae391b8b5f1778bc0fe9 (diff) |
busybox 1.2.1, 1.2.2: Enabled nohup applet.
* Being able to login via telnet/ssh/on-device shell and run application such
that it continues to run after logout, should be pretty useful feature for
embedded system.
* With common config (also used by angstrom), doesn't lead to increase of
exe size (due to alignment padding), and the applet code itself is small
(40 lines).
* Approved by Koen Kooi.
-rw-r--r-- | packages/busybox/busybox-1.2.1/angstrom/defconfig | 2 | ||||
-rw-r--r-- | packages/busybox/busybox-1.2.1/defconfig | 2 | ||||
-rw-r--r-- | packages/busybox/busybox-1.2.2/angstrom/defconfig | 2 | ||||
-rw-r--r-- | packages/busybox/busybox-1.2.2/defconfig | 2 | ||||
-rw-r--r-- | packages/busybox/busybox_1.2.1.bb | 2 |
5 files changed, 5 insertions, 5 deletions
diff --git a/packages/busybox/busybox-1.2.1/angstrom/defconfig b/packages/busybox/busybox-1.2.1/angstrom/defconfig index 981b7d7c71..7308eead76 100644 --- a/packages/busybox/busybox-1.2.1/angstrom/defconfig +++ b/packages/busybox/busybox-1.2.1/angstrom/defconfig @@ -171,7 +171,7 @@ CONFIG_MKNOD=y CONFIG_MV=y # CONFIG_FEATURE_MV_LONG_OPTIONS is not set # CONFIG_NICE is not set -# CONFIG_NOHUP is not set +CONFIG_NOHUP=y CONFIG_OD=y # CONFIG_PRINTENV is not set CONFIG_PRINTF=y diff --git a/packages/busybox/busybox-1.2.1/defconfig b/packages/busybox/busybox-1.2.1/defconfig index 981b7d7c71..7308eead76 100644 --- a/packages/busybox/busybox-1.2.1/defconfig +++ b/packages/busybox/busybox-1.2.1/defconfig @@ -171,7 +171,7 @@ CONFIG_MKNOD=y CONFIG_MV=y # CONFIG_FEATURE_MV_LONG_OPTIONS is not set # CONFIG_NICE is not set -# CONFIG_NOHUP is not set +CONFIG_NOHUP=y CONFIG_OD=y # CONFIG_PRINTENV is not set CONFIG_PRINTF=y diff --git a/packages/busybox/busybox-1.2.2/angstrom/defconfig b/packages/busybox/busybox-1.2.2/angstrom/defconfig index 981b7d7c71..7308eead76 100644 --- a/packages/busybox/busybox-1.2.2/angstrom/defconfig +++ b/packages/busybox/busybox-1.2.2/angstrom/defconfig @@ -171,7 +171,7 @@ CONFIG_MKNOD=y CONFIG_MV=y # CONFIG_FEATURE_MV_LONG_OPTIONS is not set # CONFIG_NICE is not set -# CONFIG_NOHUP is not set +CONFIG_NOHUP=y CONFIG_OD=y # CONFIG_PRINTENV is not set CONFIG_PRINTF=y diff --git a/packages/busybox/busybox-1.2.2/defconfig b/packages/busybox/busybox-1.2.2/defconfig index 981b7d7c71..7308eead76 100644 --- a/packages/busybox/busybox-1.2.2/defconfig +++ b/packages/busybox/busybox-1.2.2/defconfig @@ -171,7 +171,7 @@ CONFIG_MKNOD=y CONFIG_MV=y # CONFIG_FEATURE_MV_LONG_OPTIONS is not set # CONFIG_NICE is not set -# CONFIG_NOHUP is not set +CONFIG_NOHUP=y CONFIG_OD=y # CONFIG_PRINTENV is not set CONFIG_PRINTF=y diff --git a/packages/busybox/busybox_1.2.1.bb b/packages/busybox/busybox_1.2.1.bb index d7d28ffeb2..fb26407cd6 100644 --- a/packages/busybox/busybox_1.2.1.bb +++ b/packages/busybox/busybox_1.2.1.bb @@ -1,6 +1,6 @@ require busybox.inc -PR = "r10" +PR = "r11" SRC_URI += "file://wget-long-options.patch;patch=1 \ file://df_rootfs.patch;patch=1 \ |