All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 0/2] Poky Distro specific Updates
@ 2013-10-16 16:33 Saul Wold
  2013-10-16 16:33 ` [PATCH 1/2] local.conf.sample.extended: Add some additional comments for security flags Saul Wold
  2013-10-16 16:33 ` [PATCH 2/2] package-regex: Tweak python-docutils so it works correctly Saul Wold
  0 siblings, 2 replies; 3+ messages in thread
From: Saul Wold @ 2013-10-16 16:33 UTC (permalink / raw)
  To: poky

Richard,

A package_regex tweak and some better comments for the security flags


Sau!


The following changes since commit 529bf977e956175bd8405ebffc88194192e44740:

  update-rcd.bbclass: fix host/target test (2013-10-16 14:51:07 +0100)

are available in the git repository at:

  git://git.yoctoproject.org/poky-contrib sgw/stage
  http://git.yoctoproject.org/cgit.cgi/poky-contrib/log/?h=sgw/stage

Saul Wold (2):
  local.conf.sample.extended: Add some additional comments for security
    flags
  package-regex: Tweak python-docutils so it works correctly

 meta-yocto/conf/distro/include/package_regex.inc | 2 +-
 meta-yocto/conf/local.conf.sample.extended       | 9 ++++++++-
 2 files changed, 9 insertions(+), 2 deletions(-)

-- 
1.8.3.1



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

* [PATCH 1/2] local.conf.sample.extended: Add some additional comments for security flags
  2013-10-16 16:33 [PATCH 0/2] Poky Distro specific Updates Saul Wold
@ 2013-10-16 16:33 ` Saul Wold
  2013-10-16 16:33 ` [PATCH 2/2] package-regex: Tweak python-docutils so it works correctly Saul Wold
  1 sibling, 0 replies; 3+ messages in thread
From: Saul Wold @ 2013-10-16 16:33 UTC (permalink / raw)
  To: poky

Signed-off-by: Saul Wold <sgw@linux.intel.com>
---
 meta-yocto/conf/local.conf.sample.extended | 9 ++++++++-
 1 file changed, 8 insertions(+), 1 deletion(-)

diff --git a/meta-yocto/conf/local.conf.sample.extended b/meta-yocto/conf/local.conf.sample.extended
index a2cb81b..f85310e 100644
--- a/meta-yocto/conf/local.conf.sample.extended
+++ b/meta-yocto/conf/local.conf.sample.extended
@@ -215,6 +215,14 @@
 # Remove the old image before the new one generated to save disk space
 #RM_OLD_IMAGE = "1"
 
+#
+# GCC/LD FLAGS to enable more secure code generation
+# 
+# By including the security_flags include file you enable flags
+# to the compiler and linker that cause them to generate more secure
+# code, this is enabled by default in the poky-lsb distro.
+# This does affect compile speed slightly.
+#
 # Use the following line to enable the security compiler and linker flags to your build
 #require conf/distro/include/security_flags.inc
 
@@ -262,4 +270,3 @@ export FC = "${CCACHE}${HOST_PREFIX}gfortran ${HOST_CC_ARCH}"
 #INITRAMFS_IMAGE = "core-image-minimal-initramfs"
 #INITRAMFS_IMAGE_BUNDLE = "1"
 
-
-- 
1.8.3.1



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

* [PATCH 2/2] package-regex: Tweak python-docutils so it works correctly
  2013-10-16 16:33 [PATCH 0/2] Poky Distro specific Updates Saul Wold
  2013-10-16 16:33 ` [PATCH 1/2] local.conf.sample.extended: Add some additional comments for security flags Saul Wold
@ 2013-10-16 16:33 ` Saul Wold
  1 sibling, 0 replies; 3+ messages in thread
From: Saul Wold @ 2013-10-16 16:33 UTC (permalink / raw)
  To: poky

Signed-off-by: Saul Wold <sgw@linux.intel.com>
---
 meta-yocto/conf/distro/include/package_regex.inc | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta-yocto/conf/distro/include/package_regex.inc b/meta-yocto/conf/distro/include/package_regex.inc
index 89cd366..da6e738 100644
--- a/meta-yocto/conf/distro/include/package_regex.inc
+++ b/meta-yocto/conf/distro/include/package_regex.inc
@@ -216,7 +216,7 @@ REGEX_URI_pn-psmisc = "http://sourceforge.net/projects/psmisc/files/psmisc/"
 REGEX_pn-psmisc = "[hH][rR][eE][fF]=\"http://sourceforge.net/projects/psmisc/files/psmisc/psmisc\-(?P<pver>((\d+[\.\-_]*)+))\.tar\.gz/download\""
 REGEX_URI_pn-python-argparse = "https://code.google.com/p/argparse/downloads/list"
 REGEX_URI_pn-python-docutils = "http://sourceforge.net/projects/docutils/files/docutils/"
-REGEX_pn-python-docutils = "[hH][rR][eE][fF]=\"/projects/docutils/files/docutils/docutils\-(?P<pver>((\d+[\.\-_]*)+)).*/\""
+REGEX_pn-python-docutils = "[hH][rR][eE][fF]=\"/projects/docutils/files/docutils/(?P<pver>((\d+[\.\-_]*)+)).*/\""
 REGEX_URI_pn-python-pycurl = "http://pycurl.sourceforge.net/download/"
 REGEX_pn-python-pycurl = "[hH][rR][eE][fF]=\"pycurl-(?P<pver>((\d+[\.\-_]*)+)).tar.gz\""
 REGEX_URI_pn-python-scons = "http://sourceforge.net/projects/scons/files/scons/"
-- 
1.8.3.1



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

end of thread, other threads:[~2013-10-16 16:33 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-10-16 16:33 [PATCH 0/2] Poky Distro specific Updates Saul Wold
2013-10-16 16:33 ` [PATCH 1/2] local.conf.sample.extended: Add some additional comments for security flags Saul Wold
2013-10-16 16:33 ` [PATCH 2/2] package-regex: Tweak python-docutils so it works correctly Saul Wold

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.