summaryrefslogtreecommitdiff
path: root/package/busybox/patches/003-defaults.patch
blob: 0678cf90871554295e20db5bc258e74a1471a3fc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
diff -Naurp busybox-1.18.4/Config.in busybox-1.18.4.patched/Config.in
--- busybox-1.18.4/Config.in	2011-03-13 02:45:40.000000000 +0100
+++ busybox-1.18.4.patched/Config.in	2011-04-12 17:11:37.904996819 +0200
@@ -15,7 +15,7 @@ menu "General Configuration"
 
 config DESKTOP
 	bool "Enable options for full-blown desktop systems"
-	default y
+	default n
 	help
 	  Enable options and features which are not essential.
 	  Select this only if you plan to use busybox on full-blown
@@ -32,7 +32,7 @@ config EXTRA_COMPAT
 
 config INCLUDE_SUSv2
 	bool "Enable obsolete features removed before SUSv3"
-	default y
+	default n
 	help
 	  This option will enable backwards compatibility with SuSv2,
 	  specifically, old-style numeric options ('command -1 <file>')
diff -Naurp busybox-1.18.4/archival/Config.src busybox-1.18.4.patched/archival/Config.src
--- busybox-1.18.4/archival/Config.src	2011-04-12 17:11:13.204993284 +0200
+++ busybox-1.18.4.patched/archival/Config.src	2011-04-12 17:11:37.905996921 +0200
@@ -79,7 +79,7 @@ config FEATURE_AR_CREATE
 
 config BUNZIP2
 	bool "bunzip2"
-	default y
+	default n
 	help
 	  bunzip2 is a compression utility using the Burrows-Wheeler block
 	  sorting text compression algorithm, and Huffman coding. Compression
@@ -92,7 +92,7 @@ config BUNZIP2
 
 config BZIP2
 	bool "bzip2"
-	default y
+	default n
 	help
 	  bzip2 is a compression utility using the Burrows-Wheeler block
 	  sorting text compression algorithm, and Huffman coding. Compression
@@ -105,7 +105,7 @@ config BZIP2
 
 config CPIO
 	bool "cpio"
-	default y
+	default n
 	help
 	  cpio is an archival utility program used to create, modify, and
 	  extract contents from archives.
@@ -210,19 +210,19 @@ config IPKG
 
 config RPM2CPIO
 	bool "rpm2cpio"
-	default y
+	default n
 	help
 	  Converts a RPM file into a CPIO archive.
 
 config RPM
 	bool "rpm"
-	default y
+	default n
 	help
 	  Mini RPM applet - queries and extracts RPM packages.
 
 config TAR
 	bool "tar"
-	default y
+	default n
 	help
 	  tar is an archiving program. It's commonly used with gzip to
 	  create compressed archives. It's probably the most widely used
@@ -329,7 +329,7 @@ config UNCOMPRESS
 
 config UNLZMA
 	bool "unlzma"
-	default y
+	default n
 	help
 	  unlzma is a compression utility using the Lempel-Ziv-Markov chain
 	  compression algorithm, and range coding. Compression
@@ -360,7 +360,7 @@ config LZMA
 
 config UNXZ
 	bool "unxz"
-	default y
+	default n
 	help
 	  unxz is a unlzma successor.
 
diff -Naurp busybox-1.18.4/editors/Config.src busybox-1.18.4.patched/editors/Config.src
--- busybox-1.18.4/editors/Config.src	2011-03-13 02:45:06.000000000 +0100
+++ busybox-1.18.4.patched/editors/Config.src	2011-04-12 17:11:37.905996921 +0200
@@ -31,7 +31,7 @@ config CMP
 
 config DIFF
 	bool "diff"
-	default y
+	default n
 	help
 	  diff compares two files or directories and outputs the
 	  differences between them in a form that can be given to
@@ -62,7 +62,7 @@ config ED
 
 config SED
 	bool "sed"
-	default y
+	default n
 	help
 	  sed is used to perform text transformations on a file
 	  or input from a pipeline.
diff -Naurp busybox-1.18.4/editors/patch.c busybox-1.18.4.patched/editors/patch.c
--- busybox-1.18.4/editors/patch.c	2011-03-13 02:45:40.000000000 +0100
+++ busybox-1.18.4.patched/editors/patch.c	2011-04-12 17:11:37.905996921 +0200
@@ -27,7 +27,7 @@
 
 //config:config PATCH
 //config:	bool "patch"
-//config:	default y
+//config:	default n
 //config:	help
 //config:	  Apply a unified diff formatted patch.
 
diff -Naurp busybox-1.18.4/findutils/find.c busybox-1.18.4.patched/findutils/find.c
--- busybox-1.18.4/findutils/find.c	2011-04-12 17:11:22.887000207 +0200
+++ busybox-1.18.4.patched/findutils/find.c	2011-04-12 17:21:04.441000928 +0200
@@ -59,7 +59,7 @@
 
 //config:config FIND
 //config:	bool "find"
-//config:	default y
+//config:	default n
 //config:	help
 //config:	  find is used to search your system to find specified files.
 //config:
diff -Naurp busybox-1.18.4/findutils/grep.c busybox-1.18.4.patched/findutils/grep.c
--- busybox-1.18.4/findutils/grep.c	2011-03-13 02:45:40.000000000 +0100
+++ busybox-1.18.4.patched/findutils/grep.c	2011-04-12 17:21:09.828998153 +0200
@@ -26,7 +26,7 @@
 
 //config:config GREP
 //config:	bool "grep"
-//config:	default y
+//config:	default n
 //config:	help
 //config:	  grep is used to search files for a specified pattern.
 //config:
diff -Naurp busybox-1.18.4/miscutils/Config.src busybox-1.18.4.patched/miscutils/Config.src
--- busybox-1.18.4/miscutils/Config.src	2011-03-13 02:45:40.000000000 +0100
+++ busybox-1.18.4.patched/miscutils/Config.src	2011-04-12 17:19:11.872999667 +0200
@@ -362,7 +362,7 @@ endchoice
 
 config LESS
 	bool "less"
-	default y
+	default n
 	help
 	  'less' is a pager, meaning that it displays text files. It possesses
 	  a wide array of features, and is an improvement over 'more'.
@@ -428,7 +428,7 @@ config FEATURE_LESS_LINENUMS
 
 config HDPARM
 	bool "hdparm"
-	default y
+	default n
 	depends on PLATFORM_LINUX
 	help
 	  Get/Set hard drive parameters. Primarily intended for ATA
@@ -663,7 +663,7 @@ config WALL
 
 config WATCHDOG
 	bool "watchdog"
-	default y
+	default n
 	depends on PLATFORM_LINUX
 	help
 	  The watchdog utility is used with hardware or software watchdog
diff -Naurp busybox-1.18.4/networking/Config.src busybox-1.18.4.patched/networking/Config.src
--- busybox-1.18.4/networking/Config.src	2011-03-13 02:45:40.000000000 +0100
+++ busybox-1.18.4.patched/networking/Config.src	2011-04-12 17:16:48.182999877 +0200
@@ -64,7 +64,7 @@ config ARPING
 
 config BRCTL
 	bool "brctl"
-	default y
+	default n
 	depends on PLATFORM_LINUX
 	help
 	  Manage ethernet bridges.
@@ -97,7 +97,7 @@ config DNSD
 
 config ETHER_WAKE
 	bool "ether-wake"
-	default y
+	default n
 	depends on PLATFORM_LINUX
 	help
 	  Send a magic packet to wake up sleeping machines.
@@ -497,7 +497,7 @@ config FEATURE_INETD_RPC
 
 config IP
 	bool "ip"
-	default y
+	default n
 	depends on PLATFORM_LINUX
 	help
 	  The "ip" applet is a TCP/IP interface configuration and routing
@@ -986,7 +986,7 @@ config VCONFIG
 
 config WGET
 	bool "wget"
-	default y
+	default n
 	help
 	  wget is a utility for non-interactive download of files from HTTP,
 	  HTTPS, and FTP servers.
diff -Naurp busybox-1.18.4/util-linux/Config.src busybox-1.18.4.patched/util-linux/Config.src
--- busybox-1.18.4/util-linux/Config.src	2011-03-13 02:45:40.000000000 +0100
+++ busybox-1.18.4.patched/util-linux/Config.src	2011-04-12 17:18:25.998990985 +0200
@@ -378,7 +378,7 @@ config LOSETUP
 
 config LSPCI
 	bool "lspci"
-	default y
+	default n
 	#depends on PLATFORM_LINUX
 	help
 	  lspci is a utility for displaying information about PCI buses in the
@@ -388,7 +388,7 @@ config LSPCI
 
 config LSUSB
 	bool "lsusb"
-	default y
+	default n
 	#depends on PLATFORM_LINUX
 	help
 	  lsusb is a utility for displaying information about USB buses in the