All of lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH 1/7] gawk: bump to version 4.0.1
@ 2012-03-29  2:24 Gustavo Zacarias
  2012-03-29  2:24 ` [Buildroot] [PATCH 2/7] coreutils: bump to version 8.16 Gustavo Zacarias
                   ` (6 more replies)
  0 siblings, 7 replies; 18+ messages in thread
From: Gustavo Zacarias @ 2012-03-29  2:24 UTC (permalink / raw)
  To: buildroot

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
---
 package/gawk/gawk.mk |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/package/gawk/gawk.mk b/package/gawk/gawk.mk
index f1a6472..8f374cb 100644
--- a/package/gawk/gawk.mk
+++ b/package/gawk/gawk.mk
@@ -4,7 +4,7 @@
 #
 #############################################################
 
-GAWK_VERSION = 4.0.0
+GAWK_VERSION = 4.0.1
 GAWK_SITE = $(BR2_GNU_MIRROR)/gawk
 GAWK_TARGET_BINS = awk gawk igawk pgawk
 
-- 
1.7.3.4

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

* [Buildroot] [PATCH 2/7] coreutils: bump to version 8.16
  2012-03-29  2:24 [Buildroot] [PATCH 1/7] gawk: bump to version 4.0.1 Gustavo Zacarias
@ 2012-03-29  2:24 ` Gustavo Zacarias
  2012-03-29 15:43   ` Peter Korsgaard
  2012-03-29  2:24 ` [Buildroot] [PATCH 3/7] vim: bump to version 7.3.487 Gustavo Zacarias
                   ` (5 subsequent siblings)
  6 siblings, 1 reply; 18+ messages in thread
From: Gustavo Zacarias @ 2012-03-29  2:24 UTC (permalink / raw)
  To: buildroot

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
---
 package/coreutils/coreutils.mk |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/package/coreutils/coreutils.mk b/package/coreutils/coreutils.mk
index 0a85586..b2cca39 100644
--- a/package/coreutils/coreutils.mk
+++ b/package/coreutils/coreutils.mk
@@ -4,7 +4,7 @@
 #
 #############################################################
 
-COREUTILS_VERSION = 8.15
+COREUTILS_VERSION = 8.16
 COREUTILS_SITE = $(BR2_GNU_MIRROR)/coreutils
 COREUTILS_SOURCE = coreutils-$(COREUTILS_VERSION).tar.xz
 
-- 
1.7.3.4

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

* [Buildroot] [PATCH 3/7] vim: bump to version 7.3.487
  2012-03-29  2:24 [Buildroot] [PATCH 1/7] gawk: bump to version 4.0.1 Gustavo Zacarias
  2012-03-29  2:24 ` [Buildroot] [PATCH 2/7] coreutils: bump to version 8.16 Gustavo Zacarias
@ 2012-03-29  2:24 ` Gustavo Zacarias
  2012-03-30 12:52   ` Peter Korsgaard
  2012-03-29  2:25 ` [Buildroot] [PATCH 4/7] tftp-hpa: bump to version 5.2 Gustavo Zacarias
                   ` (4 subsequent siblings)
  6 siblings, 1 reply; 18+ messages in thread
From: Gustavo Zacarias @ 2012-03-29  2:24 UTC (permalink / raw)
  To: buildroot

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
---
 package/vim/Config.in |    2 +-
 package/vim/vim.mk    |   12 ++++++------
 2 files changed, 7 insertions(+), 7 deletions(-)

diff --git a/package/vim/Config.in b/package/vim/Config.in
index 30b73d3..0da158f 100644
--- a/package/vim/Config.in
+++ b/package/vim/Config.in
@@ -12,4 +12,4 @@ config BR2_PACKAGE_VIM_RUNTIME
 	depends on BR2_PACKAGE_VIM
 	help
 	  Install VIM runtime (syntax highlighing + macros).
-	  This option adds about 13MB of data to /usr/share/
+	  This option adds about 15MB of data to /usr/share/
diff --git a/package/vim/vim.mk b/package/vim/vim.mk
index f5988d1..ef8d925 100644
--- a/package/vim/vim.mk
+++ b/package/vim/vim.mk
@@ -4,10 +4,10 @@
 #
 #############################################################
 
-# svn r1889 == 7.2 release + patchlevel 446
-VIM_SITE = https://vim.svn.sourceforge.net/svnroot/vim/branches/vim7.2
-VIM_SITE_METHOD = svn
-VIM_VERSION = 1889
+# hg 21219ffc9790 = 7.3 release + patchlevel 487
+VIM_SITE = https://vim.googlecode.com/hg
+VIM_SITE_METHOD = hg
+VIM_VERSION = 21219ffc9790
 VIM_DEPENDENCIES = ncurses
 VIM_SUBDIR = src
 VIM_CONF_ENV = vim_cv_toupper_broken=no \
@@ -19,8 +19,8 @@ VIM_CONF_ENV = vim_cv_toupper_broken=no \
 		vim_cv_memmove_handles_overlap=yes \
 		ac_cv_sizeof_int=4 \
 		ac_cv_small_wchar_t=no
-
-VIM_CONF_OPT = --with-tlib=ncurses
+# GUI/X11 headers leak from the host so forcibly disable them
+VIM_CONF_OPT = --with-tlib=ncurses --enable-gui=no --without-x
 
 define VIM_INSTALL_TARGET_CMDS
 	cd $(@D)/src; \
-- 
1.7.3.4

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

* [Buildroot] [PATCH 4/7] tftp-hpa: bump to version 5.2
  2012-03-29  2:24 [Buildroot] [PATCH 1/7] gawk: bump to version 4.0.1 Gustavo Zacarias
  2012-03-29  2:24 ` [Buildroot] [PATCH 2/7] coreutils: bump to version 8.16 Gustavo Zacarias
  2012-03-29  2:24 ` [Buildroot] [PATCH 3/7] vim: bump to version 7.3.487 Gustavo Zacarias
@ 2012-03-29  2:25 ` Gustavo Zacarias
  2012-03-29 15:44   ` Peter Korsgaard
  2012-03-29  2:25 ` [Buildroot] [PATCH 5/7] psmisc: bump to version 22.16 Gustavo Zacarias
                   ` (3 subsequent siblings)
  6 siblings, 1 reply; 18+ messages in thread
From: Gustavo Zacarias @ 2012-03-29  2:25 UTC (permalink / raw)
  To: buildroot

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
---
 package/tftpd/tftpd.mk |    5 +++--
 1 files changed, 3 insertions(+), 2 deletions(-)

diff --git a/package/tftpd/tftpd.mk b/package/tftpd/tftpd.mk
index 728319b..80f2935 100644
--- a/package/tftpd/tftpd.mk
+++ b/package/tftpd/tftpd.mk
@@ -3,9 +3,10 @@
 # tftpd
 #
 #############################################################
-TFTPD_VERSION  = 5.0
+
+TFTPD_VERSION  = 5.2
 TFTPD_SOURCE   = tftp-hpa-$(TFTPD_VERSION).tar.bz2
-TFTPD_SITE     = $(BR2_KERNEL_MIRROR)/software/network/tftp/
+TFTPD_SITE     = $(BR2_KERNEL_MIRROR)/software/network/tftp/tftp-hpa
 TFTPD_CONF_OPT = --without-tcpwrappers
 
 ifneq ($(BR2_INET_IPV6),y)
-- 
1.7.3.4

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

* [Buildroot] [PATCH 5/7] psmisc: bump to version 22.16
  2012-03-29  2:24 [Buildroot] [PATCH 1/7] gawk: bump to version 4.0.1 Gustavo Zacarias
                   ` (2 preceding siblings ...)
  2012-03-29  2:25 ` [Buildroot] [PATCH 4/7] tftp-hpa: bump to version 5.2 Gustavo Zacarias
@ 2012-03-29  2:25 ` Gustavo Zacarias
  2012-03-29 22:01   ` Peter Korsgaard
  2012-03-29  2:25 ` [Buildroot] [PATCH 6/7] sqlite: bump to version 3.7.11 Gustavo Zacarias
                   ` (2 subsequent siblings)
  6 siblings, 1 reply; 18+ messages in thread
From: Gustavo Zacarias @ 2012-03-29  2:25 UTC (permalink / raw)
  To: buildroot

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
---
 package/psmisc/psmisc-link-against-libintl.patch |   38 ++++------------------
 package/psmisc/psmisc.mk                         |    6 ++-
 2 files changed, 11 insertions(+), 33 deletions(-)

diff --git a/package/psmisc/psmisc-link-against-libintl.patch b/package/psmisc/psmisc-link-against-libintl.patch
index fca49c6..907e7e7 100644
--- a/package/psmisc/psmisc-link-against-libintl.patch
+++ b/package/psmisc/psmisc-link-against-libintl.patch
@@ -14,44 +14,20 @@ the "autopoint" program, which itself depends on CVS being installed,
 for some strange reasons. That's the reason why we fall back to the
 hacky solution of modifying the Makefile.in file.
 
-Forward-ported Thomas's patch to psmisc 22.14
+Forward-ported Thomas's patch to psmisc 22.16
 from commit f066ed70cd6939838d4057f66798cbc1d972cc73
 
 Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
 
-diff -Nura psmisc-22.14.orig/src/Makefile.in psmisc-22.14/src/Makefile.in
---- psmisc-22.14.orig/src/Makefile.in	2011-10-12 12:12:09.711983726 -0300
-+++ psmisc-22.14/src/Makefile.in	2011-10-12 12:14:01.733350322 -0300
-@@ -70,16 +70,16 @@
- PROGRAMS = $(bin_PROGRAMS)
- am_fuser_OBJECTS = fuser.$(OBJEXT) signals.$(OBJEXT)
- fuser_OBJECTS = $(am_fuser_OBJECTS)
--fuser_LDADD = $(LDADD)
-+fuser_LDADD = $(LDADD) @INTLLIBS@
- am_killall_OBJECTS = killall.$(OBJEXT) signals.$(OBJEXT)
- killall_OBJECTS = $(am_killall_OBJECTS)
+diff -Nura psmisc-22.16.orig/src/Makefile.in psmisc-22.16/src/Makefile.in
+--- psmisc-22.16.orig/src/Makefile.in	2012-03-28 22:27:33.106660358 -0300
++++ psmisc-22.16/src/Makefile.in	2012-03-28 22:28:55.752219349 -0300
+@@ -76,7 +76,7 @@
  killall_DEPENDENCIES =
  am_peekfd_OBJECTS = peekfd.$(OBJEXT)
  peekfd_OBJECTS = $(am_peekfd_OBJECTS)
 -peekfd_LDADD = $(LDADD)
-+peekfd_LDADD = $(LDADD) @INTLLIBS@
++peekfd_LDADD = $(LDADD) @LIBINTL@
  am_prtstat_OBJECTS = prtstat.$(OBJEXT)
  prtstat_OBJECTS = $(am_prtstat_OBJECTS)
--prtstat_LDADD = $(LDADD)
-+prtstat_LDADD = $(LDADD) @INTLLIBS@
- am_pstree_OBJECTS = pstree.$(OBJEXT)
- pstree_OBJECTS = $(am_pstree_OBJECTS)
- pstree_DEPENDENCIES =
-@@ -217,10 +217,10 @@
- 	$(am__append_10)
- fuser_SOURCES = fuser.c comm.h signals.c signals.h i18n.h fuser.h lists.h
- killall_SOURCES = killall.c comm.h signals.c signals.h i18n.h
--killall_LDADD = @SELINUX_LIB@
-+killall_LDADD = @SELINUX_LIB@ @INTLLIBS@
- peekfd_SOURCES = peekfd.c
- pstree_SOURCES = pstree.c comm.h i18n.h
--pstree_LDADD = @TERMCAP_LIB@ @SELINUX_LIB@
-+pstree_LDADD = @TERMCAP_LIB@ @SELINUX_LIB@ @INTLLIBS@
- prtstat_SOURCES = prtstat.c prtstat.h
- BUILT_SOURCES = signames.h
- EXTRA_DIST = signames.c 
+ prtstat_DEPENDENCIES =
diff --git a/package/psmisc/psmisc.mk b/package/psmisc/psmisc.mk
index df116fc..c6d1108 100644
--- a/package/psmisc/psmisc.mk
+++ b/package/psmisc/psmisc.mk
@@ -4,9 +4,11 @@
 #
 #############################################################
 
-PSMISC_VERSION = 22.14
-PSMISC_SITE = http://$(BR2_SOURCEFORGE_MIRROR).dl.sourceforge.net/sourceforge/psmisc
+PSMISC_VERSION = 22.16
+PSMISC_SITE = http://$(BR2_SOURCEFORGE_MIRROR).dl.sourceforge.net/project/psmisc/psmisc
 PSMISC_DEPENDENCIES = ncurses $(if $(BR2_NEEDS_GETTEXT_IF_LOCALE),gettext libintl)
+# Don't force -fstack-protector
+PSMISC_CONF_OPT = --disable-harden-flags
 
 # build after busybox, we prefer fat versions while we're at it
 ifeq ($(BR2_PACKAGE_BUSYBOX),y)
-- 
1.7.3.4

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

* [Buildroot] [PATCH 6/7] sqlite: bump to version 3.7.11
  2012-03-29  2:24 [Buildroot] [PATCH 1/7] gawk: bump to version 4.0.1 Gustavo Zacarias
                   ` (3 preceding siblings ...)
  2012-03-29  2:25 ` [Buildroot] [PATCH 5/7] psmisc: bump to version 22.16 Gustavo Zacarias
@ 2012-03-29  2:25 ` Gustavo Zacarias
  2012-03-29 15:45   ` Peter Korsgaard
  2012-03-29  2:25 ` [Buildroot] [PATCH 7/7] sudo: bump to version 1.8.4p4 Gustavo Zacarias
  2012-03-29 15:43 ` [Buildroot] [PATCH 1/7] gawk: bump to version 4.0.1 Peter Korsgaard
  6 siblings, 1 reply; 18+ messages in thread
From: Gustavo Zacarias @ 2012-03-29  2:25 UTC (permalink / raw)
  To: buildroot

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
---
 package/sqlite/sqlite.mk |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/package/sqlite/sqlite.mk b/package/sqlite/sqlite.mk
index 18617e8..2065ce1 100644
--- a/package/sqlite/sqlite.mk
+++ b/package/sqlite/sqlite.mk
@@ -4,7 +4,7 @@
 #
 #############################################################
 
-SQLITE_VERSION = 3071000
+SQLITE_VERSION = 3071100
 SQLITE_SOURCE = sqlite-autoconf-$(SQLITE_VERSION).tar.gz
 SQLITE_SITE = http://www.sqlite.org
 SQLITE_INSTALL_STAGING = YES
-- 
1.7.3.4

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

* [Buildroot] [PATCH 7/7] sudo: bump to version 1.8.4p4
  2012-03-29  2:24 [Buildroot] [PATCH 1/7] gawk: bump to version 4.0.1 Gustavo Zacarias
                   ` (4 preceding siblings ...)
  2012-03-29  2:25 ` [Buildroot] [PATCH 6/7] sqlite: bump to version 3.7.11 Gustavo Zacarias
@ 2012-03-29  2:25 ` Gustavo Zacarias
  2012-03-29 15:46   ` Peter Korsgaard
  2012-03-29 15:43 ` [Buildroot] [PATCH 1/7] gawk: bump to version 4.0.1 Peter Korsgaard
  6 siblings, 1 reply; 18+ messages in thread
From: Gustavo Zacarias @ 2012-03-29  2:25 UTC (permalink / raw)
  To: buildroot

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
---
 package/sudo/sudo.mk |   11 ++++++-----
 1 files changed, 6 insertions(+), 5 deletions(-)

diff --git a/package/sudo/sudo.mk b/package/sudo/sudo.mk
index f10d294..71d7a20 100644
--- a/package/sudo/sudo.mk
+++ b/package/sudo/sudo.mk
@@ -4,9 +4,8 @@
 #
 #############################################################
 
-SUDO_VERSION = 1.7.8p1
+SUDO_VERSION = 1.8.4p4
 SUDO_SITE    = http://www.sudo.ws/sudo/dist
-
 SUDO_CONF_OPT = \
 		--without-lecture \
 		--without-sendmail \
@@ -16,9 +15,11 @@ SUDO_CONF_OPT = \
 		--without-pam
 
 define SUDO_INSTALL_TARGET_CMDS
-	install -m 4555 -D $(@D)/sudo $(TARGET_DIR)/usr/bin/sudo
-	install -m 0555 -D $(@D)/visudo $(TARGET_DIR)/usr/sbin/visudo
-	install -m 0440 -D $(@D)/sudoers $(TARGET_DIR)/etc/sudoers
+	install -m 4555 -D $(@D)/src/sudo $(TARGET_DIR)/usr/bin/sudo
+	install -m 0555 -D $(@D)/plugins/sudoers/visudo  \
+		$(TARGET_DIR)/usr/sbin/visudo
+	install -m 0440 -D $(@D)/plugins/sudoers/sudoers \
+		$(TARGET_DIR)/etc/sudoers
 endef
 
 $(eval $(call AUTOTARGETS))
-- 
1.7.3.4

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

* [Buildroot] [PATCH 1/7] gawk: bump to version 4.0.1
  2012-03-29  2:24 [Buildroot] [PATCH 1/7] gawk: bump to version 4.0.1 Gustavo Zacarias
                   ` (5 preceding siblings ...)
  2012-03-29  2:25 ` [Buildroot] [PATCH 7/7] sudo: bump to version 1.8.4p4 Gustavo Zacarias
@ 2012-03-29 15:43 ` Peter Korsgaard
  6 siblings, 0 replies; 18+ messages in thread
From: Peter Korsgaard @ 2012-03-29 15:43 UTC (permalink / raw)
  To: buildroot

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

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

Committed, thanks.

-- 
Bye, Peter Korsgaard

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

* [Buildroot] [PATCH 2/7] coreutils: bump to version 8.16
  2012-03-29  2:24 ` [Buildroot] [PATCH 2/7] coreutils: bump to version 8.16 Gustavo Zacarias
@ 2012-03-29 15:43   ` Peter Korsgaard
  0 siblings, 0 replies; 18+ messages in thread
From: Peter Korsgaard @ 2012-03-29 15:43 UTC (permalink / raw)
  To: buildroot

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

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

Committed, thanks.

-- 
Bye, Peter Korsgaard

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

* [Buildroot] [PATCH 4/7] tftp-hpa: bump to version 5.2
  2012-03-29  2:25 ` [Buildroot] [PATCH 4/7] tftp-hpa: bump to version 5.2 Gustavo Zacarias
@ 2012-03-29 15:44   ` Peter Korsgaard
  0 siblings, 0 replies; 18+ messages in thread
From: Peter Korsgaard @ 2012-03-29 15:44 UTC (permalink / raw)
  To: buildroot

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

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

Committed, thanks.

-- 
Bye, Peter Korsgaard

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

* [Buildroot] [PATCH 6/7] sqlite: bump to version 3.7.11
  2012-03-29  2:25 ` [Buildroot] [PATCH 6/7] sqlite: bump to version 3.7.11 Gustavo Zacarias
@ 2012-03-29 15:45   ` Peter Korsgaard
  0 siblings, 0 replies; 18+ messages in thread
From: Peter Korsgaard @ 2012-03-29 15:45 UTC (permalink / raw)
  To: buildroot

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

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

Committed, thanks.

-- 
Bye, Peter Korsgaard

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

* [Buildroot] [PATCH 7/7] sudo: bump to version 1.8.4p4
  2012-03-29  2:25 ` [Buildroot] [PATCH 7/7] sudo: bump to version 1.8.4p4 Gustavo Zacarias
@ 2012-03-29 15:46   ` Peter Korsgaard
  0 siblings, 0 replies; 18+ messages in thread
From: Peter Korsgaard @ 2012-03-29 15:46 UTC (permalink / raw)
  To: buildroot

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

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

Committed, thanks.

-- 
Bye, Peter Korsgaard

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

* [Buildroot] [PATCH 5/7] psmisc: bump to version 22.16
  2012-03-29  2:25 ` [Buildroot] [PATCH 5/7] psmisc: bump to version 22.16 Gustavo Zacarias
@ 2012-03-29 22:01   ` Peter Korsgaard
  2012-03-29 22:37     ` Gustavo Zacarias
  0 siblings, 1 reply; 18+ messages in thread
From: Peter Korsgaard @ 2012-03-29 22:01 UTC (permalink / raw)
  To: buildroot

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

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

 Gustavo> +# Don't force -fstack-protector
 Gustavo> +PSMISC_CONF_OPT = --disable-harden-flags

We have a BR2_TOOLCHAIN_BUILDROOT_USE_SSP, so we shouldn't disable if we
know the toolchain supports it.

Other than that it looks good - Committed, thanks.

-- 
Bye, Peter Korsgaard

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

* [Buildroot] [PATCH 5/7] psmisc: bump to version 22.16
  2012-03-29 22:01   ` Peter Korsgaard
@ 2012-03-29 22:37     ` Gustavo Zacarias
  2012-03-30 10:55       ` Peter Korsgaard
  0 siblings, 1 reply; 18+ messages in thread
From: Gustavo Zacarias @ 2012-03-29 22:37 UTC (permalink / raw)
  To: buildroot

On 2012-03-29 19:01, Peter Korsgaard wrote:

>>>>>> "Gustavo" == Gustavo Zacarias <gustavo@zacarias.com.ar> writes:
>
>  Gustavo> Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
>
>  Gustavo> +# Don't force -fstack-protector
>  Gustavo> +PSMISC_CONF_OPT = --disable-harden-flags
>
> We have a BR2_TOOLCHAIN_BUILDROOT_USE_SSP, so we shouldn't disable if 
> we
> know the toolchain supports it.
>
> Other than that it looks good - Committed, thanks.

Yes, however the support is incomplete, we aren't copying libssp for 
external toolchains and we're doing --disable-libssp for the internal 
too so it's better to disable it altogether until that's fixed (i recall 
there was a bug or email reporting it).
Regards.

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

* [Buildroot] [PATCH 5/7] psmisc: bump to version 22.16
  2012-03-29 22:37     ` Gustavo Zacarias
@ 2012-03-30 10:55       ` Peter Korsgaard
  2012-03-30 11:37         ` Gustavo Zacarias
  0 siblings, 1 reply; 18+ messages in thread
From: Peter Korsgaard @ 2012-03-30 10:55 UTC (permalink / raw)
  To: buildroot

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

Hi,

 Gustavo> +# Don't force -fstack-protector
 Gustavo> +PSMISC_CONF_OPT = --disable-harden-flags
 >> 
 >> We have a BR2_TOOLCHAIN_BUILDROOT_USE_SSP, so we shouldn't disable
 >> if we know the toolchain supports it.
 >> 
 >> Other than that it looks good - Committed, thanks.

 Gustavo> Yes, however the support is incomplete, we aren't copying
 Gustavo> libssp for external toolchains and we're doing
 Gustavo> --disable-libssp for the internal too so it's better to
 Gustavo> disable it altogether until that's fixed (i recall there was a
 Gustavo> bug or email reporting it).

It is true that we don't have SSP support in external toolchains, but
BR2_TOOLCHAIN_BUILDROOT_USE_SSP isn't enabled for those, and for
internal toolchains we do enable the SSP support in uClibc, so those
should afaik be OK.

So I think the commit is OK as is.
-- 
Bye, Peter Korsgaard

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

* [Buildroot] [PATCH 5/7] psmisc: bump to version 22.16
  2012-03-30 10:55       ` Peter Korsgaard
@ 2012-03-30 11:37         ` Gustavo Zacarias
  2012-03-30 11:52           ` Peter Korsgaard
  0 siblings, 1 reply; 18+ messages in thread
From: Gustavo Zacarias @ 2012-03-30 11:37 UTC (permalink / raw)
  To: buildroot

On 2012-03-30 07:55, Peter Korsgaard wrote:

> It is true that we don't have SSP support in external toolchains, but
> BR2_TOOLCHAIN_BUILDROOT_USE_SSP isn't enabled for those, and for
> internal toolchains we do enable the SSP support in uClibc, so those
> should afaik be OK.
>
> So I think the commit is OK as is.

Shouldn't we push -fstack-protector into CFLAGS in the toolchain infra 
when the option is enabled?
AFAIK if you build stack protector support without using a form of 
-fstack-protector* in CFLAGS then the packages won't use it, right?
And if we leave it to each package to do it then we're just giving a 
false sense of security with that option.
On a side note, avahi is forcing stack protector off too since memorial 
times, maybe that should be revised?
Regards.

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

* [Buildroot] [PATCH 5/7] psmisc: bump to version 22.16
  2012-03-30 11:37         ` Gustavo Zacarias
@ 2012-03-30 11:52           ` Peter Korsgaard
  0 siblings, 0 replies; 18+ messages in thread
From: Peter Korsgaard @ 2012-03-30 11:52 UTC (permalink / raw)
  To: buildroot

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

Hi,

 Gustavo> Shouldn't we push -fstack-protector into CFLAGS in the toolchain infra
 Gustavo> when the option is enabled?
 Gustavo> AFAIK if you build stack protector support without using a form of
 Gustavo> -fstack-protector* in CFLAGS then the packages won't use it, right?
 Gustavo> And if we leave it to each package to do it then we're just giving a
 Gustavo> false sense of security with that option.
 Gustavo> On a side note, avahi is forcing stack protector off too since
 Gustavo> memorial times, maybe that should be revised?

Yes, I also think our SSP support could be improved. Anyone knows /
cares enough of it to do so?

-- 
Bye, Peter Korsgaard

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

* [Buildroot] [PATCH 3/7] vim: bump to version 7.3.487
  2012-03-29  2:24 ` [Buildroot] [PATCH 3/7] vim: bump to version 7.3.487 Gustavo Zacarias
@ 2012-03-30 12:52   ` Peter Korsgaard
  0 siblings, 0 replies; 18+ messages in thread
From: Peter Korsgaard @ 2012-03-30 12:52 UTC (permalink / raw)
  To: buildroot

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

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

Committed, thanks.

-- 
Bye, Peter Korsgaard

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

end of thread, other threads:[~2012-03-30 12:52 UTC | newest]

Thread overview: 18+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2012-03-29  2:24 [Buildroot] [PATCH 1/7] gawk: bump to version 4.0.1 Gustavo Zacarias
2012-03-29  2:24 ` [Buildroot] [PATCH 2/7] coreutils: bump to version 8.16 Gustavo Zacarias
2012-03-29 15:43   ` Peter Korsgaard
2012-03-29  2:24 ` [Buildroot] [PATCH 3/7] vim: bump to version 7.3.487 Gustavo Zacarias
2012-03-30 12:52   ` Peter Korsgaard
2012-03-29  2:25 ` [Buildroot] [PATCH 4/7] tftp-hpa: bump to version 5.2 Gustavo Zacarias
2012-03-29 15:44   ` Peter Korsgaard
2012-03-29  2:25 ` [Buildroot] [PATCH 5/7] psmisc: bump to version 22.16 Gustavo Zacarias
2012-03-29 22:01   ` Peter Korsgaard
2012-03-29 22:37     ` Gustavo Zacarias
2012-03-30 10:55       ` Peter Korsgaard
2012-03-30 11:37         ` Gustavo Zacarias
2012-03-30 11:52           ` Peter Korsgaard
2012-03-29  2:25 ` [Buildroot] [PATCH 6/7] sqlite: bump to version 3.7.11 Gustavo Zacarias
2012-03-29 15:45   ` Peter Korsgaard
2012-03-29  2:25 ` [Buildroot] [PATCH 7/7] sudo: bump to version 1.8.4p4 Gustavo Zacarias
2012-03-29 15:46   ` Peter Korsgaard
2012-03-29 15:43 ` [Buildroot] [PATCH 1/7] gawk: bump to version 4.0.1 Peter Korsgaard

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.