003-defaults.patch 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137
  1. diff -Nur busybox-1.18.1.orig/Config.in busybox-1.18.1/Config.in
  2. --- busybox-1.18.1.orig/Config.in 2010-12-21 05:31:04.000000000 +0100
  3. +++ busybox-1.18.1/Config.in 2010-12-25 23:20:18.000000000 +0100
  4. @@ -15,7 +15,7 @@
  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 @@
  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 -Nur busybox-1.18.1.orig/archival/Config.src busybox-1.18.1/archival/Config.src
  21. --- busybox-1.18.1.orig/archival/Config.src 2010-12-20 01:41:26.000000000 +0100
  22. +++ busybox-1.18.1/archival/Config.src 2010-12-25 23:21:02.000000000 +0100
  23. @@ -79,7 +79,7 @@
  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 @@
  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 @@
  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. @@ -204,19 +204,19 @@
  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. @@ -323,7 +323,7 @@
  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. @@ -354,7 +354,7 @@
  76. config UNXZ
  77. bool "unxz"
  78. - default y
  79. + default n
  80. help
  81. unxz is a unlzma successor.
  82. diff -Nur busybox-1.18.1.orig/editors/Config.src busybox-1.18.1/editors/Config.src
  83. --- busybox-1.18.1.orig/editors/Config.src 2010-12-20 01:41:27.000000000 +0100
  84. +++ busybox-1.18.1/editors/Config.src 2010-12-25 23:21:57.000000000 +0100
  85. @@ -31,7 +31,7 @@
  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 @@
  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 -Nur busybox-1.18.1.orig/editors/patch.c busybox-1.18.1/editors/patch.c
  102. --- busybox-1.18.1.orig/editors/patch.c 2010-12-21 05:29:45.000000000 +0100
  103. +++ busybox-1.18.1/editors/patch.c 2010-12-25 23:22:38.000000000 +0100
  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 -Nur busybox-1.18.1.orig/networking/Config.src busybox-1.18.1/networking/Config.src
  112. --- busybox-1.18.1.orig/networking/Config.src 2010-12-21 05:29:45.000000000 +0100
  113. +++ busybox-1.18.1/networking/Config.src 2010-12-25 23:20:19.000000000 +0100
  114. @@ -986,7 +986,7 @@
  115. config WGET
  116. bool "wget"
  117. - default y
  118. + default n
  119. help
  120. wget is a utility for non-interactive download of files from HTTP,
  121. HTTPS, and FTP servers.