003-defaults.patch 6.8 KB

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