Openembedded Core Discussions
 help / color / mirror / Atom feed
* [PATCH 0/6] Cumulative patches from Mailing List
@ 2011-04-10 20:13 Saul Wold
  2011-04-10 20:13 ` [PATCH 1/6] autotools: Pass --disable-silent-rules to configure Saul Wold
                   ` (5 more replies)
  0 siblings, 6 replies; 7+ messages in thread
From: Saul Wold @ 2011-04-10 20:13 UTC (permalink / raw)
  To: openembedded-core; +Cc: Darren Hart, Xiaofeng Yan

From: Saul Wold <sgw@linux.intel.com>

Richard,

Here is a set of patches from the Mailing list that I have pulled
together and tested, these address a varitey of issues along with 
some autobuilder failure fixes

Sau!


Pull URL: git://git.pokylinux.org/poky-contrib.git
  Branch: distro/oe-core
  Browse: http://git.pokylinux.org/cgit.cgi/poky-contrib/log/?h=distro/oe-core

Thanks,
    Saul Wold <sgw@linux.intel.com>
---


Colin Walters (1):
  autotools: Pass --disable-silent-rules to configure

Darren Hart (1):
  README.hardware: automate boot process for router station pro

Gary Thomas (1):
  Allow JFFS2 image options to be overridden

Saul Wold (2):
  clutter-1.6: fix SRC_URI[md5sum]
  qt4-x11-free: add virtual/libgl for opengl dependency

Xiaofeng Yan (1):
  eglibc-package.inc: Add eglibc-binaries, eglibc-localedatas,
    eglibc-gconvs and eglibc-charmps to variable PACKAGE

 README.hardware                                    |   22 ++++++++++++++++++++
 meta/classes/autotools.bbclass                     |    1 +
 meta/classes/image_types.bbclass                   |    2 +-
 meta/recipes-core/eglibc/eglibc-package.inc        |   20 ++++++++++++++++++
 meta/recipes-graphics/clutter/clutter-1.6_1.6.8.bb |    2 +-
 meta/recipes-qt/qt4/qt4-x11-free.inc               |    4 +-
 6 files changed, 47 insertions(+), 4 deletions(-)




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

* [PATCH 1/6] autotools: Pass --disable-silent-rules to configure
  2011-04-10 20:13 [PATCH 0/6] Cumulative patches from Mailing List Saul Wold
@ 2011-04-10 20:13 ` Saul Wold
  2011-04-10 20:13 ` [PATCH 2/6] Allow JFFS2 image options to be overridden Saul Wold
                   ` (4 subsequent siblings)
  5 siblings, 0 replies; 7+ messages in thread
From: Saul Wold @ 2011-04-10 20:13 UTC (permalink / raw)
  To: openembedded-core; +Cc: Darren Hart, Xiaofeng Yan

From: Colin Walters <walters@verbum.org>

Non-verbose logs are really annoying when trying to debug a build
failure.  A lot of projects are copying in the flag to use
AM_SILENT_RULES which automake gained recently.  We need to undo
this.

We'll get a warning from configure if it's not recognized, but that's
fine.

Signed-off-by: Saul Wold <sgw@linux.intel.com>
---
 meta/classes/autotools.bbclass |    1 +
 1 files changed, 1 insertions(+), 0 deletions(-)

diff --git a/meta/classes/autotools.bbclass b/meta/classes/autotools.bbclass
index bc891f9..7ebf833 100644
--- a/meta/classes/autotools.bbclass
+++ b/meta/classes/autotools.bbclass
@@ -63,6 +63,7 @@ CONFIGUREOPTS = " --build=${BUILD_SYS} \
 		  --oldincludedir=${oldincludedir} \
 		  --infodir=${infodir} \
 		  --mandir=${mandir} \
+		  --disable-silent-rules \
 		  ${@append_libtool_sysroot(d)}"
 
 oe_runconf () {
-- 
1.7.1.1




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

* [PATCH 2/6] Allow JFFS2 image options to be overridden
  2011-04-10 20:13 [PATCH 0/6] Cumulative patches from Mailing List Saul Wold
  2011-04-10 20:13 ` [PATCH 1/6] autotools: Pass --disable-silent-rules to configure Saul Wold
@ 2011-04-10 20:13 ` Saul Wold
  2011-04-10 20:13 ` [PATCH 3/6] eglibc-package.inc: Add eglibc-binaries, eglibc-localedatas, eglibc-gconvs and eglibc-charmps to variable PACKAGE Saul Wold
                   ` (3 subsequent siblings)
  5 siblings, 0 replies; 7+ messages in thread
From: Saul Wold @ 2011-04-10 20:13 UTC (permalink / raw)
  To: openembedded-core; +Cc: Darren Hart, Xiaofeng Yan

From: Gary Thomas <gary@mlbassoc.com>

Signed-off-by: Gary Thomas <gary@mlbassoc.com>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
---
 meta/classes/image_types.bbclass |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/meta/classes/image_types.bbclass b/meta/classes/image_types.bbclass
index f11a7ed..f23c1f5 100644
--- a/meta/classes/image_types.bbclass
+++ b/meta/classes/image_types.bbclass
@@ -63,7 +63,7 @@ IMAGE_CMD_ubi () {
 IMAGE_CMD_ubifs = "mkfs.ubifs -r ${IMAGE_ROOTFS} -o ${DEPLOY_DIR_IMAGE}/${IMAGE_NAME}.ubifs.img ${MKUBIFS_ARGS}"
 
 EXTRA_IMAGECMD = ""
-EXTRA_IMAGECMD_jffs2 = "--pad --little-endian --eraseblock=0x40000"
+EXTRA_IMAGECMD_jffs2 ?= "--pad --little-endian --eraseblock=0x40000"
 EXTRA_IMAGECMD_yaffs2 = "1"
 # Change these if you want default genext2fs behavior (i.e. create minimal inode number)
 EXTRA_IMAGECMD_ext2 ?= "-i 8192"
-- 
1.7.1.1




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

* [PATCH 3/6] eglibc-package.inc: Add eglibc-binaries, eglibc-localedatas, eglibc-gconvs and eglibc-charmps to variable PACKAGE
  2011-04-10 20:13 [PATCH 0/6] Cumulative patches from Mailing List Saul Wold
  2011-04-10 20:13 ` [PATCH 1/6] autotools: Pass --disable-silent-rules to configure Saul Wold
  2011-04-10 20:13 ` [PATCH 2/6] Allow JFFS2 image options to be overridden Saul Wold
@ 2011-04-10 20:13 ` Saul Wold
  2011-04-10 20:13 ` [PATCH 4/6] clutter-1.6: fix SRC_URI[md5sum] Saul Wold
                   ` (2 subsequent siblings)
  5 siblings, 0 replies; 7+ messages in thread
From: Saul Wold @ 2011-04-10 20:13 UTC (permalink / raw)
  To: openembedded-core; +Cc: Darren Hart, Xiaofeng Yan

From: Xiaofeng Yan <xiaofeng.yan@windriver.com>

The purpose of adding the above variables it to make it easier to
install them into a lsb-image. By having 4 collections of packages
they will not fill the task-poky-lsb.bb file.

eglibc-binaries include packages "eglibc-binary-*"
eglibc-localedatas include packages "eglibc-localedata-*"
eglibc-gconvs include packages "eglibc-gconv-*"
eglibc-charmaps include packages "eglibc-charmap-*"

[sgw: edited summary and description]
Signed-off-by: Xiaofeng Yan <xiaofeng.yan@windriver.com>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
---
 meta/recipes-core/eglibc/eglibc-package.inc |   20 ++++++++++++++++++++
 1 files changed, 20 insertions(+), 0 deletions(-)

diff --git a/meta/recipes-core/eglibc/eglibc-package.inc b/meta/recipes-core/eglibc/eglibc-package.inc
index 01275aa..fa6dc3c 100644
--- a/meta/recipes-core/eglibc/eglibc-package.inc
+++ b/meta/recipes-core/eglibc/eglibc-package.inc
@@ -44,6 +44,26 @@ PACKAGES_DYNAMIC = " \
 		    eglibc-gconv-* eglibc-charmap-* eglibc-localedata-* eglibc-binary-localedata-* \
 		    locale-base-*${PKGSUFFIX}"
 
+# Create a eglibc-binaries
+ALLOW_EMPTY_${PN}-binaries = "1"
+PACKAGES += "${PN}-binaries"
+RRECOMMENDS_${PN}-binaries =  "${@" ".join([p for p in d.getVar('PACKAGES', True).split() if p.find("eglibc-binary") != -1])}"
+
+# Create a eglibc-charmaps package 
+ALLOW_EMPTY_${PN}-charmaps = "1"
+PACKAGES += "${PN}-charmaps"
+RRECOMMENDS_${PN}-charmaps =  "${@" ".join([p for p in d.getVar('PACKAGES', True).split() if p.find("eglibc-charmap") != -1])}"
+
+# Create a eglibc-gconvs package 
+ALLOW_EMPTY_${PN}-gconvs = "1"
+PACKAGES += "${PN}-gconvs"
+RRECOMMENDS_${PN}-gconvs =  "${@" ".join([p for p in d.getVar('PACKAGES', True).split() if p.find("eglibc-gconv") != -1])}"
+
+# Create a eglibc-localedatas package 
+ALLOW_EMPTY_${PN}-localedatas = "1"
+PACKAGES += "${PN}-localedatas"
+RRECOMMENDS_${PN}-localedatas =  "${@" ".join([p for p in d.getVar('PACKAGES', True).split() if p.find("eglibc-localedata") != -1])}"
+
 RPROVIDES_eglibc = "glibc"
 RPROVIDES_eglibc-utils = "glibc-utils"
 RPROVIDES_eglibc-pic = "glibc-pic"
-- 
1.7.1.1




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

* [PATCH 4/6] clutter-1.6: fix SRC_URI[md5sum]
  2011-04-10 20:13 [PATCH 0/6] Cumulative patches from Mailing List Saul Wold
                   ` (2 preceding siblings ...)
  2011-04-10 20:13 ` [PATCH 3/6] eglibc-package.inc: Add eglibc-binaries, eglibc-localedatas, eglibc-gconvs and eglibc-charmps to variable PACKAGE Saul Wold
@ 2011-04-10 20:13 ` Saul Wold
  2011-04-10 20:13 ` [PATCH 5/6] qt4-x11-free: add virtual/libgl for opengl dependency Saul Wold
  2011-04-10 20:13 ` [PATCH 6/6] README.hardware: automate boot process for router station pro Saul Wold
  5 siblings, 0 replies; 7+ messages in thread
From: Saul Wold @ 2011-04-10 20:13 UTC (permalink / raw)
  To: openembedded-core; +Cc: Darren Hart, Xiaofeng Yan

From: Saul Wold <sgw@linux.intel.com>

Signed-off-by: Saul Wold <sgw@linux.intel.com>
---
 meta/recipes-graphics/clutter/clutter-1.6_1.6.8.bb |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/meta/recipes-graphics/clutter/clutter-1.6_1.6.8.bb b/meta/recipes-graphics/clutter/clutter-1.6_1.6.8.bb
index 7ead5f9..04935e3 100644
--- a/meta/recipes-graphics/clutter/clutter-1.6_1.6.8.bb
+++ b/meta/recipes-graphics/clutter/clutter-1.6_1.6.8.bb
@@ -21,5 +21,5 @@ do_configure_prepend () {
 	sed -i -e 's/^DOLT//' ${S}/configure.ac
 }
 
-SRC_URI[md5sum] = "5a3c6d8414d4e286aba0a936f344c9b1""
+SRC_URI[md5sum] = "9eedac4216f709a9f144940d24bfbb3e"
 SRC_URI[sha256sum] = "cc147b8e7e62ed4b9b8a83df3db9788cf37db0c83970ba876228433f32bda442"
-- 
1.7.1.1




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

* [PATCH 5/6] qt4-x11-free: add virtual/libgl for opengl dependency
  2011-04-10 20:13 [PATCH 0/6] Cumulative patches from Mailing List Saul Wold
                   ` (3 preceding siblings ...)
  2011-04-10 20:13 ` [PATCH 4/6] clutter-1.6: fix SRC_URI[md5sum] Saul Wold
@ 2011-04-10 20:13 ` Saul Wold
  2011-04-10 20:13 ` [PATCH 6/6] README.hardware: automate boot process for router station pro Saul Wold
  5 siblings, 0 replies; 7+ messages in thread
From: Saul Wold @ 2011-04-10 20:13 UTC (permalink / raw)
  To: openembedded-core; +Cc: Darren Hart, Xiaofeng Yan

From: Saul Wold <sgw@linux.intel.com>

Signed-off-by: Saul Wold <sgw@linux.intel.com>
---
 meta/recipes-qt/qt4/qt4-x11-free.inc |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/meta/recipes-qt/qt4/qt4-x11-free.inc b/meta/recipes-qt/qt4/qt4-x11-free.inc
index 306adb9..ba08dc8 100644
--- a/meta/recipes-qt/qt4/qt4-x11-free.inc
+++ b/meta/recipes-qt/qt4/qt4-x11-free.inc
@@ -4,9 +4,9 @@ DESCRIPTION = "Qt is a versatile cross-platform application framework -- this is
 HOMEPAGE = "http://qt.nokia.com"
 SECTION = "x11/libs"
 PRIORITY = "optional"
-DEPENDS += "virtual/libx11 fontconfig libxft libxext libxrender libxrandr libxcursor"
+DEPENDS += "virtual/libgl virtual/libx11 fontconfig libxft libxext libxrender libxrandr libxcursor"
 
-INC_PR = "r21"
+INC_PR = "r22"
 
 QT_GLFLAGS ?= "-no-opengl"
 QT_GLFLAGS_qemux86 = "-opengl"
-- 
1.7.1.1




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

* [PATCH 6/6] README.hardware: automate boot process for router station pro
  2011-04-10 20:13 [PATCH 0/6] Cumulative patches from Mailing List Saul Wold
                   ` (4 preceding siblings ...)
  2011-04-10 20:13 ` [PATCH 5/6] qt4-x11-free: add virtual/libgl for opengl dependency Saul Wold
@ 2011-04-10 20:13 ` Saul Wold
  5 siblings, 0 replies; 7+ messages in thread
From: Saul Wold @ 2011-04-10 20:13 UTC (permalink / raw)
  To: openembedded-core; +Cc: Darren Hart, Xiaofeng Yan

From: Darren Hart <dvhart@linux.intel.com>

Signed-off-by: Darren Hart <dvhart@linux.intel.com>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
---
 README.hardware |   22 ++++++++++++++++++++++
 1 files changed, 22 insertions(+), 0 deletions(-)

diff --git a/README.hardware b/README.hardware
index 025c678..b2ce146 100644
--- a/README.hardware
+++ b/README.hardware
@@ -392,3 +392,25 @@ To boot the flashed kernel perform the following steps.
 (-e means 'elf', -d 'decompress')
 
 2) Execute the kernel using the exec command as above.
+
+--- Automating the boot process ---
+
+After writing the kernel to flash and testing the load and exec commands
+manually, you can automate the boot process with a boot script.
+
+1) RedBoot> fconfig
+   (Answer the questions not specified here as they pertain to your environment)
+2) Run script at boot: true
+  Boot script: 
+  .. fis load -d -e kernel
+  .. exec
+  Enter script, terminate with empty line
+  >> fis load -d -e kernel
+  >> exec -c "console=ttyS0,115200 root=/dev/sda1 rw rootdelay=2 board=UBNT-RSPRO"
+  >> 
+3) Answer the remaining questions and write the changes to flash:
+  Update RedBoot non-volatile configuration - continue (y/n)? y
+  ... Erase from 0xbfff0000-0xc0000000: .
+  ... Program from 0x87ff0000-0x88000000 at 0xbfff0000: .
+4) Power cycle the board.
+
-- 
1.7.1.1




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

end of thread, other threads:[~2011-04-10 20:15 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-04-10 20:13 [PATCH 0/6] Cumulative patches from Mailing List Saul Wold
2011-04-10 20:13 ` [PATCH 1/6] autotools: Pass --disable-silent-rules to configure Saul Wold
2011-04-10 20:13 ` [PATCH 2/6] Allow JFFS2 image options to be overridden Saul Wold
2011-04-10 20:13 ` [PATCH 3/6] eglibc-package.inc: Add eglibc-binaries, eglibc-localedatas, eglibc-gconvs and eglibc-charmps to variable PACKAGE Saul Wold
2011-04-10 20:13 ` [PATCH 4/6] clutter-1.6: fix SRC_URI[md5sum] Saul Wold
2011-04-10 20:13 ` [PATCH 5/6] qt4-x11-free: add virtual/libgl for opengl dependency Saul Wold
2011-04-10 20:13 ` [PATCH 6/6] README.hardware: automate boot process for router station pro Saul Wold

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