summaryrefslogtreecommitdiffstats
path: root/patches/busybox-1.9.0/generic/busybox-1.9.0-allno.patch
blob: c57f8ad9a0f1c7f0ee999c681c1fc5e78f08990e (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
Subject: busybox 1.9.0 fixes
From: http://busybox.net/downloads/fixes-1.9.0

---
 Makefile.help           |    1 -
 applets/applet_tables.c |    2 +-
 2 files changed, 1 insertion(+), 2 deletions(-)

Index: busybox-1.9.0/Makefile.help
===================================================================
--- busybox-1.9.0.orig/Makefile.help
+++ busybox-1.9.0/Makefile.help
@@ -16,7 +16,6 @@ help:
 	@echo 'Configuration:'
 	@echo '  allnoconfig		- disable all symbols in .config'
 	@echo '  allyesconfig		- enable all symbols in .config (see defconfig)'
-	@echo '  allbareconfig		- enable all applets without any sub-features'
 	@echo '  config		- text based configurator (of last resort)'
 	@echo '  defconfig		- set .config to largest generic configuration'
 	@echo '  menuconfig		- interactive curses-based configurator'
Index: busybox-1.9.0/applets/applet_tables.c
===================================================================
--- busybox-1.9.0.orig/applets/applet_tables.c
+++ busybox-1.9.0/applets/applet_tables.c
@@ -71,7 +71,7 @@ int main(int argc, char **argv)
 
 	puts("/* This is a generated file, don't edit */");
 
-	puts("const char applet_names[] ALIGN1 =");
+	puts("const char applet_names[] ALIGN1 = \"\" \n");
 	for (i = 0; i < NUM_APPLETS; i++) {
 		printf("\"%s\" \"\\0\"\n", applets[i].name);
 	}