Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH 1/2] busybox 1.20.x: add if-post-up.d and if-pre-down.d to device table
@ 2012-04-29 13:03 Gustavo Zacarias
  2012-04-29 13:03 ` [Buildroot] [PATCH 2/2] busybox 1.20.0: add buildsys patch Gustavo Zacarias
  2012-04-29 17:14 ` [Buildroot] [PATCH 1/2] busybox 1.20.x: add if-post-up.d and if-pre-down.d to device table Peter Korsgaard
  0 siblings, 2 replies; 4+ messages in thread
From: Gustavo Zacarias @ 2012-04-29 13:03 UTC (permalink / raw)
  To: buildroot

Busybox 1.20.0 add functionality to execute scripts from if-post-up.d
and if-pre-down.d, so add the missing directories to the device table to
get them created and avoid unnecessary warnings if not.

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
---
 target/generic/device_table.txt |    2 ++
 1 files changed, 2 insertions(+), 0 deletions(-)

diff --git a/target/generic/device_table.txt b/target/generic/device_table.txt
index d3e394b..fc397a9 100644
--- a/target/generic/device_table.txt
+++ b/target/generic/device_table.txt
@@ -14,7 +14,9 @@
 /etc/passwd				f	644	0	0	-	-	-	-	-
 /etc/network/if-up.d			d	755	0	0	-	-	-	-	-
 /etc/network/if-pre-up.d		d	755	0	0	-	-	-	-	-
+/etc/network/if-post-up.d		d	755	0	0	-	-	-	-	-
 /etc/network/if-down.d			d	755	0	0	-	-	-	-	-
+/etc/network/if-pre-down.d		d	755	0	0	-	-	-	-	-
 /etc/network/if-post-down.d		d	755	0	0	-	-	-	-	-
 # uncomment this to allow starting x as non-root
 #/usr/X11R6/bin/Xfbdev		     	f	4755	0	0	-	-	-	-	-
-- 
1.7.3.4

^ permalink raw reply related	[flat|nested] 4+ messages in thread

* [Buildroot] [PATCH 2/2] busybox 1.20.0: add buildsys patch
  2012-04-29 13:03 [Buildroot] [PATCH 1/2] busybox 1.20.x: add if-post-up.d and if-pre-down.d to device table Gustavo Zacarias
@ 2012-04-29 13:03 ` Gustavo Zacarias
  2012-04-29 17:39   ` Peter Korsgaard
  2012-04-29 17:14 ` [Buildroot] [PATCH 1/2] busybox 1.20.x: add if-post-up.d and if-pre-down.d to device table Peter Korsgaard
  1 sibling, 1 reply; 4+ messages in thread
From: Gustavo Zacarias @ 2012-04-29 13:03 UTC (permalink / raw)
  To: buildroot

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
---
 .../busybox-1.20.0/busybox-1.20.0-buildsys.patch   |   11 +++++++++++
 1 files changed, 11 insertions(+), 0 deletions(-)
 create mode 100644 package/busybox/busybox-1.20.0/busybox-1.20.0-buildsys.patch

diff --git a/package/busybox/busybox-1.20.0/busybox-1.20.0-buildsys.patch b/package/busybox/busybox-1.20.0/busybox-1.20.0-buildsys.patch
new file mode 100644
index 0000000..b9d2a5e
--- /dev/null
+++ b/package/busybox/busybox-1.20.0/busybox-1.20.0-buildsys.patch
@@ -0,0 +1,11 @@
+--- busybox-1.20.0/archival/libarchive/Kbuild.src
++++ busybox-1.20.0-buildsys/archival/libarchive/Kbuild.src
+@@ -60,7 +60,7 @@ lib-$(CONFIG_FEATURE_SEAMLESS_GZ)
+ lib-$(CONFIG_FEATURE_SEAMLESS_BZ2)      += open_transformer.o decompress_bunzip2.o
+ lib-$(CONFIG_FEATURE_SEAMLESS_LZMA)     += open_transformer.o decompress_unlzma.o
+ lib-$(CONFIG_FEATURE_SEAMLESS_XZ)       += open_transformer.o decompress_unxz.o
+-lib-$(CONFIG_FEATURE_COMPRESS_USAGE)    += decompress_bunzip2.o
++lib-$(CONFIG_FEATURE_COMPRESS_USAGE)    += open_transformer.o decompress_bunzip2.o
+ lib-$(CONFIG_FEATURE_COMPRESS_BBCONFIG) += decompress_bunzip2.o
+ lib-$(CONFIG_FEATURE_TAR_TO_COMMAND)    += data_extract_to_command.o
+ 
-- 
1.7.3.4

^ permalink raw reply related	[flat|nested] 4+ messages in thread

* [Buildroot] [PATCH 1/2] busybox 1.20.x: add if-post-up.d and if-pre-down.d to device table
  2012-04-29 13:03 [Buildroot] [PATCH 1/2] busybox 1.20.x: add if-post-up.d and if-pre-down.d to device table Gustavo Zacarias
  2012-04-29 13:03 ` [Buildroot] [PATCH 2/2] busybox 1.20.0: add buildsys patch Gustavo Zacarias
@ 2012-04-29 17:14 ` Peter Korsgaard
  1 sibling, 0 replies; 4+ messages in thread
From: Peter Korsgaard @ 2012-04-29 17:14 UTC (permalink / raw)
  To: buildroot

>>>>> "Gustavo" == Gustavo Zacarias <gustavo@zacarias.com.ar> writes:

 Gustavo> Busybox 1.20.0 add functionality to execute scripts from
 Gustavo> if-post-up.d and if-pre-down.d, so add the missing directories
 Gustavo> to the device table to get them created and avoid unnecessary
 Gustavo> warnings if not.

Committed, thanks.

-- 
Bye, Peter Korsgaard

^ permalink raw reply	[flat|nested] 4+ messages in thread

* [Buildroot] [PATCH 2/2] busybox 1.20.0: add buildsys patch
  2012-04-29 13:03 ` [Buildroot] [PATCH 2/2] busybox 1.20.0: add buildsys patch Gustavo Zacarias
@ 2012-04-29 17:39   ` Peter Korsgaard
  0 siblings, 0 replies; 4+ messages in thread
From: Peter Korsgaard @ 2012-04-29 17:39 UTC (permalink / raw)
  To: buildroot

>>>>> "Gustavo" == Gustavo Zacarias <gustavo@zacarias.com.ar> writes:

 Gustavo> Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>

Sorry, I already committed that locally.

-- 
Bye, Peter Korsgaard

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2012-04-29 17:39 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-04-29 13:03 [Buildroot] [PATCH 1/2] busybox 1.20.x: add if-post-up.d and if-pre-down.d to device table Gustavo Zacarias
2012-04-29 13:03 ` [Buildroot] [PATCH 2/2] busybox 1.20.0: add buildsys patch Gustavo Zacarias
2012-04-29 17:39   ` Peter Korsgaard
2012-04-29 17:14 ` [Buildroot] [PATCH 1/2] busybox 1.20.x: add if-post-up.d and if-pre-down.d to device table Peter Korsgaard

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox