* [CONSOLIDATED PULL 0/5] Collection of patches
@ 2011-09-06 17:26 Saul Wold
2011-09-06 17:26 ` [CONSOLIDATED PULL 1/5] pango: use qemu to generate pango.modules during rootfs construction Saul Wold
` (5 more replies)
0 siblings, 6 replies; 7+ messages in thread
From: Saul Wold @ 2011-09-06 17:26 UTC (permalink / raw)
To: openembedded-core
Richard,
This is a collection of patches that have been sitting around,
and unless I missed some comments should be good to go.
I bumped gettext's PR in this request.
Sau!
The following changes since commit 41b7c955cfdc7b4d5c667c8a8742237d5edaca4f:
icu-3.6: fix building with big make -j (2011-09-05 20:38:50 +0100)
are available in the git repository at:
git://git.openembedded.org/openembedded-core-contrib sgw/stage
http://cgit.openembedded.org/cgit.cgi/openembedded-core-contrib/log/?h=sgw/stage
Denis Carikli (1):
mtd-utils: update to version to 1.4.6
Kumar Gala (1):
scripts/oe-buildenv-internal: Add SOCKS5_{USER, PASSWD} to
BB_ENV_EXTRAWHITE
Phil Blundell (1):
pango: use qemu to generate pango.modules during rootfs construction
Saul Wold (2):
gettext: use included libxml and libcroco
web: Update SRCREV to address ccs_parser_parse_stylesheet arg
mismatch
meta/recipes-core/gettext/gettext_0.18.1.1.bb | 4 +-
.../add-exclusion-to-mkfs-jffs2-git-2.patch | 0
.../add-exclusion-to-mkfs-jffs2-git-2.patch | 103 ++++++++++++++++++++
.../mtd/{mtd-utils_1.4.1.bb => mtd-utils_1.4.6.bb} | 7 +-
meta/recipes-graphics/pango/pango.inc | 11 ++-
meta/recipes-graphics/pango/pango_1.28.4.bb | 2 +-
meta/recipes-sato/web/web_git.bb | 4 +-
scripts/oe-buildenv-internal | 2 +-
8 files changed, 119 insertions(+), 14 deletions(-)
rename meta/recipes-devtools/mtd/{mtd-utils-1.4.1 => mtd-utils-1.4.6}/add-exclusion-to-mkfs-jffs2-git-2.patch (100%)
create mode 100644 meta/recipes-devtools/mtd/mtd-utils-1.4.6/mtd-utils-1.4.1/add-exclusion-to-mkfs-jffs2-git-2.patch
rename meta/recipes-devtools/mtd/{mtd-utils_1.4.1.bb => mtd-utils_1.4.6.bb} (81%)
--
1.7.6
^ permalink raw reply [flat|nested] 7+ messages in thread* [CONSOLIDATED PULL 1/5] pango: use qemu to generate pango.modules during rootfs construction 2011-09-06 17:26 [CONSOLIDATED PULL 0/5] Collection of patches Saul Wold @ 2011-09-06 17:26 ` Saul Wold 2011-09-06 17:26 ` [CONSOLIDATED PULL 2/5] mtd-utils: update to version to 1.4.6 Saul Wold ` (4 subsequent siblings) 5 siblings, 0 replies; 7+ messages in thread From: Saul Wold @ 2011-09-06 17:26 UTC (permalink / raw) To: openembedded-core From: Phil Blundell <philb@gnu.org> This allows pango to be installed in an image with read-only-rootfs. Signed-off-by: Phil Blundell <philb@gnu.org> --- meta/recipes-graphics/pango/pango.inc | 11 +++++++---- meta/recipes-graphics/pango/pango_1.28.4.bb | 2 +- 2 files changed, 8 insertions(+), 5 deletions(-) diff --git a/meta/recipes-graphics/pango/pango.inc b/meta/recipes-graphics/pango/pango.inc index a8e99e2..ff3f5dd 100644 --- a/meta/recipes-graphics/pango/pango.inc +++ b/meta/recipes-graphics/pango/pango.inc @@ -10,13 +10,13 @@ SECTION = "libs" LICENSE = "LGPL" X11DEPENDS = "virtual/libx11 libxft" -DEPENDS = "glib-2.0 fontconfig freetype zlib virtual/libiconv gtk-doc-native cairo ${@base_contains('DISTRO_FEATURES', 'x11', '${X11DEPENDS}', '', d)}" +DEPENDS = "glib-2.0 fontconfig freetype zlib virtual/libiconv gtk-doc-native cairo qemu-native ${@base_contains('DISTRO_FEATURES', 'x11', '${X11DEPENDS}', '', d)}" PACKAGES_DYNAMIC = "pango-module-*" RRECOMMENDS_${PN} = "${@base_contains('DISTRO_FEATURES', 'x11', 'pango-module-basic-x', '', d)} pango-module-basic-fc" -inherit gnome +inherit gnome qemu EXTRA_AUTORECONF = "" @@ -33,9 +33,12 @@ LIBV = "1.6.0" postinst_prologue() { if [ "x$D" != "x" ]; then - exit 1 + if [ ! -f "$D${sysconfdir}/pango/pango.modules" ]; then + mkdir -p $D${sysconfdir}/pango + PSEUDO_RELOADED=YES ${@qemu_target_binary(d)} -L $D $D${bindir}/pango-querymodules > "$D${sysconfdir}/pango/pango.modules" + fi + exit 0 fi - } python populate_packages_prepend () { diff --git a/meta/recipes-graphics/pango/pango_1.28.4.bb b/meta/recipes-graphics/pango/pango_1.28.4.bb index 68ab700..33eac21 100644 --- a/meta/recipes-graphics/pango/pango_1.28.4.bb +++ b/meta/recipes-graphics/pango/pango_1.28.4.bb @@ -2,7 +2,7 @@ require pango.inc LIC_FILES_CHKSUM = "file://COPYING;md5=3bf50002aefd002f49e7bb854063f7e7" -PR = "r1" +PR = "r4" SRC_URI += "file://no-tests.patch" -- 1.7.6 ^ permalink raw reply related [flat|nested] 7+ messages in thread
* [CONSOLIDATED PULL 2/5] mtd-utils: update to version to 1.4.6 2011-09-06 17:26 [CONSOLIDATED PULL 0/5] Collection of patches Saul Wold 2011-09-06 17:26 ` [CONSOLIDATED PULL 1/5] pango: use qemu to generate pango.modules during rootfs construction Saul Wold @ 2011-09-06 17:26 ` Saul Wold 2011-09-06 17:26 ` [CONSOLIDATED PULL 3/5] scripts/oe-buildenv-internal: Add SOCKS5_{USER, PASSWD} to BB_ENV_EXTRAWHITE Saul Wold ` (3 subsequent siblings) 5 siblings, 0 replies; 7+ messages in thread From: Saul Wold @ 2011-09-06 17:26 UTC (permalink / raw) To: openembedded-core From: Denis Carikli <denis@eukrea.com> mtd-utils 1.4.6 is the lastest release of mtd-utils at this time. Signed-off-by: Denis Carikli <denis@eukrea.com> --- .../add-exclusion-to-mkfs-jffs2-git-2.patch | 0 .../add-exclusion-to-mkfs-jffs2-git-2.patch | 103 ++++++++++++++++++++ .../mtd/{mtd-utils_1.4.1.bb => mtd-utils_1.4.6.bb} | 7 +- 3 files changed, 105 insertions(+), 5 deletions(-) rename meta/recipes-devtools/mtd/{mtd-utils-1.4.1 => mtd-utils-1.4.6}/add-exclusion-to-mkfs-jffs2-git-2.patch (100%) create mode 100644 meta/recipes-devtools/mtd/mtd-utils-1.4.6/mtd-utils-1.4.1/add-exclusion-to-mkfs-jffs2-git-2.patch rename meta/recipes-devtools/mtd/{mtd-utils_1.4.1.bb => mtd-utils_1.4.6.bb} (81%) diff --git a/meta/recipes-devtools/mtd/mtd-utils-1.4.1/add-exclusion-to-mkfs-jffs2-git-2.patch b/meta/recipes-devtools/mtd/mtd-utils-1.4.6/add-exclusion-to-mkfs-jffs2-git-2.patch similarity index 100% rename from meta/recipes-devtools/mtd/mtd-utils-1.4.1/add-exclusion-to-mkfs-jffs2-git-2.patch rename to meta/recipes-devtools/mtd/mtd-utils-1.4.6/add-exclusion-to-mkfs-jffs2-git-2.patch diff --git a/meta/recipes-devtools/mtd/mtd-utils-1.4.6/mtd-utils-1.4.1/add-exclusion-to-mkfs-jffs2-git-2.patch b/meta/recipes-devtools/mtd/mtd-utils-1.4.6/mtd-utils-1.4.1/add-exclusion-to-mkfs-jffs2-git-2.patch new file mode 100644 index 0000000..57d6a30 --- /dev/null +++ b/meta/recipes-devtools/mtd/mtd-utils-1.4.6/mtd-utils-1.4.1/add-exclusion-to-mkfs-jffs2-git-2.patch @@ -0,0 +1,103 @@ +Upstream-Status: Pending + +--- /tmp/mkfs.jffs2.c 2009-01-11 15:28:41.000000000 +0100 ++++ git/mkfs.jffs2.c 2009-01-11 15:59:29.000000000 +0100 +@@ -100,6 +100,11 @@ + struct rb_node hardlink_rb; + }; + ++struct ignorepath_entry { ++ struct ignorepath_entry* next; /* Points to the next ignorepath element */ ++ char name[PATH_MAX]; /* Name of the entry */ ++}; ++static struct ignorepath_entry* ignorepath = 0; + struct rb_root hardlinks; + static int out_fd = -1; + static int in_fd = -1; +@@ -408,7 +413,7 @@ + char *hpath, *tpath; + struct dirent *dp, **namelist; + struct filesystem_entry *entry; +- ++ struct ignorepath_entry* element = ignorepath; + + if (lstat(hostpath, &sb)) { + perror_msg_and_die("%s", hostpath); +@@ -417,6 +422,15 @@ + entry = add_host_filesystem_entry(targetpath, hostpath, + sb.st_uid, sb.st_gid, sb.st_mode, 0, parent); + ++ while ( element ) { ++ if ( strcmp( element->name, targetpath ) == 0 ) { ++ printf( "Note: ignoring directories below '%s'\n", targetpath ); ++ return entry; ++ break; ++ } ++ element = element->next; ++ } ++ + n = scandir(hostpath, &namelist, 0, alphasort); + if (n < 0) { + perror_msg_and_die("opening directory %s", hostpath); +@@ -1453,6 +1467,7 @@ + {"root", 1, NULL, 'r'}, + {"pagesize", 1, NULL, 's'}, + {"eraseblock", 1, NULL, 'e'}, ++ {"ignore", 1, NULL, 'I'}, + {"output", 1, NULL, 'o'}, + {"help", 0, NULL, 'h'}, + {"verbose", 0, NULL, 'v'}, +@@ -1500,6 +1515,7 @@ + " -L, --list-compressors Show the list of the avaiable compressors\n" + " -t, --test-compression Call decompress and compare with the original (for test)\n" + " -n, --no-cleanmarkers Don't add a cleanmarker to every eraseblock\n" ++" -I, --ignore=PATH Ignore sub directory and file tree below PATH when recursing over the file system\n" + " -o, --output=FILE Output to FILE (default: stdout)\n" + " -l, --little-endian Create a little-endian filesystem\n" + " -b, --big-endian Create a big-endian filesystem\n" +@@ -1666,6 +1682,7 @@ + char *compr_name = NULL; + int compr_prior = -1; + int warn_page_size = 0; ++ struct ignorepath_entry* element = ignorepath; + + page_size = sysconf(_SC_PAGESIZE); + if (page_size < 0) /* System doesn't know so ... */ +@@ -1676,7 +1693,7 @@ + jffs2_compressors_init(); + + while ((opt = getopt_long(argc, argv, +- "D:d:r:s:o:qUPfh?vVe:lbp::nc:m:x:X:Lty:i:", long_options, &c)) >= 0) ++ "D:d:r:s:I:o:qUPfh?vVe:lbp::nc:m:x:X:Lty:i:", long_options, &c)) >= 0) + { + switch (opt) { + case 'D': +@@ -1700,6 +1717,28 @@ + warn_page_size = 0; /* set by user, so don't need to warn */ + break; + ++ case 'I': ++ printf( "Note: Adding '%s' to ignore Path\n", optarg ); ++ element = ignorepath; ++ if ( !ignorepath ) { ++ ignorepath = xmalloc( sizeof( struct ignorepath_entry ) ); ++ ignorepath->next = 0; ++ strcpy( &ignorepath->name[0], optarg ); ++ } else { ++ while ( element->next ) element = element->next; ++ element->next = xmalloc( sizeof( struct ignorepath_entry ) ); ++ element->next->next = 0; ++ strcpy( &element->next->name[0], optarg ); ++ } ++ printf( "--------- Dumping ignore path list ----------------\n" ); ++ element = ignorepath; ++ while ( element ) { ++ printf( " * '%s'\n", &element->name[0] ); ++ element = element->next; ++ } ++ printf( "---------------------------------------------------\n" ); ++ break; ++ + case 'o': + if (out_fd != -1) { + error_msg_and_die("output filename specified more than once"); diff --git a/meta/recipes-devtools/mtd/mtd-utils_1.4.1.bb b/meta/recipes-devtools/mtd/mtd-utils_1.4.6.bb similarity index 81% rename from meta/recipes-devtools/mtd/mtd-utils_1.4.1.bb rename to meta/recipes-devtools/mtd/mtd-utils_1.4.6.bb index c05149d..79f4f15 100644 --- a/meta/recipes-devtools/mtd/mtd-utils_1.4.1.bb +++ b/meta/recipes-devtools/mtd/mtd-utils_1.4.6.bb @@ -6,12 +6,12 @@ LICENSE = "GPLv2+" LIC_FILES_CHKSUM = "file://COPYING;md5=0636e73ff0215e8d672dc4c32c317bb3 \ file://include/common.h;beginline=1;endline=17;md5=ba05b07912a44ea2bf81ce409380049c" -SRC_URI = "git://git.infradead.org/mtd-utils.git;protocol=git;tag=3c3674a6e1d3f59554b0ff68ca59be2fd4134e0c \ +SRC_URI = "git://git.infradead.org/mtd-utils.git;protocol=git;tag=baafd8ace3301e9d2ba314a376bad008314b34ff \ file://add-exclusion-to-mkfs-jffs2-git-2.patch" S = "${WORKDIR}/git/" -PR = "r1" +PR = "r0" EXTRA_OEMAKE = "'CC=${CC}' 'CFLAGS=${CFLAGS} -I${S}/include -DWITHOUT_XATTR' 'BUILDDIR=${S}'" @@ -26,6 +26,3 @@ do_install () { PARALLEL_MAKE = "" BBCLASSEXTEND = "native" - -SRC_URI[md5sum] = "645519b753b364d52c4b941dcee3dd7e" -SRC_URI[sha256sum] = "51d6a77c7e673219bb89c4b119f336d9f2f5a5e065a12ecf9636c5348d099a0e" -- 1.7.6 ^ permalink raw reply related [flat|nested] 7+ messages in thread
* [CONSOLIDATED PULL 3/5] scripts/oe-buildenv-internal: Add SOCKS5_{USER, PASSWD} to BB_ENV_EXTRAWHITE 2011-09-06 17:26 [CONSOLIDATED PULL 0/5] Collection of patches Saul Wold 2011-09-06 17:26 ` [CONSOLIDATED PULL 1/5] pango: use qemu to generate pango.modules during rootfs construction Saul Wold 2011-09-06 17:26 ` [CONSOLIDATED PULL 2/5] mtd-utils: update to version to 1.4.6 Saul Wold @ 2011-09-06 17:26 ` Saul Wold 2011-09-06 17:26 ` [CONSOLIDATED PULL 4/5] gettext: use included libxml and libcroco Saul Wold ` (2 subsequent siblings) 5 siblings, 0 replies; 7+ messages in thread From: Saul Wold @ 2011-09-06 17:26 UTC (permalink / raw) To: openembedded-core From: Kumar Gala <galak@kernel.crashing.org> If a SOCKS5 gateway is needed for a proxy access like git it might also require authentication to the proxy via a password and username. Adding SOCKS5_USER & SOCKS5_PASSWD to BB_ENV_EXTRAWHITE allow for automation of the authentication request to occur when something like a git fetch is going through the proxy. Signed-off-by: Kumar Gala <galak@kernel.crashing.org> --- scripts/oe-buildenv-internal | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/scripts/oe-buildenv-internal b/scripts/oe-buildenv-internal index 61ac18c..5e0eb6e 100755 --- a/scripts/oe-buildenv-internal +++ b/scripts/oe-buildenv-internal @@ -71,4 +71,4 @@ unset BITBAKEDIR export BUILDDIR export PATH -export BB_ENV_EXTRAWHITE="MACHINE DISTRO TCMODE TCLIBC http_proxy ftp_proxy https_proxy all_proxy ALL_PROXY no_proxy SSH_AGENT_PID SSH_AUTH_SOCK BB_SRCREV_POLICY SDKMACHINE BB_NUMBER_THREADS PARALLEL_MAKE GIT_PROXY_COMMAND" +export BB_ENV_EXTRAWHITE="MACHINE DISTRO TCMODE TCLIBC http_proxy ftp_proxy https_proxy all_proxy ALL_PROXY no_proxy SSH_AGENT_PID SSH_AUTH_SOCK BB_SRCREV_POLICY SDKMACHINE BB_NUMBER_THREADS PARALLEL_MAKE GIT_PROXY_COMMAND SOCKS5_PASSWD SOCSK5_USER" -- 1.7.6 ^ permalink raw reply related [flat|nested] 7+ messages in thread
* [CONSOLIDATED PULL 4/5] gettext: use included libxml and libcroco 2011-09-06 17:26 [CONSOLIDATED PULL 0/5] Collection of patches Saul Wold ` (2 preceding siblings ...) 2011-09-06 17:26 ` [CONSOLIDATED PULL 3/5] scripts/oe-buildenv-internal: Add SOCKS5_{USER, PASSWD} to BB_ENV_EXTRAWHITE Saul Wold @ 2011-09-06 17:26 ` Saul Wold 2011-09-06 17:26 ` [CONSOLIDATED PULL 5/5] web: Update SRCREV to address ccs_parser_parse_stylesheet arg mismatch Saul Wold 2011-09-07 22:36 ` [CONSOLIDATED PULL 0/5] Collection of patches Richard Purdie 5 siblings, 0 replies; 7+ messages in thread From: Saul Wold @ 2011-09-06 17:26 UTC (permalink / raw) To: openembedded-core [YOCTO #1400] By using the included libxml and libcroco, we do not create additional on this core library. There was an ordering issue that when one library was not built, but gettext detected the other library a compliation would fail, this will force it to always use the included libraries. Signed-off-by: Saul Wold <sgw@linux.intel.com> --- meta/recipes-core/gettext/gettext_0.18.1.1.bb | 4 +++- 1 files changed, 3 insertions(+), 1 deletions(-) diff --git a/meta/recipes-core/gettext/gettext_0.18.1.1.bb b/meta/recipes-core/gettext/gettext_0.18.1.1.bb index 9ec851e..2c0b2f8 100644 --- a/meta/recipes-core/gettext/gettext_0.18.1.1.bb +++ b/meta/recipes-core/gettext/gettext_0.18.1.1.bb @@ -5,7 +5,7 @@ SECTION = "libs" LICENSE = "GPLv3" LIC_FILES_CHKSUM = "file://COPYING;md5=d32239bcb673463ab874e80d47fae504" -PR = "r2" +PR = "r3" DEPENDS = "libxml2-native gettext-native virtual/libiconv ncurses expat" DEPENDS_virtclass-native = "libxml2-native" PROVIDES = "virtual/libintl virtual/gettext" @@ -36,6 +36,8 @@ EXTRA_OECONF += "--without-lispdir \ --without-emacs \ --without-cvs \ --without-git \ + --with-included-libxml \ + --with-included-libcroco \ " acpaths = '-I ${S}/gettext-runtime/m4 \ -- 1.7.6 ^ permalink raw reply related [flat|nested] 7+ messages in thread
* [CONSOLIDATED PULL 5/5] web: Update SRCREV to address ccs_parser_parse_stylesheet arg mismatch 2011-09-06 17:26 [CONSOLIDATED PULL 0/5] Collection of patches Saul Wold ` (3 preceding siblings ...) 2011-09-06 17:26 ` [CONSOLIDATED PULL 4/5] gettext: use included libxml and libcroco Saul Wold @ 2011-09-06 17:26 ` Saul Wold 2011-09-07 22:36 ` [CONSOLIDATED PULL 0/5] Collection of patches Richard Purdie 5 siblings, 0 replies; 7+ messages in thread From: Saul Wold @ 2011-09-06 17:26 UTC (permalink / raw) To: openembedded-core [YOCTO #1454] Signed-off-by: Saul Wold <sgw@linux.intel.com> --- meta/recipes-sato/web/web_git.bb | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/meta/recipes-sato/web/web_git.bb b/meta/recipes-sato/web/web_git.bb index c1a1334..b606e64 100644 --- a/meta/recipes-sato/web/web_git.bb +++ b/meta/recipes-sato/web/web_git.bb @@ -2,9 +2,9 @@ LICENSE = "GPLv2" SECTION = "x11" DEPENDS = "libxml2 glib-2.0 gtk+ libglade gtkhtml2 curl gconf js libowl" DESCRIPTION = "Web is a multi-platform web browsing application." -PR = "r2" +PR = "r0" -SRCREV = "96da839f65e17ecc6d5261c1d74accd88423dd7a" +SRCREV = "3fad2eb32b2312093dcd750612bafeff84e32bc9" PV = "0.0+git${SRCPV}" SRC_URI = "git://git.yoctoproject.org/web-sato;protocol=git \ -- 1.7.6 ^ permalink raw reply related [flat|nested] 7+ messages in thread
* Re: [CONSOLIDATED PULL 0/5] Collection of patches 2011-09-06 17:26 [CONSOLIDATED PULL 0/5] Collection of patches Saul Wold ` (4 preceding siblings ...) 2011-09-06 17:26 ` [CONSOLIDATED PULL 5/5] web: Update SRCREV to address ccs_parser_parse_stylesheet arg mismatch Saul Wold @ 2011-09-07 22:36 ` Richard Purdie 5 siblings, 0 replies; 7+ messages in thread From: Richard Purdie @ 2011-09-07 22:36 UTC (permalink / raw) To: Patches and discussions about the oe-core layer On Tue, 2011-09-06 at 10:26 -0700, Saul Wold wrote: > Richard, > > This is a collection of patches that have been sitting around, > and unless I missed some comments should be good to go. > > I bumped gettext's PR in this request. > > Sau! > > > The following changes since commit 41b7c955cfdc7b4d5c667c8a8742237d5edaca4f: > > icu-3.6: fix building with big make -j (2011-09-05 20:38:50 +0100) > > are available in the git repository at: > git://git.openembedded.org/openembedded-core-contrib sgw/stage > http://cgit.openembedded.org/cgit.cgi/openembedded-core-contrib/log/?h=sgw/stage > > Denis Carikli (1): > mtd-utils: update to version to 1.4.6 > > Kumar Gala (1): > scripts/oe-buildenv-internal: Add SOCKS5_{USER, PASSWD} to > BB_ENV_EXTRAWHITE > > Phil Blundell (1): > pango: use qemu to generate pango.modules during rootfs construction > > Saul Wold (2): > gettext: use included libxml and libcroco > web: Update SRCREV to address ccs_parser_parse_stylesheet arg > mismatch Merged to master with the exception of Kumar's change which I've followed up with in the original thread. Cheers, Richard ^ permalink raw reply [flat|nested] 7+ messages in thread
end of thread, other threads:[~2011-09-07 22:41 UTC | newest]
Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-09-06 17:26 [CONSOLIDATED PULL 0/5] Collection of patches Saul Wold
2011-09-06 17:26 ` [CONSOLIDATED PULL 1/5] pango: use qemu to generate pango.modules during rootfs construction Saul Wold
2011-09-06 17:26 ` [CONSOLIDATED PULL 2/5] mtd-utils: update to version to 1.4.6 Saul Wold
2011-09-06 17:26 ` [CONSOLIDATED PULL 3/5] scripts/oe-buildenv-internal: Add SOCKS5_{USER, PASSWD} to BB_ENV_EXTRAWHITE Saul Wold
2011-09-06 17:26 ` [CONSOLIDATED PULL 4/5] gettext: use included libxml and libcroco Saul Wold
2011-09-06 17:26 ` [CONSOLIDATED PULL 5/5] web: Update SRCREV to address ccs_parser_parse_stylesheet arg mismatch Saul Wold
2011-09-07 22:36 ` [CONSOLIDATED PULL 0/5] Collection of patches Richard Purdie
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox