* [PATCH 0/1] Re-add u-boot-fw-utils
@ 2013-09-13 19:21 Anders Darander
2013-09-13 19:21 ` [PATCH 1/1] u-boot-fw-utils: reinstate target recipe for fw_printenv Anders Darander
0 siblings, 1 reply; 7+ messages in thread
From: Anders Darander @ 2013-09-13 19:21 UTC (permalink / raw)
To: openembedded-core; +Cc: Anders Darander
The latest upgrade changed u-boot-fw-utils to u-boot-fw-utils-cross, which
removed the on-target fw_printenv (and fw_setenv).
The following changes since commit b26157a8b575aa7b5c96ffe782fc23ec0920311c:
libnewt-python: Don't write a whiptail package (2013-09-12 08:23:35 +0100)
are available in the git repository at:
git://github.com/darander/oe-core u-boot-fw-utils
https://github.com/darander/oe-core/tree/u-boot-fw-utils
Anders Darander (1):
u-boot-fw-utils: reinstate target recipe for fw_printenv
meta/recipes-bsp/u-boot/u-boot-fw-utils_2013.07.bb | 31 ++++++++++++++++++++++
1 file changed, 31 insertions(+)
create mode 100644 meta/recipes-bsp/u-boot/u-boot-fw-utils_2013.07.bb
--
1.8.4.rc3
^ permalink raw reply [flat|nested] 7+ messages in thread* [PATCH 1/1] u-boot-fw-utils: reinstate target recipe for fw_printenv 2013-09-13 19:21 [PATCH 0/1] Re-add u-boot-fw-utils Anders Darander @ 2013-09-13 19:21 ` Anders Darander 2013-09-13 20:46 ` Otavio Salvador 2013-09-17 23:47 ` Saul Wold 0 siblings, 2 replies; 7+ messages in thread From: Anders Darander @ 2013-09-13 19:21 UTC (permalink / raw) To: openembedded-core; +Cc: Anders Darander The latest upgrade changed u-boot-fw-utils to u-boot-fw-utils-cross, which removed the on-target fw_printenv (and fw_setenv). Re-create the updated version of the u-boot-fw-utils recipe. U-Boot does try to strip the fw_printenv binary by default now. To avoid this, without patching the Makefile, we add HOSTSTRIP=true to EXTRA_OEMAKE. The new U-Boot do also require us to configure the build for a specific machine, thus we change the package arch.§ Signed-off-by: Anders Darander <anders@chargestorm.se> --- meta/recipes-bsp/u-boot/u-boot-fw-utils_2013.07.bb | 31 ++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 meta/recipes-bsp/u-boot/u-boot-fw-utils_2013.07.bb diff --git a/meta/recipes-bsp/u-boot/u-boot-fw-utils_2013.07.bb b/meta/recipes-bsp/u-boot/u-boot-fw-utils_2013.07.bb new file mode 100644 index 0000000..f97df71 --- /dev/null +++ b/meta/recipes-bsp/u-boot/u-boot-fw-utils_2013.07.bb @@ -0,0 +1,31 @@ +DESCRIPTION = "U-boot bootloader fw_printenv/setenv utils" +LICENSE = "GPLv2+" +LIC_FILES_CHKSUM = "file://COPYING;md5=1707d6db1d42237583f50183a5651ecb" +SECTION = "bootloader" +DEPENDS = "mtd-utils" + +# This revision corresponds to the tag "v2013.07" +# We use the revision in order to avoid having to fetch it from the +# repo during parse +SRCREV = "62c175fbb8a0f9a926c88294ea9f7e88eb898f6c" + +PV = "v2013.07+git${SRCPV}" + +SRC_URI = "git://git.denx.de/u-boot.git;branch=master;protocol=git" + +S = "${WORKDIR}/git" + +EXTRA_OEMAKE = 'HOSTCC="${CC}" HOSTSTRIP="true"' + +do_compile () { + oe_runmake ${UBOOT_MACHINE} + oe_runmake env +} + +do_install () { + install -d ${D}${base_sbindir} + install -m 755 ${S}/tools/env/fw_printenv ${D}${base_sbindir}/fw_printenv + install -m 755 ${S}/tools/env/fw_printenv ${D}${base_sbindir}/fw_setenv +} + +PACKAGE_ARCH = "${MACHINE_ARCH}" -- 1.8.4.rc3 ^ permalink raw reply related [flat|nested] 7+ messages in thread
* Re: [PATCH 1/1] u-boot-fw-utils: reinstate target recipe for fw_printenv 2013-09-13 19:21 ` [PATCH 1/1] u-boot-fw-utils: reinstate target recipe for fw_printenv Anders Darander @ 2013-09-13 20:46 ` Otavio Salvador 2013-09-17 23:47 ` Saul Wold 1 sibling, 0 replies; 7+ messages in thread From: Otavio Salvador @ 2013-09-13 20:46 UTC (permalink / raw) To: Anders Darander; +Cc: Patches and discussions about the oe-core layer On Fri, Sep 13, 2013 at 4:21 PM, Anders Darander <anders@chargestorm.se> wrote: > The latest upgrade changed u-boot-fw-utils to u-boot-fw-utils-cross, which > removed the on-target fw_printenv (and fw_setenv). > > Re-create the updated version of the u-boot-fw-utils recipe. > > U-Boot does try to strip the fw_printenv binary by default now. To avoid > this, without patching the Makefile, we add HOSTSTRIP=true to EXTRA_OEMAKE. > > The new U-Boot do also require us to configure the build for a specific > machine, thus we change the package arch.§ > > Signed-off-by: Anders Darander <anders@chargestorm.se> I think this is the best way to handle this for Dora; for 1.6 (I will prepare the patches when updating to 2013.10) I think we ought to squash this into u-boot build so it is done all in same build process. Thanks for fixing a regression introduced by me. Acked-by: Otavio Salvador <otavio@ossystems.com.br> -- Otavio Salvador O.S. Systems http://www.ossystems.com.br http://code.ossystems.com.br Mobile: +55 (53) 9981-7854 Mobile: +1 (347) 903-9750 ^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH 1/1] u-boot-fw-utils: reinstate target recipe for fw_printenv 2013-09-13 19:21 ` [PATCH 1/1] u-boot-fw-utils: reinstate target recipe for fw_printenv Anders Darander 2013-09-13 20:46 ` Otavio Salvador @ 2013-09-17 23:47 ` Saul Wold 2013-09-18 3:36 ` Otavio Salvador 2013-09-18 4:51 ` Anders Darander 1 sibling, 2 replies; 7+ messages in thread From: Saul Wold @ 2013-09-17 23:47 UTC (permalink / raw) To: Anders Darander, Otavio Salvador; +Cc: openembedded-core On 09/13/2013 12:21 PM, Anders Darander wrote: > The latest upgrade changed u-boot-fw-utils to u-boot-fw-utils-cross, which > removed the on-target fw_printenv (and fw_setenv). > > Re-create the updated version of the u-boot-fw-utils recipe. > > U-Boot does try to strip the fw_printenv binary by default now. To avoid > this, without patching the Makefile, we add HOSTSTRIP=true to EXTRA_OEMAKE. > > The new U-Boot do also require us to configure the build for a specific > machine, thus we change the package arch.§ > > Signed-off-by: Anders Darander <anders@chargestorm.se> > --- > meta/recipes-bsp/u-boot/u-boot-fw-utils_2013.07.bb | 31 ++++++++++++++++++++++ > 1 file changed, 31 insertions(+) > create mode 100644 meta/recipes-bsp/u-boot/u-boot-fw-utils_2013.07.bb > > diff --git a/meta/recipes-bsp/u-boot/u-boot-fw-utils_2013.07.bb b/meta/recipes-bsp/u-boot/u-boot-fw-utils_2013.07.bb > new file mode 100644 > index 0000000..f97df71 > --- /dev/null > +++ b/meta/recipes-bsp/u-boot/u-boot-fw-utils_2013.07.bb > @@ -0,0 +1,31 @@ > +DESCRIPTION = "U-boot bootloader fw_printenv/setenv utils" > +LICENSE = "GPLv2+" > +LIC_FILES_CHKSUM = "file://COPYING;md5=1707d6db1d42237583f50183a5651ecb" > +SECTION = "bootloader" > +DEPENDS = "mtd-utils" > + > +# This revision corresponds to the tag "v2013.07" > +# We use the revision in order to avoid having to fetch it from the > +# repo during parse > +SRCREV = "62c175fbb8a0f9a926c88294ea9f7e88eb898f6c" > + > +PV = "v2013.07+git${SRCPV}" > + > +SRC_URI = "git://git.denx.de/u-boot.git;branch=master;protocol=git" > + > +S = "${WORKDIR}/git" > + > +EXTRA_OEMAKE = 'HOSTCC="${CC}" HOSTSTRIP="true"' > + > +do_compile () { > + oe_runmake ${UBOOT_MACHINE} > + oe_runmake env > +} > + > +do_install () { > + install -d ${D}${base_sbindir} > + install -m 755 ${S}/tools/env/fw_printenv ${D}${base_sbindir}/fw_printenv > + install -m 755 ${S}/tools/env/fw_printenv ${D}${base_sbindir}/fw_setenv > +} > + > +PACKAGE_ARCH = "${MACHINE_ARCH}" > I think this might need a COMPATIBLE_MACHINE or some check for correct systems > ERROR: Function failed: do_compile (log file is located at /srv/home/pokybuild/yocto-autobuilder-new/yocto-slave/nightly-world/build/build/tmp/work/qemux86-pokymllib32-linux/lib32-u-boot-fw-utils/v2013.07+gitAUTOINC+62c175fbb8-r0/temp/log.do_compile.4727) > ERROR: Logfile of failure stored in: /srv/home/pokybuild/yocto-autobuilder-new/yocto-slave/nightly-world/build/build/tmp/work/qemux86-pokymllib32-linux/lib32-u-boot-fw-utils/v2013.07+gitAUTOINC+62c175fbb8-r0/temp/log.do_compile.4727 > Log data follows: > | DEBUG: Executing shell function do_compile > | NOTE: make -j 16 HOSTCC=i586-pokymllib32-linux-gcc -m32 --sysroot=/srv/home/pokybuild/yocto-autobuilder-new/yocto-slave/nightly-world/build/build/tmp/sysroots/lib32-qemux86 HOSTSTRIP=true > | System not configured - see README > | make: *** [all] Error 1 > | ERROR: oe_runmake failed > | WARNING: /srv/home/pokybuild/yocto-autobuilder-new/yocto-slave/nightly-world/build/build/tmp/work/qemux86-pokymllib32-linux/lib32-u-boot-fw-utils/v2013.07+gitAUTOINC+62c175fbb8-r0/temp/run.do_compile.4727:1 exit 1 from > | exit 1 > | ERROR: Function failed: do_compile (log file is located at /srv/home/pokybuild/yocto-autobuilder-new/yocto-slave/nightly-world/build/build/tmp/work/qemux86-pokymllib32-linux/lib32-u-boot-fw-utils/v2013.07+gitAUTOINC+62c175fbb8-r0/temp/log.do_compile.4727) > NOTE: recipe lib32-u-boot-fw-utils-v2013.07+gitAUTOINC+62c175fbb8-r0: task do_compile: Failed Sau! ^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH 1/1] u-boot-fw-utils: reinstate target recipe for fw_printenv 2013-09-17 23:47 ` Saul Wold @ 2013-09-18 3:36 ` Otavio Salvador 2013-09-18 4:51 ` Anders Darander 1 sibling, 0 replies; 7+ messages in thread From: Otavio Salvador @ 2013-09-18 3:36 UTC (permalink / raw) To: Saul Wold Cc: Anders Darander, Patches and discussions about the oe-core layer On Tue, Sep 17, 2013 at 8:47 PM, Saul Wold <sgw@linux.intel.com> wrote: > On 09/13/2013 12:21 PM, Anders Darander wrote: >> >> The latest upgrade changed u-boot-fw-utils to u-boot-fw-utils-cross, which >> removed the on-target fw_printenv (and fw_setenv). >> >> Re-create the updated version of the u-boot-fw-utils recipe. >> >> U-Boot does try to strip the fw_printenv binary by default now. To avoid >> this, without patching the Makefile, we add HOSTSTRIP=true to >> EXTRA_OEMAKE. >> >> The new U-Boot do also require us to configure the build for a specific >> machine, thus we change the package arch.§ >> >> Signed-off-by: Anders Darander <anders@chargestorm.se> >> --- >> meta/recipes-bsp/u-boot/u-boot-fw-utils_2013.07.bb | 31 >> ++++++++++++++++++++++ >> 1 file changed, 31 insertions(+) >> create mode 100644 meta/recipes-bsp/u-boot/u-boot-fw-utils_2013.07.bb >> >> diff --git a/meta/recipes-bsp/u-boot/u-boot-fw-utils_2013.07.bb >> b/meta/recipes-bsp/u-boot/u-boot-fw-utils_2013.07.bb >> new file mode 100644 >> index 0000000..f97df71 >> --- /dev/null >> +++ b/meta/recipes-bsp/u-boot/u-boot-fw-utils_2013.07.bb >> @@ -0,0 +1,31 @@ >> +DESCRIPTION = "U-boot bootloader fw_printenv/setenv utils" >> +LICENSE = "GPLv2+" >> +LIC_FILES_CHKSUM = "file://COPYING;md5=1707d6db1d42237583f50183a5651ecb" >> +SECTION = "bootloader" >> +DEPENDS = "mtd-utils" >> + >> +# This revision corresponds to the tag "v2013.07" >> +# We use the revision in order to avoid having to fetch it from the >> +# repo during parse >> +SRCREV = "62c175fbb8a0f9a926c88294ea9f7e88eb898f6c" >> + >> +PV = "v2013.07+git${SRCPV}" >> + >> +SRC_URI = "git://git.denx.de/u-boot.git;branch=master;protocol=git" >> + >> +S = "${WORKDIR}/git" >> + >> +EXTRA_OEMAKE = 'HOSTCC="${CC}" HOSTSTRIP="true"' >> + >> +do_compile () { >> + oe_runmake ${UBOOT_MACHINE} >> + oe_runmake env >> +} >> + >> +do_install () { >> + install -d ${D}${base_sbindir} >> + install -m 755 ${S}/tools/env/fw_printenv >> ${D}${base_sbindir}/fw_printenv >> + install -m 755 ${S}/tools/env/fw_printenv ${D}${base_sbindir}/fw_setenv >> +} >> + >> +PACKAGE_ARCH = "${MACHINE_ARCH}" >> > > I think this might need a COMPATIBLE_MACHINE or some check for correct > systems >> >> ERROR: Function failed: do_compile (log file is located at >> /srv/home/pokybuild/yocto-autobuilder-new/yocto-slave/nightly-world/build/build/tmp/work/qemux86-pokymllib32-linux/lib32-u-boot-fw-utils/v2013.07+gitAUTOINC+62c175fbb8-r0/temp/log.do_compile.4727) >> ERROR: Logfile of failure stored in: >> /srv/home/pokybuild/yocto-autobuilder-new/yocto-slave/nightly-world/build/build/tmp/work/qemux86-pokymllib32-linux/lib32-u-boot-fw-utils/v2013.07+gitAUTOINC+62c175fbb8-r0/temp/log.do_compile.4727 >> Log data follows: >> | DEBUG: Executing shell function do_compile >> | NOTE: make -j 16 HOSTCC=i586-pokymllib32-linux-gcc -m32 >> --sysroot=/srv/home/pokybuild/yocto-autobuilder-new/yocto-slave/nightly-world/build/build/tmp/sysroots/lib32-qemux86 >> HOSTSTRIP=true >> | System not configured - see README >> | make: *** [all] Error 1 >> | ERROR: oe_runmake failed >> | WARNING: >> /srv/home/pokybuild/yocto-autobuilder-new/yocto-slave/nightly-world/build/build/tmp/work/qemux86-pokymllib32-linux/lib32-u-boot-fw-utils/v2013.07+gitAUTOINC+62c175fbb8-r0/temp/run.do_compile.4727:1 >> exit 1 from >> | exit 1 >> | ERROR: Function failed: do_compile (log file is located at >> /srv/home/pokybuild/yocto-autobuilder-new/yocto-slave/nightly-world/build/build/tmp/work/qemux86-pokymllib32-linux/lib32-u-boot-fw-utils/v2013.07+gitAUTOINC+62c175fbb8-r0/temp/log.do_compile.4727) >> NOTE: recipe lib32-u-boot-fw-utils-v2013.07+gitAUTOINC+62c175fbb8-r0: task >> do_compile: Failed I sent a fix for this. Please give it a try in autobuilder. -- Otavio Salvador O.S. Systems http://www.ossystems.com.br http://code.ossystems.com.br Mobile: +55 (53) 9981-7854 Mobile: +1 (347) 903-9750 ^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH 1/1] u-boot-fw-utils: reinstate target recipe for fw_printenv 2013-09-17 23:47 ` Saul Wold 2013-09-18 3:36 ` Otavio Salvador @ 2013-09-18 4:51 ` Anders Darander 2013-09-18 5:06 ` Anders Darander 1 sibling, 1 reply; 7+ messages in thread From: Anders Darander @ 2013-09-18 4:51 UTC (permalink / raw) To: Saul Wold Cc: Otavio Salvador, Patches and discussions about the oe-core layer [-- Attachment #1: Type: text/plain, Size: 2767 bytes --] On 18 September 2013 01:47, Saul Wold <sgw@linux.intel.com> wrote: > On 09/13/2013 12:21 PM, Anders Darander wrote: > >> The latest upgrade changed u-boot-fw-utils to u-boot-fw-utils-cross, which >> removed the on-target fw_printenv (and fw_setenv). >> >> Re-create the updated version of the u-boot-fw-utils recipe. >> >> U-Boot does try to strip the fw_printenv binary by default now. To avoid >> this, without patching the Makefile, we add HOSTSTRIP=true to >> EXTRA_OEMAKE. >> >> The new U-Boot do also require us to configure the build for a specific >> machine, thus we change the package arch.§ >> >> Signed-off-by: Anders Darander <anders@chargestorm.se> >> --- >> meta/recipes-bsp/u-boot/u-**boot-fw-utils_2013.07.bb<http://u-boot-fw-utils_2013.07.bb>| 31 ++++++++++++++++++++++ >> 1 file changed, 31 insertions(+) >> create mode 100644 meta/recipes-bsp/u-boot/u-**boot-fw-utils_2013.07.bb<http://u-boot-fw-utils_2013.07.bb> >> >> diff --git a/meta/recipes-bsp/u-boot/u-**boot-fw-utils_2013.07.bb<http://u-boot-fw-utils_2013.07.bb>b/meta/recipes-bsp/u-boot/ >> u-**boot-fw-utils_2013.07.bb <http://u-boot-fw-utils_2013.07.bb> >> new file mode 100644 >> index 0000000..f97df71 >> --- /dev/null >> +++ b/meta/recipes-bsp/u-boot/u-**boot-fw-utils_2013.07.bb<http://u-boot-fw-utils_2013.07.bb> >> @@ -0,0 +1,31 @@ >> +DESCRIPTION = "U-boot bootloader fw_printenv/setenv utils" >> +LICENSE = "GPLv2+" >> +LIC_FILES_CHKSUM = "file://COPYING;md5=**1707d6db1d42237583f50183a5651e* >> *cb" >> +SECTION = "bootloader" >> +DEPENDS = "mtd-utils" >> + >> +# This revision corresponds to the tag "v2013.07" >> +# We use the revision in order to avoid having to fetch it from the >> +# repo during parse >> +SRCREV = "**62c175fbb8a0f9a926c88294ea9f7e**88eb898f6c" >> + >> +PV = "v2013.07+git${SRCPV}" >> + >> +SRC_URI = "git://git.denx.de/u-boot.git;**branch=master;protocol=git<http://git.denx.de/u-boot.git;branch=master;protocol=git> >> " >> + >> +S = "${WORKDIR}/git" >> + >> +EXTRA_OEMAKE = 'HOSTCC="${CC}" HOSTSTRIP="true"' >> + >> +do_compile () { >> + oe_runmake ${UBOOT_MACHINE} >> + oe_runmake env >> +} >> + >> +do_install () { >> + install -d ${D}${base_sbindir} >> + install -m 755 ${S}/tools/env/fw_printenv ${D}${base_sbindir}/fw_** >> printenv >> + install -m 755 ${S}/tools/env/fw_printenv ${D}${base_sbindir}/fw_setenv >> +} >> + >> +PACKAGE_ARCH = "${MACHINE_ARCH}" >> >> > I think this might need a COMPATIBLE_MACHINE or some check for correct > systems > Ah, you're correct. I was looking too much on the old recipe and my working machine... As we're currently making the package machine specific, we definitely need this test. v2 on its way... Cheers, Anders [-- Attachment #2: Type: text/html, Size: 3797 bytes --] ^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH 1/1] u-boot-fw-utils: reinstate target recipe for fw_printenv 2013-09-18 4:51 ` Anders Darander @ 2013-09-18 5:06 ` Anders Darander 0 siblings, 0 replies; 7+ messages in thread From: Anders Darander @ 2013-09-18 5:06 UTC (permalink / raw) To: Saul Wold Cc: Otavio Salvador, Patches and discussions about the oe-core layer [-- Attachment #1: Type: text/plain, Size: 3303 bytes --] I just noted that Otavio already sent a fix for this. Please, review and apply his fix. Cheers, Anders On 18 September 2013 06:51, Anders Darander <anders.darander@gmail.com>wrote: > > > > On 18 September 2013 01:47, Saul Wold <sgw@linux.intel.com> wrote: > >> On 09/13/2013 12:21 PM, Anders Darander wrote: >> >>> The latest upgrade changed u-boot-fw-utils to u-boot-fw-utils-cross, >>> which >>> removed the on-target fw_printenv (and fw_setenv). >>> >>> Re-create the updated version of the u-boot-fw-utils recipe. >>> >>> U-Boot does try to strip the fw_printenv binary by default now. To avoid >>> this, without patching the Makefile, we add HOSTSTRIP=true to >>> EXTRA_OEMAKE. >>> >>> The new U-Boot do also require us to configure the build for a specific >>> machine, thus we change the package arch.§ >>> >>> Signed-off-by: Anders Darander <anders@chargestorm.se> >>> --- >>> meta/recipes-bsp/u-boot/u-**boot-fw-utils_2013.07.bb<http://u-boot-fw-utils_2013.07.bb>| 31 ++++++++++++++++++++++ >>> 1 file changed, 31 insertions(+) >>> create mode 100644 meta/recipes-bsp/u-boot/u-** >>> boot-fw-utils_2013.07.bb <http://u-boot-fw-utils_2013.07.bb> >>> >>> diff --git a/meta/recipes-bsp/u-boot/u-**boot-fw-utils_2013.07.bb<http://u-boot-fw-utils_2013.07.bb>b/meta/recipes-bsp/u-boot/ >>> u-**boot-fw-utils_2013.07.bb <http://u-boot-fw-utils_2013.07.bb> >>> new file mode 100644 >>> index 0000000..f97df71 >>> --- /dev/null >>> +++ b/meta/recipes-bsp/u-boot/u-**boot-fw-utils_2013.07.bb<http://u-boot-fw-utils_2013.07.bb> >>> @@ -0,0 +1,31 @@ >>> +DESCRIPTION = "U-boot bootloader fw_printenv/setenv utils" >>> +LICENSE = "GPLv2+" >>> +LIC_FILES_CHKSUM = "file://COPYING;md5=**1707d6db1d42237583f50183a5651e >>> **cb" >>> +SECTION = "bootloader" >>> +DEPENDS = "mtd-utils" >>> + >>> +# This revision corresponds to the tag "v2013.07" >>> +# We use the revision in order to avoid having to fetch it from the >>> +# repo during parse >>> +SRCREV = "**62c175fbb8a0f9a926c88294ea9f7e**88eb898f6c" >>> + >>> +PV = "v2013.07+git${SRCPV}" >>> + >>> +SRC_URI = "git://git.denx.de/u-boot.git;**branch=master;protocol=git<http://git.denx.de/u-boot.git;branch=master;protocol=git> >>> " >>> + >>> +S = "${WORKDIR}/git" >>> + >>> +EXTRA_OEMAKE = 'HOSTCC="${CC}" HOSTSTRIP="true"' >>> + >>> +do_compile () { >>> + oe_runmake ${UBOOT_MACHINE} >>> + oe_runmake env >>> +} >>> + >>> +do_install () { >>> + install -d ${D}${base_sbindir} >>> + install -m 755 ${S}/tools/env/fw_printenv ${D}${base_sbindir}/fw_** >>> printenv >>> + install -m 755 ${S}/tools/env/fw_printenv >>> ${D}${base_sbindir}/fw_setenv >>> +} >>> + >>> +PACKAGE_ARCH = "${MACHINE_ARCH}" >>> >>> >> I think this might need a COMPATIBLE_MACHINE or some check for correct >> systems >> > > Ah, you're correct. > > I was looking too much on the old recipe and my working machine... As > we're currently making the package machine specific, we definitely need > this test. v2 on its way... > > Cheers, > Anders > > -- Anders Darander EPO guidelines 1978: "If the contribution to the known art resides solely in a computer program then the subject matter is not patentable in whatever manner it may be presented in the claims." [-- Attachment #2: Type: text/html, Size: 4629 bytes --] ^ permalink raw reply [flat|nested] 7+ messages in thread
end of thread, other threads:[~2013-09-18 5:06 UTC | newest] Thread overview: 7+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2013-09-13 19:21 [PATCH 0/1] Re-add u-boot-fw-utils Anders Darander 2013-09-13 19:21 ` [PATCH 1/1] u-boot-fw-utils: reinstate target recipe for fw_printenv Anders Darander 2013-09-13 20:46 ` Otavio Salvador 2013-09-17 23:47 ` Saul Wold 2013-09-18 3:36 ` Otavio Salvador 2013-09-18 4:51 ` Anders Darander 2013-09-18 5:06 ` Anders Darander
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox