annotate sources/baseconfig-busybox @ 1737:1acbe7e78d9d draft

Switch from bz2 to gz tarball output. bz2 is slowly being replaced by lz variants, but gzip isn't going anywhere. (It retains a niche as a streaming protocol, it's the 80/20 solution optimizing for speed, low memory requirements, and simple compressor implementation.)
author Rob Landley <rob@landley.net>
date Fri, 20 Feb 2015 13:12:45 -0600
parents 5a68c514f756
children cb28b1d437b2
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
1722
5a68c514f756 Shuffle around remaining busybox commands in config so they're roughly grouped by toybox replacement difficulty.
Rob Landley <rob@landley.net>
parents: 1696
diff changeset
1 # busybox internal administrative symbols:
1477
431d5b4ee537 Switch from busybox defconfig to baseconfig-busybox selecting just what we need, with a config variable to use defconfig instead if you really want that.
Rob Landley <rob@landley.net>
parents:
diff changeset
2 CONFIG_DESKTOP=y
431d5b4ee537 Switch from busybox defconfig to baseconfig-busybox selecting just what we need, with a config variable to use defconfig instead if you really want that.
Rob Landley <rob@landley.net>
parents:
diff changeset
3 CONFIG_LFS=y
1541
e4f766efa39f Sort busybox config entries to group stuff toybox can replace. Also add ps.
Rob Landley <rob@landley.net>
parents: 1528
diff changeset
4 CONFIG_SHOW_USAGE=y
e4f766efa39f Sort busybox config entries to group stuff toybox can replace. Also add ps.
Rob Landley <rob@landley.net>
parents: 1528
diff changeset
5 CONFIG_FEATURE_VERBOSE_USAGE=y
e4f766efa39f Sort busybox config entries to group stuff toybox can replace. Also add ps.
Rob Landley <rob@landley.net>
parents: 1528
diff changeset
6 CONFIG_LONG_OPTS=y
e4f766efa39f Sort busybox config entries to group stuff toybox can replace. Also add ps.
Rob Landley <rob@landley.net>
parents: 1528
diff changeset
7
1722
5a68c514f756 Shuffle around remaining busybox commands in config so they're roughly grouped by toybox replacement difficulty.
Rob Landley <rob@landley.net>
parents: 1696
diff changeset
8 # low hanging fruit:
1575
76350236e5f1 Toybox 0.4.2.
Rob Landley <rob@landley.net>
parents: 1555
diff changeset
9
1541
e4f766efa39f Sort busybox config entries to group stuff toybox can replace. Also add ps.
Rob Landley <rob@landley.net>
parents: 1528
diff changeset
10 CONFIG_PS=y
e4f766efa39f Sort busybox config entries to group stuff toybox can replace. Also add ps.
Rob Landley <rob@landley.net>
parents: 1528
diff changeset
11 CONFIG_FEATURE_PS_TIME=y
e4f766efa39f Sort busybox config entries to group stuff toybox can replace. Also add ps.
Rob Landley <rob@landley.net>
parents: 1528
diff changeset
12 CONFIG_FEATURE_PS_ADDITIONAL_COLUMNS=y
e4f766efa39f Sort busybox config entries to group stuff toybox can replace. Also add ps.
Rob Landley <rob@landley.net>
parents: 1528
diff changeset
13
1477
431d5b4ee537 Switch from busybox defconfig to baseconfig-busybox selecting just what we need, with a config variable to use defconfig instead if you really want that.
Rob Landley <rob@landley.net>
parents:
diff changeset
14 CONFIG_BUNZIP2=y
431d5b4ee537 Switch from busybox defconfig to baseconfig-busybox selecting just what we need, with a config variable to use defconfig instead if you really want that.
Rob Landley <rob@landley.net>
parents:
diff changeset
15 CONFIG_BZIP2=y
431d5b4ee537 Switch from busybox defconfig to baseconfig-busybox selecting just what we need, with a config variable to use defconfig instead if you really want that.
Rob Landley <rob@landley.net>
parents:
diff changeset
16 CONFIG_GUNZIP=y
431d5b4ee537 Switch from busybox defconfig to baseconfig-busybox selecting just what we need, with a config variable to use defconfig instead if you really want that.
Rob Landley <rob@landley.net>
parents:
diff changeset
17 CONFIG_GZIP=y
1549
e5669b094e12 Add CONFIG_UNXZ because strace (in static-tools control image) is now only available as a tar.xz file.
Rob Landley <rob@landley.net>
parents: 1541
diff changeset
18 CONFIG_UNXZ=y
1541
e4f766efa39f Sort busybox config entries to group stuff toybox can replace. Also add ps.
Rob Landley <rob@landley.net>
parents: 1528
diff changeset
19
1477
431d5b4ee537 Switch from busybox defconfig to baseconfig-busybox selecting just what we need, with a config variable to use defconfig instead if you really want that.
Rob Landley <rob@landley.net>
parents:
diff changeset
20 CONFIG_TAR=y
431d5b4ee537 Switch from busybox defconfig to baseconfig-busybox selecting just what we need, with a config variable to use defconfig instead if you really want that.
Rob Landley <rob@landley.net>
parents:
diff changeset
21 CONFIG_FEATURE_TAR_CREATE=y
431d5b4ee537 Switch from busybox defconfig to baseconfig-busybox selecting just what we need, with a config variable to use defconfig instead if you really want that.
Rob Landley <rob@landley.net>
parents:
diff changeset
22 CONFIG_FEATURE_TAR_AUTODETECT=y
431d5b4ee537 Switch from busybox defconfig to baseconfig-busybox selecting just what we need, with a config variable to use defconfig instead if you really want that.
Rob Landley <rob@landley.net>
parents:
diff changeset
23 CONFIG_FEATURE_TAR_GNU_EXTENSIONS=y
431d5b4ee537 Switch from busybox defconfig to baseconfig-busybox selecting just what we need, with a config variable to use defconfig instead if you really want that.
Rob Landley <rob@landley.net>
parents:
diff changeset
24 CONFIG_FEATURE_TAR_OLDGNU_COMPATIBILITY=y
1541
e4f766efa39f Sort busybox config entries to group stuff toybox can replace. Also add ps.
Rob Landley <rob@landley.net>
parents: 1528
diff changeset
25 CONFIG_FEATURE_TAR_LONG_OPTIONS=y
e4f766efa39f Sort busybox config entries to group stuff toybox can replace. Also add ps.
Rob Landley <rob@landley.net>
parents: 1528
diff changeset
26 CONFIG_FEATURE_TAR_FROM=y
1696
f24a3b643df4 Upgrade toybox to 0.5.0.
Rob Landley <rob@landley.net>
parents: 1637
diff changeset
27 CONFIG_FEATURE_SEAMLESS_BZ2=y
f24a3b643df4 Upgrade toybox to 0.5.0.
Rob Landley <rob@landley.net>
parents: 1637
diff changeset
28 CONFIG_FEATURE_SEAMLESS_GZ=y
f24a3b643df4 Upgrade toybox to 0.5.0.
Rob Landley <rob@landley.net>
parents: 1637
diff changeset
29 CONFIG_FEATURE_SEAMLESS_XZ=y
1541
e4f766efa39f Sort busybox config entries to group stuff toybox can replace. Also add ps.
Rob Landley <rob@landley.net>
parents: 1528
diff changeset
30
1477
431d5b4ee537 Switch from busybox defconfig to baseconfig-busybox selecting just what we need, with a config variable to use defconfig instead if you really want that.
Rob Landley <rob@landley.net>
parents:
diff changeset
31 CONFIG_DD=y
431d5b4ee537 Switch from busybox defconfig to baseconfig-busybox selecting just what we need, with a config variable to use defconfig instead if you really want that.
Rob Landley <rob@landley.net>
parents:
diff changeset
32 CONFIG_FEATURE_DD_SIGNAL_HANDLING=y
1541
e4f766efa39f Sort busybox config entries to group stuff toybox can replace. Also add ps.
Rob Landley <rob@landley.net>
parents: 1528
diff changeset
33
1477
431d5b4ee537 Switch from busybox defconfig to baseconfig-busybox selecting just what we need, with a config variable to use defconfig instead if you really want that.
Rob Landley <rob@landley.net>
parents:
diff changeset
34 CONFIG_EXPR=y
431d5b4ee537 Switch from busybox defconfig to baseconfig-busybox selecting just what we need, with a config variable to use defconfig instead if you really want that.
Rob Landley <rob@landley.net>
parents:
diff changeset
35 CONFIG_EXPR_MATH_SUPPORT_64=y
1541
e4f766efa39f Sort busybox config entries to group stuff toybox can replace. Also add ps.
Rob Landley <rob@landley.net>
parents: 1528
diff changeset
36
1477
431d5b4ee537 Switch from busybox defconfig to baseconfig-busybox selecting just what we need, with a config variable to use defconfig instead if you really want that.
Rob Landley <rob@landley.net>
parents:
diff changeset
37 CONFIG_TR=y
1541
e4f766efa39f Sort busybox config entries to group stuff toybox can replace. Also add ps.
Rob Landley <rob@landley.net>
parents: 1528
diff changeset
38
1477
431d5b4ee537 Switch from busybox defconfig to baseconfig-busybox selecting just what we need, with a config variable to use defconfig instead if you really want that.
Rob Landley <rob@landley.net>
parents:
diff changeset
39 CONFIG_DIFF=y
431d5b4ee537 Switch from busybox defconfig to baseconfig-busybox selecting just what we need, with a config variable to use defconfig instead if you really want that.
Rob Landley <rob@landley.net>
parents:
diff changeset
40 CONFIG_FEATURE_DIFF_DIR=y
1541
e4f766efa39f Sort busybox config entries to group stuff toybox can replace. Also add ps.
Rob Landley <rob@landley.net>
parents: 1528
diff changeset
41
1479
b69933a9a06b Cleanup busybox config: remove redundant entries and trailing whitespace, add CONFIG_TEST=y.
Rob Landley <rob@landley.net>
parents: 1477
diff changeset
42 CONFIG_TEST=y
1477
431d5b4ee537 Switch from busybox defconfig to baseconfig-busybox selecting just what we need, with a config variable to use defconfig instead if you really want that.
Rob Landley <rob@landley.net>
parents:
diff changeset
43 CONFIG_FEATURE_TEST_64=y
431d5b4ee537 Switch from busybox defconfig to baseconfig-busybox selecting just what we need, with a config variable to use defconfig instead if you really want that.
Rob Landley <rob@landley.net>
parents:
diff changeset
44
1722
5a68c514f756 Shuffle around remaining busybox commands in config so they're roughly grouped by toybox replacement difficulty.
Rob Landley <rob@landley.net>
parents: 1696
diff changeset
45 CONFIG_ROUTE=y
5a68c514f756 Shuffle around remaining busybox commands in config so they're roughly grouped by toybox replacement difficulty.
Rob Landley <rob@landley.net>
parents: 1696
diff changeset
46
5a68c514f756 Shuffle around remaining busybox commands in config so they're roughly grouped by toybox replacement difficulty.
Rob Landley <rob@landley.net>
parents: 1696
diff changeset
47 # shell
1541
e4f766efa39f Sort busybox config entries to group stuff toybox can replace. Also add ps.
Rob Landley <rob@landley.net>
parents: 1528
diff changeset
48
1477
431d5b4ee537 Switch from busybox defconfig to baseconfig-busybox selecting just what we need, with a config variable to use defconfig instead if you really want that.
Rob Landley <rob@landley.net>
parents:
diff changeset
49 CONFIG_ASH=y
431d5b4ee537 Switch from busybox defconfig to baseconfig-busybox selecting just what we need, with a config variable to use defconfig instead if you really want that.
Rob Landley <rob@landley.net>
parents:
diff changeset
50 CONFIG_ASH_OPTIMIZE_FOR_SIZE=y
431d5b4ee537 Switch from busybox defconfig to baseconfig-busybox selecting just what we need, with a config variable to use defconfig instead if you really want that.
Rob Landley <rob@landley.net>
parents:
diff changeset
51 CONFIG_FEATURE_TEST_64=y
431d5b4ee537 Switch from busybox defconfig to baseconfig-busybox selecting just what we need, with a config variable to use defconfig instead if you really want that.
Rob Landley <rob@landley.net>
parents:
diff changeset
52 CONFIG_ASH_BASH_COMPAT=y
431d5b4ee537 Switch from busybox defconfig to baseconfig-busybox selecting just what we need, with a config variable to use defconfig instead if you really want that.
Rob Landley <rob@landley.net>
parents:
diff changeset
53 CONFIG_ASH_BUILTIN_TEST=y
431d5b4ee537 Switch from busybox defconfig to baseconfig-busybox selecting just what we need, with a config variable to use defconfig instead if you really want that.
Rob Landley <rob@landley.net>
parents:
diff changeset
54 CONFIG_ASH_EXPAND_PRMT=y
431d5b4ee537 Switch from busybox defconfig to baseconfig-busybox selecting just what we need, with a config variable to use defconfig instead if you really want that.
Rob Landley <rob@landley.net>
parents:
diff changeset
55 CONFIG_ASH_RANDOM_SUPPORT=y
431d5b4ee537 Switch from busybox defconfig to baseconfig-busybox selecting just what we need, with a config variable to use defconfig instead if you really want that.
Rob Landley <rob@landley.net>
parents:
diff changeset
56 CONFIG_ASH_CMDCMD=y
431d5b4ee537 Switch from busybox defconfig to baseconfig-busybox selecting just what we need, with a config variable to use defconfig instead if you really want that.
Rob Landley <rob@landley.net>
parents:
diff changeset
57 CONFIG_ASH_ALIAS=y
431d5b4ee537 Switch from busybox defconfig to baseconfig-busybox selecting just what we need, with a config variable to use defconfig instead if you really want that.
Rob Landley <rob@landley.net>
parents:
diff changeset
58 CONFIG_ASH_JOB_CONTROL=y
431d5b4ee537 Switch from busybox defconfig to baseconfig-busybox selecting just what we need, with a config variable to use defconfig instead if you really want that.
Rob Landley <rob@landley.net>
parents:
diff changeset
59 CONFIG_SH_MATH_SUPPORT=y
431d5b4ee537 Switch from busybox defconfig to baseconfig-busybox selecting just what we need, with a config variable to use defconfig instead if you really want that.
Rob Landley <rob@landley.net>
parents:
diff changeset
60 CONFIG_SH_MATH_SUPPORT_64=y
431d5b4ee537 Switch from busybox defconfig to baseconfig-busybox selecting just what we need, with a config variable to use defconfig instead if you really want that.
Rob Landley <rob@landley.net>
parents:
diff changeset
61 CONFIG_FEATURE_SH_EXTRA_QUIET=y
431d5b4ee537 Switch from busybox defconfig to baseconfig-busybox selecting just what we need, with a config variable to use defconfig instead if you really want that.
Rob Landley <rob@landley.net>
parents:
diff changeset
62
1696
f24a3b643df4 Upgrade toybox to 0.5.0.
Rob Landley <rob@landley.net>
parents: 1637
diff changeset
63 CONFIG_FEATURE_EDITING=y
f24a3b643df4 Upgrade toybox to 0.5.0.
Rob Landley <rob@landley.net>
parents: 1637
diff changeset
64 CONFIG_FEATURE_TAB_COMPLETION=y
f24a3b643df4 Upgrade toybox to 0.5.0.
Rob Landley <rob@landley.net>
parents: 1637
diff changeset
65 CONFIG_FEATURE_EDITING_FANCY_PROMPT=y
f24a3b643df4 Upgrade toybox to 0.5.0.
Rob Landley <rob@landley.net>
parents: 1637
diff changeset
66 CONFIG_FEATURE_EDITING_ASK_TERMINAL=y
f24a3b643df4 Upgrade toybox to 0.5.0.
Rob Landley <rob@landley.net>
parents: 1637
diff changeset
67
1722
5a68c514f756 Shuffle around remaining busybox commands in config so they're roughly grouped by toybox replacement difficulty.
Rob Landley <rob@landley.net>
parents: 1696
diff changeset
68 # Giant hairball
5a68c514f756 Shuffle around remaining busybox commands in config so they're roughly grouped by toybox replacement difficulty.
Rob Landley <rob@landley.net>
parents: 1696
diff changeset
69
5a68c514f756 Shuffle around remaining busybox commands in config so they're roughly grouped by toybox replacement difficulty.
Rob Landley <rob@landley.net>
parents: 1696
diff changeset
70 CONFIG_AWK=y
1696
f24a3b643df4 Upgrade toybox to 0.5.0.
Rob Landley <rob@landley.net>
parents: 1637
diff changeset
71
1477
431d5b4ee537 Switch from busybox defconfig to baseconfig-busybox selecting just what we need, with a config variable to use defconfig instead if you really want that.
Rob Landley <rob@landley.net>
parents:
diff changeset
72 # LFS build
431d5b4ee537 Switch from busybox defconfig to baseconfig-busybox selecting just what we need, with a config variable to use defconfig instead if you really want that.
Rob Landley <rob@landley.net>
parents:
diff changeset
73
1722
5a68c514f756 Shuffle around remaining busybox commands in config so they're roughly grouped by toybox replacement difficulty.
Rob Landley <rob@landley.net>
parents: 1696
diff changeset
74 # Network stuff
1477
431d5b4ee537 Switch from busybox defconfig to baseconfig-busybox selecting just what we need, with a config variable to use defconfig instead if you really want that.
Rob Landley <rob@landley.net>
parents:
diff changeset
75
431d5b4ee537 Switch from busybox defconfig to baseconfig-busybox selecting just what we need, with a config variable to use defconfig instead if you really want that.
Rob Landley <rob@landley.net>
parents:
diff changeset
76 CONFIG_FTPD=y
431d5b4ee537 Switch from busybox defconfig to baseconfig-busybox selecting just what we need, with a config variable to use defconfig instead if you really want that.
Rob Landley <rob@landley.net>
parents:
diff changeset
77 CONFIG_FEATURE_FTP_WRITE=y
431d5b4ee537 Switch from busybox defconfig to baseconfig-busybox selecting just what we need, with a config variable to use defconfig instead if you really want that.
Rob Landley <rob@landley.net>
parents:
diff changeset
78 CONFIG_FEATURE_FTPD_ACCEPT_BROKEN_LIST=y
1541
e4f766efa39f Sort busybox config entries to group stuff toybox can replace. Also add ps.
Rob Landley <rob@landley.net>
parents: 1528
diff changeset
79
1477
431d5b4ee537 Switch from busybox defconfig to baseconfig-busybox selecting just what we need, with a config variable to use defconfig instead if you really want that.
Rob Landley <rob@landley.net>
parents:
diff changeset
80 CONFIG_FTPGET=y
431d5b4ee537 Switch from busybox defconfig to baseconfig-busybox selecting just what we need, with a config variable to use defconfig instead if you really want that.
Rob Landley <rob@landley.net>
parents:
diff changeset
81 CONFIG_FTPPUT=y
1541
e4f766efa39f Sort busybox config entries to group stuff toybox can replace. Also add ps.
Rob Landley <rob@landley.net>
parents: 1528
diff changeset
82
1722
5a68c514f756 Shuffle around remaining busybox commands in config so they're roughly grouped by toybox replacement difficulty.
Rob Landley <rob@landley.net>
parents: 1696
diff changeset
83 CONFIG_WGET=y
5a68c514f756 Shuffle around remaining busybox commands in config so they're roughly grouped by toybox replacement difficulty.
Rob Landley <rob@landley.net>
parents: 1696
diff changeset
84 CONFIG_FEATURE_WGET_STATUSBAR=y
5a68c514f756 Shuffle around remaining busybox commands in config so they're roughly grouped by toybox replacement difficulty.
Rob Landley <rob@landley.net>
parents: 1696
diff changeset
85
5a68c514f756 Shuffle around remaining busybox commands in config so they're roughly grouped by toybox replacement difficulty.
Rob Landley <rob@landley.net>
parents: 1696
diff changeset
86 CONFIG_PING=y
5a68c514f756 Shuffle around remaining busybox commands in config so they're roughly grouped by toybox replacement difficulty.
Rob Landley <rob@landley.net>
parents: 1696
diff changeset
87
5a68c514f756 Shuffle around remaining busybox commands in config so they're roughly grouped by toybox replacement difficulty.
Rob Landley <rob@landley.net>
parents: 1696
diff changeset
88 # Not net
5a68c514f756 Shuffle around remaining busybox commands in config so they're roughly grouped by toybox replacement difficulty.
Rob Landley <rob@landley.net>
parents: 1696
diff changeset
89
5a68c514f756 Shuffle around remaining busybox commands in config so they're roughly grouped by toybox replacement difficulty.
Rob Landley <rob@landley.net>
parents: 1696
diff changeset
90 CONFIG_LESS=y
5a68c514f756 Shuffle around remaining busybox commands in config so they're roughly grouped by toybox replacement difficulty.
Rob Landley <rob@landley.net>
parents: 1696
diff changeset
91 CONFIG_MAN=y
5a68c514f756 Shuffle around remaining busybox commands in config so they're roughly grouped by toybox replacement difficulty.
Rob Landley <rob@landley.net>
parents: 1696
diff changeset
92
5a68c514f756 Shuffle around remaining busybox commands in config so they're roughly grouped by toybox replacement difficulty.
Rob Landley <rob@landley.net>
parents: 1696
diff changeset
93 CONFIG_PGREP=y
5a68c514f756 Shuffle around remaining busybox commands in config so they're roughly grouped by toybox replacement difficulty.
Rob Landley <rob@landley.net>
parents: 1696
diff changeset
94 CONFIG_PKILL=y
5a68c514f756 Shuffle around remaining busybox commands in config so they're roughly grouped by toybox replacement difficulty.
Rob Landley <rob@landley.net>
parents: 1696
diff changeset
95
5a68c514f756 Shuffle around remaining busybox commands in config so they're roughly grouped by toybox replacement difficulty.
Rob Landley <rob@landley.net>
parents: 1696
diff changeset
96 CONFIG_SHA512SUM=y
5a68c514f756 Shuffle around remaining busybox commands in config so they're roughly grouped by toybox replacement difficulty.
Rob Landley <rob@landley.net>
parents: 1696
diff changeset
97
5a68c514f756 Shuffle around remaining busybox commands in config so they're roughly grouped by toybox replacement difficulty.
Rob Landley <rob@landley.net>
parents: 1696
diff changeset
98 CONFIG_FDISK=y
5a68c514f756 Shuffle around remaining busybox commands in config so they're roughly grouped by toybox replacement difficulty.
Rob Landley <rob@landley.net>
parents: 1696
diff changeset
99 CONFIG_FEATURE_FDISK_WRITABLE=y
5a68c514f756 Shuffle around remaining busybox commands in config so they're roughly grouped by toybox replacement difficulty.
Rob Landley <rob@landley.net>
parents: 1696
diff changeset
100 CONFIG_FEATURE_FDISK_ADVANCED=y
5a68c514f756 Shuffle around remaining busybox commands in config so they're roughly grouped by toybox replacement difficulty.
Rob Landley <rob@landley.net>
parents: 1696
diff changeset
101
5a68c514f756 Shuffle around remaining busybox commands in config so they're roughly grouped by toybox replacement difficulty.
Rob Landley <rob@landley.net>
parents: 1696
diff changeset
102 # Giant hairball:
5a68c514f756 Shuffle around remaining busybox commands in config so they're roughly grouped by toybox replacement difficulty.
Rob Landley <rob@landley.net>
parents: 1696
diff changeset
103
1477
431d5b4ee537 Switch from busybox defconfig to baseconfig-busybox selecting just what we need, with a config variable to use defconfig instead if you really want that.
Rob Landley <rob@landley.net>
parents:
diff changeset
104 CONFIG_VI=y
431d5b4ee537 Switch from busybox defconfig to baseconfig-busybox selecting just what we need, with a config variable to use defconfig instead if you really want that.
Rob Landley <rob@landley.net>
parents:
diff changeset
105 CONFIG_FEATURE_VI_COLON=y
431d5b4ee537 Switch from busybox defconfig to baseconfig-busybox selecting just what we need, with a config variable to use defconfig instead if you really want that.
Rob Landley <rob@landley.net>
parents:
diff changeset
106 CONFIG_FEATURE_VI_YANKMARK=y
431d5b4ee537 Switch from busybox defconfig to baseconfig-busybox selecting just what we need, with a config variable to use defconfig instead if you really want that.
Rob Landley <rob@landley.net>
parents:
diff changeset
107 CONFIG_FEATURE_VI_SEARCH=y
431d5b4ee537 Switch from busybox defconfig to baseconfig-busybox selecting just what we need, with a config variable to use defconfig instead if you really want that.
Rob Landley <rob@landley.net>
parents:
diff changeset
108 CONFIG_FEATURE_VI_USE_SIGNALS=y
431d5b4ee537 Switch from busybox defconfig to baseconfig-busybox selecting just what we need, with a config variable to use defconfig instead if you really want that.
Rob Landley <rob@landley.net>
parents:
diff changeset
109 CONFIG_FEATURE_VI_DOT_CMD=y
431d5b4ee537 Switch from busybox defconfig to baseconfig-busybox selecting just what we need, with a config variable to use defconfig instead if you really want that.
Rob Landley <rob@landley.net>
parents:
diff changeset
110 CONFIG_FEATURE_VI_READONLY=y
431d5b4ee537 Switch from busybox defconfig to baseconfig-busybox selecting just what we need, with a config variable to use defconfig instead if you really want that.
Rob Landley <rob@landley.net>
parents:
diff changeset
111 CONFIG_FEATURE_VI_SETOPTS=y
431d5b4ee537 Switch from busybox defconfig to baseconfig-busybox selecting just what we need, with a config variable to use defconfig instead if you really want that.
Rob Landley <rob@landley.net>
parents:
diff changeset
112 CONFIG_FEATURE_VI_SET=y
431d5b4ee537 Switch from busybox defconfig to baseconfig-busybox selecting just what we need, with a config variable to use defconfig instead if you really want that.
Rob Landley <rob@landley.net>
parents:
diff changeset
113 CONFIG_FEATURE_VI_WIN_RESIZE=y
431d5b4ee537 Switch from busybox defconfig to baseconfig-busybox selecting just what we need, with a config variable to use defconfig instead if you really want that.
Rob Landley <rob@landley.net>
parents:
diff changeset
114 CONFIG_FEATURE_VI_ASK_TERMINAL=y
431d5b4ee537 Switch from busybox defconfig to baseconfig-busybox selecting just what we need, with a config variable to use defconfig instead if you really want that.
Rob Landley <rob@landley.net>
parents:
diff changeset
115 CONFIG_FEATURE_VI_OPTIMIZE_CURSOR=y
431d5b4ee537 Switch from busybox defconfig to baseconfig-busybox selecting just what we need, with a config variable to use defconfig instead if you really want that.
Rob Landley <rob@landley.net>
parents:
diff changeset
116
1722
5a68c514f756 Shuffle around remaining busybox commands in config so they're roughly grouped by toybox replacement difficulty.
Rob Landley <rob@landley.net>
parents: 1696
diff changeset
117 CONFIG_SED=y
1696
f24a3b643df4 Upgrade toybox to 0.5.0.
Rob Landley <rob@landley.net>
parents: 1637
diff changeset
118 # =======================================================================
f24a3b643df4 Upgrade toybox to 0.5.0.
Rob Landley <rob@landley.net>
parents: 1637
diff changeset
119
1501
fddd7d20ae72 Collate config entries supplid by toybox at end of baseconfig-busybox, so I can work out a way to switch them off later.
Rob Landley <rob@landley.net>
parents: 1492
diff changeset
120 # Stuff in toybox
1575
76350236e5f1 Toybox 0.4.2.
Rob Landley <rob@landley.net>
parents: 1555
diff changeset
121
1501
fddd7d20ae72 Collate config entries supplid by toybox at end of baseconfig-busybox, so I can work out a way to switch them off later.
Rob Landley <rob@landley.net>
parents: 1492
diff changeset
122 CONFIG_CAT=y
fddd7d20ae72 Collate config entries supplid by toybox at end of baseconfig-busybox, so I can work out a way to switch them off later.
Rob Landley <rob@landley.net>
parents: 1492
diff changeset
123 CONFIG_CHROOT=y
fddd7d20ae72 Collate config entries supplid by toybox at end of baseconfig-busybox, so I can work out a way to switch them off later.
Rob Landley <rob@landley.net>
parents: 1492
diff changeset
124 CONFIG_CMP=y
fddd7d20ae72 Collate config entries supplid by toybox at end of baseconfig-busybox, so I can work out a way to switch them off later.
Rob Landley <rob@landley.net>
parents: 1492
diff changeset
125 CONFIG_DIRNAME=y
fddd7d20ae72 Collate config entries supplid by toybox at end of baseconfig-busybox, so I can work out a way to switch them off later.
Rob Landley <rob@landley.net>
parents: 1492
diff changeset
126 CONFIG_DMESG=y
fddd7d20ae72 Collate config entries supplid by toybox at end of baseconfig-busybox, so I can work out a way to switch them off later.
Rob Landley <rob@landley.net>
parents: 1492
diff changeset
127 CONFIG_ECHO=y
fddd7d20ae72 Collate config entries supplid by toybox at end of baseconfig-busybox, so I can work out a way to switch them off later.
Rob Landley <rob@landley.net>
parents: 1492
diff changeset
128 CONFIG_FEATURE_FANCY_ECHO=y
fddd7d20ae72 Collate config entries supplid by toybox at end of baseconfig-busybox, so I can work out a way to switch them off later.
Rob Landley <rob@landley.net>
parents: 1492
diff changeset
129
fddd7d20ae72 Collate config entries supplid by toybox at end of baseconfig-busybox, so I can work out a way to switch them off later.
Rob Landley <rob@landley.net>
parents: 1492
diff changeset
130 CONFIG_ENV=y
fddd7d20ae72 Collate config entries supplid by toybox at end of baseconfig-busybox, so I can work out a way to switch them off later.
Rob Landley <rob@landley.net>
parents: 1492
diff changeset
131 CONFIG_ID=y
fddd7d20ae72 Collate config entries supplid by toybox at end of baseconfig-busybox, so I can work out a way to switch them off later.
Rob Landley <rob@landley.net>
parents: 1492
diff changeset
132 CONFIG_LN=y
fddd7d20ae72 Collate config entries supplid by toybox at end of baseconfig-busybox, so I can work out a way to switch them off later.
Rob Landley <rob@landley.net>
parents: 1492
diff changeset
133
fddd7d20ae72 Collate config entries supplid by toybox at end of baseconfig-busybox, so I can work out a way to switch them off later.
Rob Landley <rob@landley.net>
parents: 1492
diff changeset
134 CONFIG_MDEV=y
fddd7d20ae72 Collate config entries supplid by toybox at end of baseconfig-busybox, so I can work out a way to switch them off later.
Rob Landley <rob@landley.net>
parents: 1492
diff changeset
135
fddd7d20ae72 Collate config entries supplid by toybox at end of baseconfig-busybox, so I can work out a way to switch them off later.
Rob Landley <rob@landley.net>
parents: 1492
diff changeset
136 CONFIG_NC=y
fddd7d20ae72 Collate config entries supplid by toybox at end of baseconfig-busybox, so I can work out a way to switch them off later.
Rob Landley <rob@landley.net>
parents: 1492
diff changeset
137 CONFIG_NC_SERVER=y
fddd7d20ae72 Collate config entries supplid by toybox at end of baseconfig-busybox, so I can work out a way to switch them off later.
Rob Landley <rob@landley.net>
parents: 1492
diff changeset
138 CONFIG_NC_EXTRA=y
fddd7d20ae72 Collate config entries supplid by toybox at end of baseconfig-busybox, so I can work out a way to switch them off later.
Rob Landley <rob@landley.net>
parents: 1492
diff changeset
139
fddd7d20ae72 Collate config entries supplid by toybox at end of baseconfig-busybox, so I can work out a way to switch them off later.
Rob Landley <rob@landley.net>
parents: 1492
diff changeset
140 CONFIG_PATCH=y
fddd7d20ae72 Collate config entries supplid by toybox at end of baseconfig-busybox, so I can work out a way to switch them off later.
Rob Landley <rob@landley.net>
parents: 1492
diff changeset
141 CONFIG_PWD=y
fddd7d20ae72 Collate config entries supplid by toybox at end of baseconfig-busybox, so I can work out a way to switch them off later.
Rob Landley <rob@landley.net>
parents: 1492
diff changeset
142 CONFIG_RMDIR=y
fddd7d20ae72 Collate config entries supplid by toybox at end of baseconfig-busybox, so I can work out a way to switch them off later.
Rob Landley <rob@landley.net>
parents: 1492
diff changeset
143 CONFIG_SHA1SUM=y
1541
e4f766efa39f Sort busybox config entries to group stuff toybox can replace. Also add ps.
Rob Landley <rob@landley.net>
parents: 1528
diff changeset
144 CONFIG_FEATURE_MD5_SHA1_SUM_CHECK=y
1501
fddd7d20ae72 Collate config entries supplid by toybox at end of baseconfig-busybox, so I can work out a way to switch them off later.
Rob Landley <rob@landley.net>
parents: 1492
diff changeset
145 CONFIG_SLEEP=y
fddd7d20ae72 Collate config entries supplid by toybox at end of baseconfig-busybox, so I can work out a way to switch them off later.
Rob Landley <rob@landley.net>
parents: 1492
diff changeset
146 CONFIG_SORT=y
fddd7d20ae72 Collate config entries supplid by toybox at end of baseconfig-busybox, so I can work out a way to switch them off later.
Rob Landley <rob@landley.net>
parents: 1492
diff changeset
147 CONFIG_FEATURE_SORT_BIG=y
fddd7d20ae72 Collate config entries supplid by toybox at end of baseconfig-busybox, so I can work out a way to switch them off later.
Rob Landley <rob@landley.net>
parents: 1492
diff changeset
148
fddd7d20ae72 Collate config entries supplid by toybox at end of baseconfig-busybox, so I can work out a way to switch them off later.
Rob Landley <rob@landley.net>
parents: 1492
diff changeset
149 CONFIG_TRUE=y
fddd7d20ae72 Collate config entries supplid by toybox at end of baseconfig-busybox, so I can work out a way to switch them off later.
Rob Landley <rob@landley.net>
parents: 1492
diff changeset
150 CONFIG_UNAME=y
fddd7d20ae72 Collate config entries supplid by toybox at end of baseconfig-busybox, so I can work out a way to switch them off later.
Rob Landley <rob@landley.net>
parents: 1492
diff changeset
151 CONFIG_WC=y
fddd7d20ae72 Collate config entries supplid by toybox at end of baseconfig-busybox, so I can work out a way to switch them off later.
Rob Landley <rob@landley.net>
parents: 1492
diff changeset
152 CONFIG_WHICH=y
fddd7d20ae72 Collate config entries supplid by toybox at end of baseconfig-busybox, so I can work out a way to switch them off later.
Rob Landley <rob@landley.net>
parents: 1492
diff changeset
153 CONFIG_XARGS=y
fddd7d20ae72 Collate config entries supplid by toybox at end of baseconfig-busybox, so I can work out a way to switch them off later.
Rob Landley <rob@landley.net>
parents: 1492
diff changeset
154 CONFIG_FEATURE_XARGS_SUPPORT_ZERO_TERM=y
fddd7d20ae72 Collate config entries supplid by toybox at end of baseconfig-busybox, so I can work out a way to switch them off later.
Rob Landley <rob@landley.net>
parents: 1492
diff changeset
155 CONFIG_YES=y
1507
1261b8fd1ec9 Teach busybox.build to switch off toybox-supplied functionality when TOYBOX=toybox, and move one more config symbol after toybox marker.
Rob Landley <rob@landley.net>
parents: 1501
diff changeset
156
1261b8fd1ec9 Teach busybox.build to switch off toybox-supplied functionality when TOYBOX=toybox, and move one more config symbol after toybox marker.
Rob Landley <rob@landley.net>
parents: 1501
diff changeset
157 CONFIG_UNIQ=y
1514
6db20984e195 Error paths need the kill and killall commands.
Rob Landley <rob@landley.net>
parents: 1507
diff changeset
158 CONFIG_KILL=y
6db20984e195 Error paths need the kill and killall commands.
Rob Landley <rob@landley.net>
parents: 1507
diff changeset
159 CONFIG_KILLALL=y
1541
e4f766efa39f Sort busybox config entries to group stuff toybox can replace. Also add ps.
Rob Landley <rob@landley.net>
parents: 1528
diff changeset
160
e4f766efa39f Sort busybox config entries to group stuff toybox can replace. Also add ps.
Rob Landley <rob@landley.net>
parents: 1528
diff changeset
161 CONFIG_LS=y
e4f766efa39f Sort busybox config entries to group stuff toybox can replace. Also add ps.
Rob Landley <rob@landley.net>
parents: 1528
diff changeset
162 CONFIG_FEATURE_AUTOWIDTH=y
e4f766efa39f Sort busybox config entries to group stuff toybox can replace. Also add ps.
Rob Landley <rob@landley.net>
parents: 1528
diff changeset
163 # host-tools.sh uses ls -tc to check for tarballs
e4f766efa39f Sort busybox config entries to group stuff toybox can replace. Also add ps.
Rob Landley <rob@landley.net>
parents: 1528
diff changeset
164 CONFIG_FEATURE_LS_SORTFILES=y
e4f766efa39f Sort busybox config entries to group stuff toybox can replace. Also add ps.
Rob Landley <rob@landley.net>
parents: 1528
diff changeset
165 CONFIG_FEATURE_LS_TIMESTAMPS=y
e4f766efa39f Sort busybox config entries to group stuff toybox can replace. Also add ps.
Rob Landley <rob@landley.net>
parents: 1528
diff changeset
166 CONFIG_FEATURE_LS_USERNAME=y
e4f766efa39f Sort busybox config entries to group stuff toybox can replace. Also add ps.
Rob Landley <rob@landley.net>
parents: 1528
diff changeset
167 CONFIG_BASENAME=y
e4f766efa39f Sort busybox config entries to group stuff toybox can replace. Also add ps.
Rob Landley <rob@landley.net>
parents: 1528
diff changeset
168 CONFIG_CHMOD=y
e4f766efa39f Sort busybox config entries to group stuff toybox can replace. Also add ps.
Rob Landley <rob@landley.net>
parents: 1528
diff changeset
169 CONFIG_MKDIR=y
e4f766efa39f Sort busybox config entries to group stuff toybox can replace. Also add ps.
Rob Landley <rob@landley.net>
parents: 1528
diff changeset
170 CONFIG_MKTEMP=y
e4f766efa39f Sort busybox config entries to group stuff toybox can replace. Also add ps.
Rob Landley <rob@landley.net>
parents: 1528
diff changeset
171
e4f766efa39f Sort busybox config entries to group stuff toybox can replace. Also add ps.
Rob Landley <rob@landley.net>
parents: 1528
diff changeset
172 CONFIG_MOUNTPOINT=y
e4f766efa39f Sort busybox config entries to group stuff toybox can replace. Also add ps.
Rob Landley <rob@landley.net>
parents: 1528
diff changeset
173 CONFIG_TAC=y
e4f766efa39f Sort busybox config entries to group stuff toybox can replace. Also add ps.
Rob Landley <rob@landley.net>
parents: 1528
diff changeset
174 CONFIG_TAIL=y
e4f766efa39f Sort busybox config entries to group stuff toybox can replace. Also add ps.
Rob Landley <rob@landley.net>
parents: 1528
diff changeset
175 CONFIG_WHOAMI=y
e4f766efa39f Sort busybox config entries to group stuff toybox can replace. Also add ps.
Rob Landley <rob@landley.net>
parents: 1528
diff changeset
176
e4f766efa39f Sort busybox config entries to group stuff toybox can replace. Also add ps.
Rob Landley <rob@landley.net>
parents: 1528
diff changeset
177 CONFIG_OD=y
e4f766efa39f Sort busybox config entries to group stuff toybox can replace. Also add ps.
Rob Landley <rob@landley.net>
parents: 1528
diff changeset
178 CONFIG_DATE=y
e4f766efa39f Sort busybox config entries to group stuff toybox can replace. Also add ps.
Rob Landley <rob@landley.net>
parents: 1528
diff changeset
179
e4f766efa39f Sort busybox config entries to group stuff toybox can replace. Also add ps.
Rob Landley <rob@landley.net>
parents: 1528
diff changeset
180 CONFIG_CHOWN=y
1575
76350236e5f1 Toybox 0.4.2.
Rob Landley <rob@landley.net>
parents: 1555
diff changeset
181
76350236e5f1 Toybox 0.4.2.
Rob Landley <rob@landley.net>
parents: 1555
diff changeset
182 CONFIG_CUT=y
76350236e5f1 Toybox 0.4.2.
Rob Landley <rob@landley.net>
parents: 1555
diff changeset
183 CONFIG_HOSTNAME=y
76350236e5f1 Toybox 0.4.2.
Rob Landley <rob@landley.net>
parents: 1555
diff changeset
184 CONFIG_RM=y
76350236e5f1 Toybox 0.4.2.
Rob Landley <rob@landley.net>
parents: 1555
diff changeset
185 CONFIG_SWITCH_ROOT=y
76350236e5f1 Toybox 0.4.2.
Rob Landley <rob@landley.net>
parents: 1555
diff changeset
186 CONFIG_TOUCH=y
1581
f9b0ebfbdd1b Package upgrades for busybox and toybox, and add musl to the download list.
Rob Landley <rob@landley.net>
parents: 1575
diff changeset
187 CONFIG_CP=y
1608
f0c3f8456602 Upgrade to new kernel, toybox, busybox, and musl releases.
Rob Landley <rob@landley.net>
parents: 1594
diff changeset
188 CONFIG_MV=y
1581
f9b0ebfbdd1b Package upgrades for busybox and toybox, and add musl to the download list.
Rob Landley <rob@landley.net>
parents: 1575
diff changeset
189 CONFIG_LOSETUP=y
f9b0ebfbdd1b Package upgrades for busybox and toybox, and add musl to the download list.
Rob Landley <rob@landley.net>
parents: 1575
diff changeset
190
f9b0ebfbdd1b Package upgrades for busybox and toybox, and add musl to the download list.
Rob Landley <rob@landley.net>
parents: 1575
diff changeset
191 CONFIG_READLINK=y
f9b0ebfbdd1b Package upgrades for busybox and toybox, and add musl to the download list.
Rob Landley <rob@landley.net>
parents: 1575
diff changeset
192 CONFIG_FEATURE_READLINK_FOLLOW=y
1587
0eb16db33d9d Toybox 0.4.4
Rob Landley <rob@landley.net>
parents: 1581
diff changeset
193 CONFIG_TIME=y
1608
f0c3f8456602 Upgrade to new kernel, toybox, busybox, and musl releases.
Rob Landley <rob@landley.net>
parents: 1594
diff changeset
194
f0c3f8456602 Upgrade to new kernel, toybox, busybox, and musl releases.
Rob Landley <rob@landley.net>
parents: 1594
diff changeset
195 CONFIG_IFCONFIG=y
f0c3f8456602 Upgrade to new kernel, toybox, busybox, and musl releases.
Rob Landley <rob@landley.net>
parents: 1594
diff changeset
196 CONFIG_FEATURE_IFCONFIG_STATUS=y
f0c3f8456602 Upgrade to new kernel, toybox, busybox, and musl releases.
Rob Landley <rob@landley.net>
parents: 1594
diff changeset
197 CONFIG_FEATURE_IFCONFIG_MEMSTART_IOADDR_IRQ=y
f0c3f8456602 Upgrade to new kernel, toybox, busybox, and musl releases.
Rob Landley <rob@landley.net>
parents: 1594
diff changeset
198 CONFIG_FEATURE_IFCONFIG_HW=y
f0c3f8456602 Upgrade to new kernel, toybox, busybox, and musl releases.
Rob Landley <rob@landley.net>
parents: 1594
diff changeset
199 CONFIG_FEATURE_IFCONFIG_BROADCAST_PLUS=y
f0c3f8456602 Upgrade to new kernel, toybox, busybox, and musl releases.
Rob Landley <rob@landley.net>
parents: 1594
diff changeset
200
f0c3f8456602 Upgrade to new kernel, toybox, busybox, and musl releases.
Rob Landley <rob@landley.net>
parents: 1594
diff changeset
201 CONFIG_STAT=y
f0c3f8456602 Upgrade to new kernel, toybox, busybox, and musl releases.
Rob Landley <rob@landley.net>
parents: 1594
diff changeset
202 CONFIG_FEATURE_STAT_FORMAT=y
f0c3f8456602 Upgrade to new kernel, toybox, busybox, and musl releases.
Rob Landley <rob@landley.net>
parents: 1594
diff changeset
203
1627
556a5bc3c8a4 Toybox 0.4.6.
Rob Landley <rob@landley.net>
parents: 1615
diff changeset
204 CONFIG_GREP=y
556a5bc3c8a4 Toybox 0.4.6.
Rob Landley <rob@landley.net>
parents: 1615
diff changeset
205 CONFIG_FEATURE_GREP_EGREP_ALIAS=y
556a5bc3c8a4 Toybox 0.4.6.
Rob Landley <rob@landley.net>
parents: 1615
diff changeset
206 CONFIG_FEATURE_GREP_FGREP_ALIAS=y
556a5bc3c8a4 Toybox 0.4.6.
Rob Landley <rob@landley.net>
parents: 1615
diff changeset
207
556a5bc3c8a4 Toybox 0.4.6.
Rob Landley <rob@landley.net>
parents: 1615
diff changeset
208 CONFIG_UMOUNT=y
556a5bc3c8a4 Toybox 0.4.6.
Rob Landley <rob@landley.net>
parents: 1615
diff changeset
209 CONFIG_FEATURE_UMOUNT_ALL=y
556a5bc3c8a4 Toybox 0.4.6.
Rob Landley <rob@landley.net>
parents: 1615
diff changeset
210
1608
f0c3f8456602 Upgrade to new kernel, toybox, busybox, and musl releases.
Rob Landley <rob@landley.net>
parents: 1594
diff changeset
211 CONFIG_SYNC=y
f0c3f8456602 Upgrade to new kernel, toybox, busybox, and musl releases.
Rob Landley <rob@landley.net>
parents: 1594
diff changeset
212 CONFIG_HEAD=y
f0c3f8456602 Upgrade to new kernel, toybox, busybox, and musl releases.
Rob Landley <rob@landley.net>
parents: 1594
diff changeset
213 CONFIG_CHGRP=y
f0c3f8456602 Upgrade to new kernel, toybox, busybox, and musl releases.
Rob Landley <rob@landley.net>
parents: 1594
diff changeset
214 CONFIG_COMM=y
f0c3f8456602 Upgrade to new kernel, toybox, busybox, and musl releases.
Rob Landley <rob@landley.net>
parents: 1594
diff changeset
215 CONFIG_LOGNAME=y
f0c3f8456602 Upgrade to new kernel, toybox, busybox, and musl releases.
Rob Landley <rob@landley.net>
parents: 1594
diff changeset
216 CONFIG_SPLIT=y
f0c3f8456602 Upgrade to new kernel, toybox, busybox, and musl releases.
Rob Landley <rob@landley.net>
parents: 1594
diff changeset
217 CONFIG_TEE=y
1696
f24a3b643df4 Upgrade toybox to 0.5.0.
Rob Landley <rob@landley.net>
parents: 1637
diff changeset
218
f24a3b643df4 Upgrade toybox to 0.5.0.
Rob Landley <rob@landley.net>
parents: 1637
diff changeset
219 CONFIG_CPIO=y
f24a3b643df4 Upgrade toybox to 0.5.0.
Rob Landley <rob@landley.net>
parents: 1637
diff changeset
220 CONFIG_FEATURE_CPIO_O=y
f24a3b643df4 Upgrade toybox to 0.5.0.
Rob Landley <rob@landley.net>
parents: 1637
diff changeset
221 CONFIG_FEATURE_CPIO_P=y
f24a3b643df4 Upgrade toybox to 0.5.0.
Rob Landley <rob@landley.net>
parents: 1637
diff changeset
222
f24a3b643df4 Upgrade toybox to 0.5.0.
Rob Landley <rob@landley.net>
parents: 1637
diff changeset
223 CONFIG_FIND=y
f24a3b643df4 Upgrade toybox to 0.5.0.
Rob Landley <rob@landley.net>
parents: 1637
diff changeset
224 CONFIG_FEATURE_FIND_PRINT0=y
f24a3b643df4 Upgrade toybox to 0.5.0.
Rob Landley <rob@landley.net>
parents: 1637
diff changeset
225 CONFIG_FEATURE_FIND_TYPE=y
f24a3b643df4 Upgrade toybox to 0.5.0.
Rob Landley <rob@landley.net>
parents: 1637
diff changeset
226 CONFIG_FEATURE_FIND_XDEV=y
f24a3b643df4 Upgrade toybox to 0.5.0.
Rob Landley <rob@landley.net>
parents: 1637
diff changeset
227 CONFIG_FEATURE_FIND_NOT=y
f24a3b643df4 Upgrade toybox to 0.5.0.
Rob Landley <rob@landley.net>
parents: 1637
diff changeset
228 CONFIG_FEATURE_FIND_PAREN=y
f24a3b643df4 Upgrade toybox to 0.5.0.
Rob Landley <rob@landley.net>
parents: 1637
diff changeset
229 CONFIG_FEATURE_FIND_PRUNE=y
f24a3b643df4 Upgrade toybox to 0.5.0.
Rob Landley <rob@landley.net>
parents: 1637
diff changeset
230 CONFIG_FEATURE_FIND_PATH=y
f24a3b643df4 Upgrade toybox to 0.5.0.
Rob Landley <rob@landley.net>
parents: 1637
diff changeset
231 CONFIG_FEATURE_FIND_MAXDEPTH=y
f24a3b643df4 Upgrade toybox to 0.5.0.
Rob Landley <rob@landley.net>
parents: 1637
diff changeset
232 CONFIG_FEATURE_FIND_EXEC=y
f24a3b643df4 Upgrade toybox to 0.5.0.
Rob Landley <rob@landley.net>
parents: 1637
diff changeset
233
f24a3b643df4 Upgrade toybox to 0.5.0.
Rob Landley <rob@landley.net>
parents: 1637
diff changeset
234 CONFIG_LSPCI=y
f24a3b643df4 Upgrade toybox to 0.5.0.
Rob Landley <rob@landley.net>
parents: 1637
diff changeset
235
f24a3b643df4 Upgrade toybox to 0.5.0.
Rob Landley <rob@landley.net>
parents: 1637
diff changeset
236 CONFIG_INSTALL=y
f24a3b643df4 Upgrade toybox to 0.5.0.
Rob Landley <rob@landley.net>
parents: 1637
diff changeset
237 CONFIG_FEATURE_PRESERVE_HARDLINKS=y
f24a3b643df4 Upgrade toybox to 0.5.0.
Rob Landley <rob@landley.net>
parents: 1637
diff changeset
238
f24a3b643df4 Upgrade toybox to 0.5.0.
Rob Landley <rob@landley.net>
parents: 1637
diff changeset
239 CONFIG_MOUNT=y
f24a3b643df4 Upgrade toybox to 0.5.0.
Rob Landley <rob@landley.net>
parents: 1637
diff changeset
240 CONFIG_FEATURE_MOUNT_FLAGS=y
f24a3b643df4 Upgrade toybox to 0.5.0.
Rob Landley <rob@landley.net>
parents: 1637
diff changeset
241 CONFIG_FEATURE_MOUNT_FSTAB=y
f24a3b643df4 Upgrade toybox to 0.5.0.
Rob Landley <rob@landley.net>
parents: 1637
diff changeset
242 CONFIG_FEATURE_MOUNT_LOOP=y
f24a3b643df4 Upgrade toybox to 0.5.0.
Rob Landley <rob@landley.net>
parents: 1637
diff changeset
243 CONFIG_FEATURE_MOUNT_LOOP_CREATE=y
f24a3b643df4 Upgrade toybox to 0.5.0.
Rob Landley <rob@landley.net>
parents: 1637
diff changeset
244
1722
5a68c514f756 Shuffle around remaining busybox commands in config so they're roughly grouped by toybox replacement difficulty.
Rob Landley <rob@landley.net>
parents: 1696
diff changeset
245 #CONFIG_SED=y