* [meta-fsl-ppc][PATCH 1/5] remove obsolete patches
@ 2014-07-22 10:32 ting.liu
2014-07-22 10:32 ` [meta-fsl-ppc][PATCH 2/5] luajit: add bbappend to hold ppc specific patch ting.liu
` (3 more replies)
0 siblings, 4 replies; 8+ messages in thread
From: ting.liu @ 2014-07-22 10:32 UTC (permalink / raw)
To: meta-freescale
From: Ting Liu <b28495@freescale.com>
Signed-off-by: Ting Liu <b28495@freescale.com>
---
...-include-to-usr-local-include-in-Makefile.patch | 36 ------------------
.../0001-fix-sizeof-pointer-memaccess-error.patch | 39 --------------------
2 files changed, 0 insertions(+), 75 deletions(-)
delete mode 100644 recipes-kernel/linux/files/libtraceevent-Remove-hard-coded-include-to-usr-local-include-in-Makefile.patch
delete mode 100644 recipes-virtualization/hypervisor/files/0001-fix-sizeof-pointer-memaccess-error.patch
diff --git a/recipes-kernel/linux/files/libtraceevent-Remove-hard-coded-include-to-usr-local-include-in-Makefile.patch b/recipes-kernel/linux/files/libtraceevent-Remove-hard-coded-include-to-usr-local-include-in-Makefile.patch
deleted file mode 100644
index 15c397d..0000000
--- a/recipes-kernel/linux/files/libtraceevent-Remove-hard-coded-include-to-usr-local-include-in-Makefile.patch
+++ /dev/null
@@ -1,36 +0,0 @@
-Upstream-Status: Backport
-
-From b9e8c37220c80e78289a1e87b50c09418eb59a7e Mon Sep 17 00:00:00 2001
-From: Jack Mitchell <jack.mitchell@dbbroadcast.co.uk>
-Date: Fri, 08 Mar 2013 11:21:52 +0000
-Subject: libtraceevent: Remove hard coded include to /usr/local/include in Makefile
-
-having /usr/local/include hardcoded into the makefile is not necessary
-as this is automatically included by GCC. It also infects cross-compile
-builds with the host systems includes.
-
-Signed-off-by: Jack Mitchell <jack.mitchell@dbbroadcast.co.uk>
-Acked-by: Namhyung Kim <namhyung@kernel.org>
-Cc: Ingo Molnar <mingo@redhat.com>
-Cc: Paul Mackerras <paulus@samba.org>
-Cc: Peter Zijlstra <a.p.zijlstra@chello.nl>
-Link: http://lkml.kernel.org/r/1362741712-21308-1-git-send-email-ml@communistcode.co.uk
-Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
----
-(limited to 'tools/lib/traceevent/Makefile')
-
-diff --git a/tools/lib/traceevent/Makefile b/tools/lib/traceevent/Makefile
-index a20e320..0b0a907 100644
---- a/tools/lib/traceevent/Makefile
-+++ b/tools/lib/traceevent/Makefile
-@@ -122,7 +122,7 @@ export Q VERBOSE
-
- EVENT_PARSE_VERSION = $(EP_VERSION).$(EP_PATCHLEVEL).$(EP_EXTRAVERSION)
-
--INCLUDES = -I. -I/usr/local/include $(CONFIG_INCLUDES)
-+INCLUDES = -I. $(CONFIG_INCLUDES)
-
- # Set compile option CFLAGS if not set elsewhere
- CFLAGS ?= -g -Wall
---
-cgit v0.9.2
diff --git a/recipes-virtualization/hypervisor/files/0001-fix-sizeof-pointer-memaccess-error.patch b/recipes-virtualization/hypervisor/files/0001-fix-sizeof-pointer-memaccess-error.patch
deleted file mode 100644
index a562273..0000000
--- a/recipes-virtualization/hypervisor/files/0001-fix-sizeof-pointer-memaccess-error.patch
+++ /dev/null
@@ -1,39 +0,0 @@
-From 59e68351114a65a1f315ded1ee92f4370b8547e2 Mon Sep 17 00:00:00 2001
-From: Ting Liu <b28495@freescale.com>
-Date: Mon, 8 Jul 2013 17:03:43 +0800
-Subject: [PATCH] fix sizeof-pointer-memaccess error
-
-build: src/livetree.c
-.../hypervisor/git-r3/git/src/devtree.c: In function 'read_intmap':
-.../hypervisor/git-r3/git/src/devtree.c:1513:25: error: argument to 'sizeof' in 'memset' call is the same expression as the destination; did you mean to dereference it? [-Werror=sizeof-pointer-memaccess]
- memset(ent, 0, sizeof(ent));
- ^
-cc1: all warnings being treated as errors
-build: src/ipi_doorbell.c
-make[1]: *** [bin/devtree.o] Error 1
-make[1]: *** Waiting for unfinished jobs....
-make[1]: Leaving directory `.../hypervisor/git-r3/git/output'
-make: *** [all] Error 2
-ERROR: oe_runmake failed
-
-Signed-off-by: Ting Liu <b28495@freescale.com>
----
- src/devtree.c | 2 +-
- 1 files changed, 1 insertions(+), 1 deletions(-)
-
-diff --git a/src/devtree.c b/src/devtree.c
-index f3710e4..3295e20 100644
---- a/src/devtree.c
-+++ b/src/devtree.c
-@@ -1510,7 +1510,7 @@ static void read_intmap(dt_node_t *node)
- }
-
- if (imap + ent->parent_naddr + ent->parent_nint > imap_end) {
-- memset(ent, 0, sizeof(ent));
-+ memset(ent, 0, sizeof(intmap_entry_t));
- break;
- }
-
---
-1.7.5.4
-
--
1.7.3.4
^ permalink raw reply related [flat|nested] 8+ messages in thread* [meta-fsl-ppc][PATCH 2/5] luajit: add bbappend to hold ppc specific patch 2014-07-22 10:32 [meta-fsl-ppc][PATCH 1/5] remove obsolete patches ting.liu @ 2014-07-22 10:32 ` ting.liu 2014-07-22 10:32 ` [meta-fsl-ppc][PATCH 3/5] init-ifupdown: use customized interfaces for qoriq-ppc ting.liu ` (2 subsequent siblings) 3 siblings, 0 replies; 8+ messages in thread From: ting.liu @ 2014-07-22 10:32 UTC (permalink / raw) To: meta-freescale From: Ting Liu <b28495@freescale.com> Signed-off-by: Ting Liu <b28495@freescale.com> --- recipes-devtools/luajit/luajit/ppc-fixplt.patch | 105 +++++++++++++++++++++++ recipes-devtools/luajit/luajit_%.bbappend | 4 + 2 files changed, 109 insertions(+), 0 deletions(-) create mode 100644 recipes-devtools/luajit/luajit/ppc-fixplt.patch create mode 100644 recipes-devtools/luajit/luajit_%.bbappend diff --git a/recipes-devtools/luajit/luajit/ppc-fixplt.patch b/recipes-devtools/luajit/luajit/ppc-fixplt.patch new file mode 100644 index 0000000..b9f17f4 --- /dev/null +++ b/recipes-devtools/luajit/luajit/ppc-fixplt.patch @@ -0,0 +1,105 @@ +Upstream-Status: Unknown + +Signed-off-by: Khem Raj <raj.khem@gmail.com> + +libluajit is having symbols that can't be +resolved the reloc cannot accommodate an offset greater than 24 bits. + +Looking at libluajit with readelf -r, you see a bunch of entries that look like: + 000082f0 00003c0a R_PPC_REL24 00000000 sqrt + 0 + +These should not occur when the code is compiled and linked with -fPIC. + +It turns out that libluajit *is* compiled and linked with -fPIC, however... +There is one assembler file called lj_vm.s which is generated during the build. +This file is missing the `@plt' qualifier from external references. + +This file is generated by a program called buildvm. This in turn uses tables +in a file called buildvm_arch.h which is generated by dynasm.lua. + +Index: LuaJIT-2.0.1/src/host/buildvm.c +=================================================================== +--- LuaJIT-2.0.1.orig/src/host/buildvm.c 2013-02-19 12:15:00.000000000 -0800 ++++ LuaJIT-2.0.1/src/host/buildvm.c 2013-05-14 20:26:05.933444512 -0700 +@@ -107,12 +107,14 @@ + #endif + sprintf(name, "%s%s%s", symprefix, prefix, suffix); + p = strchr(name, '@'); ++#if 0 + if (p) { + if (!LJ_64 && (ctx->mode == BUILD_coffasm || ctx->mode == BUILD_peobj)) + name[0] = '@'; + else + *p = '\0'; + } ++#endif + p = (char *)malloc(strlen(name)+1); /* MSVC doesn't like strdup. */ + strcpy(p, name); + return p; +Index: LuaJIT-2.0.1/src/vm_ppcspe.dasc +=================================================================== +--- LuaJIT-2.0.1.orig/src/vm_ppcspe.dasc 2013-02-19 12:15:00.000000000 -0800 ++++ LuaJIT-2.0.1/src/vm_ppcspe.dasc 2013-05-14 20:26:05.937444512 -0700 +@@ -1390,7 +1390,7 @@ + | checknum CARG2 + | evmergehi CARG1, CARG2, CARG2 + | checkfail ->fff_fallback +- | bl extern func ++ | bl extern func@plt + | evmergelo CRET1, CRET1, CRET2 + | b ->fff_restv + |.endmacro +@@ -1405,7 +1405,7 @@ + | checknum CARG1 + | evmergehi CARG3, CARG4, CARG4 + | checkanyfail ->fff_fallback +- | bl extern func ++ | bl extern func@plt + | evmergelo CRET1, CRET1, CRET2 + | b ->fff_restv + |.endmacro +@@ -1437,7 +1437,7 @@ + | checknum CARG2 + | evmergehi CARG1, CARG2, CARG2 + | checkfail ->fff_fallback +- | bl extern log ++ | bl extern log@plt + | evmergelo CRET1, CRET1, CRET2 + | b ->fff_restv + | +@@ -1471,7 +1471,7 @@ + | checknum CARG1 + | checkanyfail ->fff_fallback + | efdctsi CARG3, CARG4 +- | bl extern ldexp ++ | bl extern ldexp@plt + | evmergelo CRET1, CRET1, CRET2 + | b ->fff_restv + | +@@ -1484,7 +1484,7 @@ + | checkfail ->fff_fallback + | la CARG3, DISPATCH_GL(tmptv)(DISPATCH) + | lwz PC, FRAME_PC(BASE) +- | bl extern frexp ++ | bl extern frexp@plt + | lwz TMP1, DISPATCH_GL(tmptv)(DISPATCH) + | evmergelo CRET1, CRET1, CRET2 + | efdcfsi CRET2, TMP1 +@@ -1503,7 +1503,7 @@ + | checkfail ->fff_fallback + | la CARG3, -8(BASE) + | lwz PC, FRAME_PC(BASE) +- | bl extern modf ++ | bl extern modf@plt + | evmergelo CRET1, CRET1, CRET2 + | la RA, -8(BASE) + | evstdd CRET1, 0(BASE) +@@ -2399,7 +2399,7 @@ + | checknum CARG1 + | evmergehi CARG3, CARG4, CARG4 + | checkanyfail ->vmeta_arith_vv +- | bl extern pow ++ | bl extern pow@plt + | evmergelo CRET2, CRET1, CRET2 + | evstddx CRET2, BASE, RA + | ins_next diff --git a/recipes-devtools/luajit/luajit_%.bbappend b/recipes-devtools/luajit/luajit_%.bbappend new file mode 100644 index 0000000..8c6138c --- /dev/null +++ b/recipes-devtools/luajit/luajit_%.bbappend @@ -0,0 +1,4 @@ +FILESEXTRAPATHS_prepend := "${THISDIR}/${BPN}:" + +SRC_URI_append_qoriq-ppc = " file://ppc-fixplt.patch " + -- 1.7.3.4 ^ permalink raw reply related [flat|nested] 8+ messages in thread
* [meta-fsl-ppc][PATCH 3/5] init-ifupdown: use customized interfaces for qoriq-ppc 2014-07-22 10:32 [meta-fsl-ppc][PATCH 1/5] remove obsolete patches ting.liu 2014-07-22 10:32 ` [meta-fsl-ppc][PATCH 2/5] luajit: add bbappend to hold ppc specific patch ting.liu @ 2014-07-22 10:32 ` ting.liu 2014-07-22 10:32 ` [meta-fsl-ppc][PATCH 4/5] merge-files: add recipe ting.liu 2014-07-22 10:32 ` [meta-fsl-ppc][PATCH 5/5] procps: disabling reverse-path filtering ting.liu 3 siblings, 0 replies; 8+ messages in thread From: ting.liu @ 2014-07-22 10:32 UTC (permalink / raw) To: meta-freescale From: Ting Liu <b28495@freescale.com> the file is same with the one for qemuarm in poky/meta/, only define loopback interface. Signed-off-by: Ting Liu <b28495@freescale.com> --- .../init-ifupdown/qoriq-ppc/interfaces | 6 ++++++ .../init-ifupdown/init-ifupdown_%.bbappend | 2 ++ 2 files changed, 8 insertions(+), 0 deletions(-) create mode 100644 recipes-core/init-ifupdown/init-ifupdown/qoriq-ppc/interfaces create mode 100644 recipes-core/init-ifupdown/init-ifupdown_%.bbappend diff --git a/recipes-core/init-ifupdown/init-ifupdown/qoriq-ppc/interfaces b/recipes-core/init-ifupdown/init-ifupdown/qoriq-ppc/interfaces new file mode 100644 index 0000000..3737c8b --- /dev/null +++ b/recipes-core/init-ifupdown/init-ifupdown/qoriq-ppc/interfaces @@ -0,0 +1,6 @@ +# /etc/network/interfaces -- configuration file for ifup(8), ifdown(8) + +# The loopback interface +auto lo +iface lo inet loopback + diff --git a/recipes-core/init-ifupdown/init-ifupdown_%.bbappend b/recipes-core/init-ifupdown/init-ifupdown_%.bbappend new file mode 100644 index 0000000..0005787 --- /dev/null +++ b/recipes-core/init-ifupdown/init-ifupdown_%.bbappend @@ -0,0 +1,2 @@ +FILESEXTRAPATHS_prepend := "${THISDIR}/${BPN}:" + -- 1.7.3.4 ^ permalink raw reply related [flat|nested] 8+ messages in thread
* [meta-fsl-ppc][PATCH 4/5] merge-files: add recipe 2014-07-22 10:32 [meta-fsl-ppc][PATCH 1/5] remove obsolete patches ting.liu 2014-07-22 10:32 ` [meta-fsl-ppc][PATCH 2/5] luajit: add bbappend to hold ppc specific patch ting.liu 2014-07-22 10:32 ` [meta-fsl-ppc][PATCH 3/5] init-ifupdown: use customized interfaces for qoriq-ppc ting.liu @ 2014-07-22 10:32 ` ting.liu 2014-07-22 16:21 ` Bob Cochran 2014-07-22 10:32 ` [meta-fsl-ppc][PATCH 5/5] procps: disabling reverse-path filtering ting.liu 3 siblings, 1 reply; 8+ messages in thread From: ting.liu @ 2014-07-22 10:32 UTC (permalink / raw) To: meta-freescale From: Ting Liu <b28495@freescale.com> Signed-off-by: Ting Liu <b28495@freescale.com> --- .../merge-files/merge-files/merge/README | 7 +++++ recipes-extended/merge-files/merge-files_1.0.bb | 25 ++++++++++++++++++++ 2 files changed, 32 insertions(+), 0 deletions(-) create mode 100644 recipes-extended/merge-files/merge-files/merge/README create mode 100644 recipes-extended/merge-files/merge-files_1.0.bb diff --git a/recipes-extended/merge-files/merge-files/merge/README b/recipes-extended/merge-files/merge-files/merge/README new file mode 100644 index 0000000..cd907fe --- /dev/null +++ b/recipes-extended/merge-files/merge-files/merge/README @@ -0,0 +1,7 @@ +This package is used to merge specified files into rootfs. + +Steps: +1> copy files to recipes-*/merge-files/merge-files/merged/ +2> add 'IMAGE_INSTALL += "merge-files"' into rootfs recipe +3> bitbake <rootfs_image_type> + diff --git a/recipes-extended/merge-files/merge-files_1.0.bb b/recipes-extended/merge-files/merge-files_1.0.bb new file mode 100644 index 0000000..f64b909 --- /dev/null +++ b/recipes-extended/merge-files/merge-files_1.0.bb @@ -0,0 +1,25 @@ +DESCRIPTION = "Merge prebuilt/extra files into rootfs" +LICENSE = "MIT" +LIC_FILES_CHKSUM = "file://${COREBASE}/LICENSE;md5=4d92cd373abda3937c2bc47fbc49d690 \ + file://${COREBASE}/meta/COPYING.MIT;md5=3da9cfbcb788c80a0384361b4de20420" + +inherit allarch + +SRC_URI = "file://merge" + +MERGED_DST ?= "${ROOT_HOME}" +do_install () { + install -d ${D}/${MERGED_DST} + find ${WORKDIR}/merge/ -maxdepth 1 -mindepth 1 -not -name README \ + -exec cp -fr '{}' ${D}/${MERGED_DST}/ \; + find ${WORKDIR}/merge/ -maxdepth 1 -mindepth 1 -exec rm -fr '{}' \; +} +do_unpack[nostamp] = "1" +do_install[nostamp] = "1" +do_configure[noexec] = "1" +do_compile[noexec] = "1" + +FILES_${PN} = "/*" +ALLOW_EMPTY_${PN} = "1" +INSANE_SKIP_${PN} = "debug-files dev-so" + -- 1.7.3.4 ^ permalink raw reply related [flat|nested] 8+ messages in thread
* Re: [meta-fsl-ppc][PATCH 4/5] merge-files: add recipe 2014-07-22 10:32 ` [meta-fsl-ppc][PATCH 4/5] merge-files: add recipe ting.liu @ 2014-07-22 16:21 ` Bob Cochran 2014-07-22 16:35 ` SabreLite HDMI? Randy Krakora 0 siblings, 1 reply; 8+ messages in thread From: Bob Cochran @ 2014-07-22 16:21 UTC (permalink / raw) To: meta-freescale On 07/22/2014 06:32 AM, ting.liu@freescale.com wrote: > From: Ting Liu <b28495@freescale.com> > > Signed-off-by: Ting Liu <b28495@freescale.com> > --- > .../merge-files/merge-files/merge/README | 7 +++++ > recipes-extended/merge-files/merge-files_1.0.bb | 25 ++++++++++++++++++++ > 2 files changed, 32 insertions(+), 0 deletions(-) > create mode 100644 recipes-extended/merge-files/merge-files/merge/README > create mode 100644 recipes-extended/merge-files/merge-files_1.0.bb > > diff --git a/recipes-extended/merge-files/merge-files/merge/README b/recipes-extended/merge-files/merge-files/merge/README > new file mode 100644 > index 0000000..cd907fe > --- /dev/null > +++ b/recipes-extended/merge-files/merge-files/merge/README > @@ -0,0 +1,7 @@ > +This package is used to merge specified files into rootfs. > + > +Steps: > +1> copy files to recipes-*/merge-files/merge-files/merged/ minor comment: Should be /merge-files/merge-files/merge/ not .../merged/ > +2> add 'IMAGE_INSTALL += "merge-files"' into rootfs recipe > +3> bitbake <rootfs_image_type> > + > diff --git a/recipes-extended/merge-files/merge-files_1.0.bb b/recipes-extended/merge-files/merge-files_1.0.bb > new file mode 100644 > index 0000000..f64b909 > --- /dev/null > +++ b/recipes-extended/merge-files/merge-files_1.0.bb > @@ -0,0 +1,25 @@ > +DESCRIPTION = "Merge prebuilt/extra files into rootfs" > +LICENSE = "MIT" > +LIC_FILES_CHKSUM = "file://${COREBASE}/LICENSE;md5=4d92cd373abda3937c2bc47fbc49d690 \ > + file://${COREBASE}/meta/COPYING.MIT;md5=3da9cfbcb788c80a0384361b4de20420" > + > +inherit allarch > + > +SRC_URI = "file://merge" > + > +MERGED_DST ?= "${ROOT_HOME}" > +do_install () { > + install -d ${D}/${MERGED_DST} > + find ${WORKDIR}/merge/ -maxdepth 1 -mindepth 1 -not -name README \ > + -exec cp -fr '{}' ${D}/${MERGED_DST}/ \; > + find ${WORKDIR}/merge/ -maxdepth 1 -mindepth 1 -exec rm -fr '{}' \; > +} > +do_unpack[nostamp] = "1" > +do_install[nostamp] = "1" > +do_configure[noexec] = "1" > +do_compile[noexec] = "1" > + > +FILES_${PN} = "/*" > +ALLOW_EMPTY_${PN} = "1" > +INSANE_SKIP_${PN} = "debug-files dev-so" > + > ^ permalink raw reply [flat|nested] 8+ messages in thread
* SabreLite HDMI? 2014-07-22 16:21 ` Bob Cochran @ 2014-07-22 16:35 ` Randy Krakora 2014-07-22 16:55 ` Eric Nelson 0 siblings, 1 reply; 8+ messages in thread From: Randy Krakora @ 2014-07-22 16:35 UTC (permalink / raw) To: meta-freescale Using a sabre lite board with a v1.0 imx6q... I grabbed the 3.10.17 sdcard image from boundary's website: http://boundarydevices.com/yocto-kernel-3-10-17-beta/ Copied to a card, booted, updated uboot to: http://boundarydevices.com/u-boot-2014-04-release-mx6/ It seems uboot briefly displays to hdmi, but then the kernel doesn't and of course, gstreamer doesn't display anything to hdmi. I have fb0, 1 and 2. But I get some IPU errors periodically. Does anyone have hdmi working with this image? I'm sure it's something I've missed/forgotten. Regards, Randy Krakora ^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: SabreLite HDMI? 2014-07-22 16:35 ` SabreLite HDMI? Randy Krakora @ 2014-07-22 16:55 ` Eric Nelson 0 siblings, 0 replies; 8+ messages in thread From: Eric Nelson @ 2014-07-22 16:55 UTC (permalink / raw) To: Randy Krakora, meta-freescale Hi Randy, On 07/22/2014 09:35 AM, Randy Krakora wrote: > Using a sabre lite board with a v1.0 imx6q... > > I grabbed the 3.10.17 sdcard image from boundary's website: > > http://boundarydevices.com/yocto-kernel-3-10-17-beta/ > > Copied to a card, booted, updated uboot to: > > http://boundarydevices.com/u-boot-2014-04-release-mx6/ > > It seems uboot briefly displays to hdmi, but then the kernel doesn't and > of course, gstreamer doesn't display anything to hdmi. I have fb0, 1 and > 2. But I get some IPU errors periodically. > > Does anyone have hdmi working with this image? I'm sure it's something > I've missed/forgotten. > HDMI works with this image, but not well with Silicon Rev 1.0. I responded to your message on the blog post. Do you have a Rev 1.2 board to test against? If not, you should also have success with a Hannstar panel. Regards, Eric ^ permalink raw reply [flat|nested] 8+ messages in thread
* [meta-fsl-ppc][PATCH 5/5] procps: disabling reverse-path filtering 2014-07-22 10:32 [meta-fsl-ppc][PATCH 1/5] remove obsolete patches ting.liu ` (2 preceding siblings ...) 2014-07-22 10:32 ` [meta-fsl-ppc][PATCH 4/5] merge-files: add recipe ting.liu @ 2014-07-22 10:32 ` ting.liu 3 siblings, 0 replies; 8+ messages in thread From: ting.liu @ 2014-07-22 10:32 UTC (permalink / raw) To: meta-freescale From: Ting Liu <b28495@freescale.com> rp_filter causes issues with VLAN interfaces. Signed-off-by: Ting Liu <b28495@freescale.com> --- recipes-extended/procps/procps_%.bbappend | 9 +++++++++ recipes-extended/procps/procps_3.2.8.bbappend | 1 - 2 files changed, 9 insertions(+), 1 deletions(-) create mode 100644 recipes-extended/procps/procps_%.bbappend delete mode 100644 recipes-extended/procps/procps_3.2.8.bbappend diff --git a/recipes-extended/procps/procps_%.bbappend b/recipes-extended/procps/procps_%.bbappend new file mode 100644 index 0000000..face0cc --- /dev/null +++ b/recipes-extended/procps/procps_%.bbappend @@ -0,0 +1,9 @@ +do_install_append_qoriq-ppc() { + for keyword in \ + net.ipv4.conf.default.rp_filter \ + net.ipv4.conf.all.rp_filter \ + ; do + sed -i 's,'"$keyword"'=.*,'"$keyword"'=0,' ${D}${sysconfdir}/sysctl.conf + done +} + diff --git a/recipes-extended/procps/procps_3.2.8.bbappend b/recipes-extended/procps/procps_3.2.8.bbappend deleted file mode 100644 index 72d991c..0000000 --- a/recipes-extended/procps/procps_3.2.8.bbappend +++ /dev/null @@ -1 +0,0 @@ -FILESEXTRAPATHS_prepend := "${THISDIR}/${PN}:" -- 1.7.3.4 ^ permalink raw reply related [flat|nested] 8+ messages in thread
end of thread, other threads:[~2014-07-22 16:55 UTC | newest] Thread overview: 8+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2014-07-22 10:32 [meta-fsl-ppc][PATCH 1/5] remove obsolete patches ting.liu 2014-07-22 10:32 ` [meta-fsl-ppc][PATCH 2/5] luajit: add bbappend to hold ppc specific patch ting.liu 2014-07-22 10:32 ` [meta-fsl-ppc][PATCH 3/5] init-ifupdown: use customized interfaces for qoriq-ppc ting.liu 2014-07-22 10:32 ` [meta-fsl-ppc][PATCH 4/5] merge-files: add recipe ting.liu 2014-07-22 16:21 ` Bob Cochran 2014-07-22 16:35 ` SabreLite HDMI? Randy Krakora 2014-07-22 16:55 ` Eric Nelson 2014-07-22 10:32 ` [meta-fsl-ppc][PATCH 5/5] procps: disabling reverse-path filtering ting.liu
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.