* [Buildroot] [PATCH 1/2] configs/imx6slevk: Bump U-Boot version
@ 2018-12-20 16:54 Fabio Estevam
2018-12-20 16:54 ` [Buildroot] [PATCH 2/2] configs/freescale_imx7dsabresd: Apply upstream U-Boot fix Fabio Estevam
` (2 more replies)
0 siblings, 3 replies; 6+ messages in thread
From: Fabio Estevam @ 2018-12-20 16:54 UTC (permalink / raw)
To: buildroot
U-Boot 2017.11 has the following build issue:
MKIMAGE u-boot-dtb.imx
Error: No BOOT_FROM tag in board/freescale/mx6slevk/imximage.cfg.cfgtmp
arch/arm/mach-imx/Makefile:86: recipe for target 'u-boot-dtb.imx' failed
make[2]: *** [u-boot-dtb.imx] Error 1
Makefile:907: recipe for target 'u-boot-dtb.imx' failed
make[1]: *** [u-boot-dtb.imx] Error 2
make[1]: *** Waiting for unfinished jobs....
This issue has been fixed by commit f916757300c1 ("imx: Create
distinct pre-processed mkimage config files"), which landed in
U-Boot 2018.05.
Bump the U-Boot version to fix this build error.
Fixes:
https://gitlab.com/buildroot.org/buildroot/-/jobs/136980040
Reported-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
Signed-off-by: Fabio Estevam <festevam@gmail.com>
---
configs/imx6slevk_defconfig | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/configs/imx6slevk_defconfig b/configs/imx6slevk_defconfig
index be4b42e88e..90a02964e7 100644
--- a/configs/imx6slevk_defconfig
+++ b/configs/imx6slevk_defconfig
@@ -11,7 +11,7 @@ BR2_TARGET_ROOTFS_EXT2_4=y
BR2_TARGET_UBOOT=y
BR2_TARGET_UBOOT_BOARDNAME="mx6slevk"
BR2_TARGET_UBOOT_CUSTOM_VERSION=y
-BR2_TARGET_UBOOT_CUSTOM_VERSION_VALUE="2017.11"
+BR2_TARGET_UBOOT_CUSTOM_VERSION_VALUE="2018.11"
BR2_TARGET_UBOOT_FORMAT_IMX=y
BR2_LINUX_KERNEL=y
BR2_LINUX_KERNEL_CUSTOM_VERSION=y
--
2.17.1
^ permalink raw reply related [flat|nested] 6+ messages in thread* [Buildroot] [PATCH 2/2] configs/freescale_imx7dsabresd: Apply upstream U-Boot fix 2018-12-20 16:54 [Buildroot] [PATCH 1/2] configs/imx6slevk: Bump U-Boot version Fabio Estevam @ 2018-12-20 16:54 ` Fabio Estevam 2018-12-21 13:59 ` Peter Korsgaard 2019-01-01 15:29 ` Peter Korsgaard 2018-12-21 13:58 ` [Buildroot] [PATCH 1/2] configs/imx6slevk: Bump U-Boot version Peter Korsgaard 2019-01-01 15:28 ` Peter Korsgaard 2 siblings, 2 replies; 6+ messages in thread From: Fabio Estevam @ 2018-12-20 16:54 UTC (permalink / raw) To: buildroot NXP U-Boot tree has the following build issue: MKIMAGE u-boot-dtb.imx Error: No BOOT_FROM tag in board/freescale/mx7dsabresd/imximage.cfg.cfgtmp arch/arm/imx-common/Makefile:91: recipe for target 'u-boot-dtb.imx' failed make[2]: *** [u-boot-dtb.imx] Error 1 Makefile:877: recipe for target 'u-boot-dtb.imx' failed This issue has been fixed by commit f916757300c1 ("imx: Create distinct pre-processed mkimage config files"), so backport this commit to the NXP U-Boot tree in order to fix the build error. Fixes: https://gitlab.com/buildroot.org/buildroot/-/jobs/136980027 Reported-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com> Signed-off-by: Fabio Estevam <festevam@gmail.com> --- ...nct-pre-processed-mkimage-config-fil.patch | 89 +++++++++++++++++++ configs/freescale_imx7dsabresd_defconfig | 3 + 2 files changed, 92 insertions(+) create mode 100644 board/freescale/imx7dsdb/patches/uboot/0001-imx-Create-distinct-pre-processed-mkimage-config-fil.patch diff --git a/board/freescale/imx7dsdb/patches/uboot/0001-imx-Create-distinct-pre-processed-mkimage-config-fil.patch b/board/freescale/imx7dsdb/patches/uboot/0001-imx-Create-distinct-pre-processed-mkimage-config-fil.patch new file mode 100644 index 0000000000..b8989cb965 --- /dev/null +++ b/board/freescale/imx7dsdb/patches/uboot/0001-imx-Create-distinct-pre-processed-mkimage-config-fil.patch @@ -0,0 +1,89 @@ +From 27a2cd6a1980adf3002412678c8fdec6528dc47d Mon Sep 17 00:00:00 2001 +From: Trent Piepho <tpiepho@impinj.com> +Date: Fri, 6 Apr 2018 17:11:27 -0700 +Subject: [PATCH] imx: Create distinct pre-processed mkimage config files + +Each imx image is created by a separate sub-make and during this process +the mkimage config file is run though cpp. + +The cpp output is to the same file no matter what imx image is being +created. + +This means if two imx images are generated in parallel they will attempt +to independently produce the same pre-processed mkimage config file at +the same time. + +Avoid the problem by making the pre-processed config file name unique +based on the imx image it will be used in. This way each image will +create a unique config file and they won't clobber each other when run +in parallel. + +This should fixed the build bug referenced in b5b0e4e3 ("imximage: +Remove failure when no IVT offset is found"). + +Cc: Breno Lima <breno.lima@nxp.com> +Cc: Thomas Petazzoni <thomas.petazzoni@bootlin.com> +Cc: Fabio Estevam <fabio.estevam@nxp.com> +Signed-off-by: Trent Piepho <tpiepho@impinj.com> +Tested-by: Fabio Estevam <fabio.estevam@nxp.com> +[fabio: Adapted to imx_v2017.03_4.9.11_1.0.0_ga] +Signed-off-by: Fabio Estevam <festevam@gmail.com> +--- + arch/arm/imx-common/Makefile | 15 ++++++++------- + 1 file changed, 8 insertions(+), 7 deletions(-) + +diff --git a/arch/arm/imx-common/Makefile b/arch/arm/imx-common/Makefile +index d862258..f1bae8d 100644 +--- a/arch/arm/imx-common/Makefile ++++ b/arch/arm/imx-common/Makefile +@@ -69,9 +69,11 @@ endif + quiet_cmd_cpp_cfg = CFGS $@ + cmd_cpp_cfg = $(CPP) $(cpp_flags) -x c -o $@ $< + +-IMX_CONFIG = $(CONFIG_IMX_CONFIG:"%"=%).cfgtmp ++# mkimage source config file ++IMX_CONFIG = $(CONFIG_IMX_CONFIG:"%"=%) + +-$(IMX_CONFIG): %.cfgtmp: % FORCE ++# How to create a cpp processed config file, they all use the same source ++%.cfgout: $(IMX_CONFIG) FORCE + $(Q)mkdir -p $(dir $@) + $(call if_changed_dep,cpp_cfg) + +@@ -79,7 +81,7 @@ MKIMAGEFLAGS_u-boot.imx = -n $(filter-out $(PLUGIN).bin $< $(PHONY),$^) -T imxim + -e $(CONFIG_SYS_TEXT_BASE) + u-boot.imx: MKIMAGEOUTPUT = u-boot.imx.log + +-u-boot.imx: u-boot.bin $(IMX_CONFIG) $(PLUGIN).bin FORCE ++u-boot.imx: u-boot.bin u-boot.cfgout $(PLUGIN).bin FORCE + $(call if_changed,mkimage) + + ifeq ($(CONFIG_OF_SEPARATE),y) +@@ -87,16 +89,15 @@ MKIMAGEFLAGS_u-boot-dtb.imx = -n $(filter-out $(PLUGIN).bin $< $(PHONY),$^) -T i + -e $(CONFIG_SYS_TEXT_BASE) + u-boot-dtb.imx: MKIMAGEOUTPUT = u-boot-dtb.imx.log + +-u-boot-dtb.imx: u-boot-dtb.bin $(IMX_CONFIG) $(PLUGIN).bin FORCE ++u-boot-dtb.imx: u-boot-dtb.bin u-boot-dtb.cfgout $(PLUGIN).bin FORCE + $(call if_changed,mkimage) + endif + + MKIMAGEFLAGS_SPL = -n $(filter-out $(PLUGIN).bin $< $(PHONY),$^) -T imximage \ + -e $(CONFIG_SPL_TEXT_BASE) +- + SPL: MKIMAGEOUTPUT = SPL.log + +-SPL: spl/u-boot-spl.bin $(IMX_CONFIG) $(PLUGIN).bin FORCE ++SPL: spl/u-boot-spl.bin spl/u-boot-spl.cfgout $(PLUGIN).bin FORCE + $(call if_changed,mkimage) + + MKIMAGEFLAGS_u-boot.uim = -A arm -O U-Boot -a $(CONFIG_SYS_TEXT_BASE) \ +@@ -124,4 +125,4 @@ cmd_u-boot-nand-spl_imx = (printf '\000\000\000\000\106\103\102\040\001' && \ + spl/u-boot-nand-spl.imx: SPL FORCE + $(call if_changed,u-boot-nand-spl_imx) + +-targets += $(addprefix ../../../,$(IMX_CONFIG) SPL u-boot.uim spl/u-boot-nand-spl.imx) ++targets += $(addprefix ../../../,SPL spl/u-boot-spl.cfgout u-boot-dtb.cfgout u-boot.cfgout u-boot.uim spl/u-boot-nand-spl.imx) +-- +2.7.4 + diff --git a/configs/freescale_imx7dsabresd_defconfig b/configs/freescale_imx7dsabresd_defconfig index 3563d1e1b2..9d00a53eb8 100644 --- a/configs/freescale_imx7dsabresd_defconfig +++ b/configs/freescale_imx7dsabresd_defconfig @@ -2,6 +2,9 @@ BR2_arm=y BR2_cortex_a7=y +# patches +BR2_GLOBAL_PATCH_DIR="board/freescale/imx7dsdb/patches" + # Linux headers same as kernel, a 4.9 series BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_4_9=y -- 2.17.1 ^ permalink raw reply related [flat|nested] 6+ messages in thread
* [Buildroot] [PATCH 2/2] configs/freescale_imx7dsabresd: Apply upstream U-Boot fix 2018-12-20 16:54 ` [Buildroot] [PATCH 2/2] configs/freescale_imx7dsabresd: Apply upstream U-Boot fix Fabio Estevam @ 2018-12-21 13:59 ` Peter Korsgaard 2019-01-01 15:29 ` Peter Korsgaard 1 sibling, 0 replies; 6+ messages in thread From: Peter Korsgaard @ 2018-12-21 13:59 UTC (permalink / raw) To: buildroot >>>>> "Fabio" == Fabio Estevam <festevam@gmail.com> writes: > NXP U-Boot tree has the following build issue: > MKIMAGE u-boot-dtb.imx > Error: No BOOT_FROM tag in board/freescale/mx7dsabresd/imximage.cfg.cfgtmp > arch/arm/imx-common/Makefile:91: recipe for target 'u-boot-dtb.imx' failed > make[2]: *** [u-boot-dtb.imx] Error 1 > Makefile:877: recipe for target 'u-boot-dtb.imx' failed > This issue has been fixed by commit f916757300c1 ("imx: Create > distinct pre-processed mkimage config files"), so backport this > commit to the NXP U-Boot tree in order to fix the build error. > Fixes: > https://gitlab.com/buildroot.org/buildroot/-/jobs/136980027 > Reported-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com> > Signed-off-by: Fabio Estevam <festevam@gmail.com> Committed, thanks. -- Bye, Peter Korsgaard ^ permalink raw reply [flat|nested] 6+ messages in thread
* [Buildroot] [PATCH 2/2] configs/freescale_imx7dsabresd: Apply upstream U-Boot fix 2018-12-20 16:54 ` [Buildroot] [PATCH 2/2] configs/freescale_imx7dsabresd: Apply upstream U-Boot fix Fabio Estevam 2018-12-21 13:59 ` Peter Korsgaard @ 2019-01-01 15:29 ` Peter Korsgaard 1 sibling, 0 replies; 6+ messages in thread From: Peter Korsgaard @ 2019-01-01 15:29 UTC (permalink / raw) To: buildroot >>>>> "Fabio" == Fabio Estevam <festevam@gmail.com> writes: > NXP U-Boot tree has the following build issue: > MKIMAGE u-boot-dtb.imx > Error: No BOOT_FROM tag in board/freescale/mx7dsabresd/imximage.cfg.cfgtmp > arch/arm/imx-common/Makefile:91: recipe for target 'u-boot-dtb.imx' failed > make[2]: *** [u-boot-dtb.imx] Error 1 > Makefile:877: recipe for target 'u-boot-dtb.imx' failed > This issue has been fixed by commit f916757300c1 ("imx: Create > distinct pre-processed mkimage config files"), so backport this > commit to the NXP U-Boot tree in order to fix the build error. > Fixes: > https://gitlab.com/buildroot.org/buildroot/-/jobs/136980027 > Reported-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com> > Signed-off-by: Fabio Estevam <festevam@gmail.com> Committed to 2018.11.x, thanks. > --- > ...nct-pre-processed-mkimage-config-fil.patch | 89 +++++++++++++++++++ > configs/freescale_imx7dsabresd_defconfig | 3 + > 2 files changed, 92 insertions(+) > create mode 100644 board/freescale/imx7dsdb/patches/uboot/0001-imx-Create-distinct-pre-processed-mkimage-config-fil.patch > diff --git a/board/freescale/imx7dsdb/patches/uboot/0001-imx-Create-distinct-pre-processed-mkimage-config-fil.patch b/board/freescale/imx7dsdb/patches/uboot/0001-imx-Create-distinct-pre-processed-mkimage-config-fil.patch > new file mode 100644 > index 0000000000..b8989cb965 > --- /dev/null > +++ b/board/freescale/imx7dsdb/patches/uboot/0001-imx-Create-distinct-pre-processed-mkimage-config-fil.patch > @@ -0,0 +1,89 @@ > +From 27a2cd6a1980adf3002412678c8fdec6528dc47d Mon Sep 17 00:00:00 2001 > +From: Trent Piepho <tpiepho@impinj.com> > +Date: Fri, 6 Apr 2018 17:11:27 -0700 > +Subject: [PATCH] imx: Create distinct pre-processed mkimage config files > + > +Each imx image is created by a separate sub-make and during this process > +the mkimage config file is run though cpp. > + > +The cpp output is to the same file no matter what imx image is being > +created. > + > +This means if two imx images are generated in parallel they will attempt > +to independently produce the same pre-processed mkimage config file at > +the same time. > + > +Avoid the problem by making the pre-processed config file name unique > +based on the imx image it will be used in. This way each image will > +create a unique config file and they won't clobber each other when run > +in parallel. > + > +This should fixed the build bug referenced in b5b0e4e3 ("imximage: > +Remove failure when no IVT offset is found"). > + > +Cc: Breno Lima <breno.lima@nxp.com> > +Cc: Thomas Petazzoni <thomas.petazzoni@bootlin.com> > +Cc: Fabio Estevam <fabio.estevam@nxp.com> > +Signed-off-by: Trent Piepho <tpiepho@impinj.com> > +Tested-by: Fabio Estevam <fabio.estevam@nxp.com> > +[fabio: Adapted to imx_v2017.03_4.9.11_1.0.0_ga] > +Signed-off-by: Fabio Estevam <festevam@gmail.com> > +--- > + arch/arm/imx-common/Makefile | 15 ++++++++------- > + 1 file changed, 8 insertions(+), 7 deletions(-) > + > +diff --git a/arch/arm/imx-common/Makefile b/arch/arm/imx-common/Makefile > +index d862258..f1bae8d 100644 > +--- a/arch/arm/imx-common/Makefile > ++++ b/arch/arm/imx-common/Makefile > +@@ -69,9 +69,11 @@ endif > + quiet_cmd_cpp_cfg = CFGS $@ > + cmd_cpp_cfg = $(CPP) $(cpp_flags) -x c -o $@ $< > + > +-IMX_CONFIG = $(CONFIG_IMX_CONFIG:"%"=%).cfgtmp > ++# mkimage source config file > ++IMX_CONFIG = $(CONFIG_IMX_CONFIG:"%"=%) > + > +-$(IMX_CONFIG): %.cfgtmp: % FORCE > ++# How to create a cpp processed config file, they all use the same source > ++%.cfgout: $(IMX_CONFIG) FORCE > + $(Q)mkdir -p $(dir $@) > + $(call if_changed_dep,cpp_cfg) > + > +@@ -79,7 +81,7 @@ MKIMAGEFLAGS_u-boot.imx = -n $(filter-out $(PLUGIN).bin $< $(PHONY),$^) -T imxim > + -e $(CONFIG_SYS_TEXT_BASE) > + u-boot.imx: MKIMAGEOUTPUT = u-boot.imx.log > + > +-u-boot.imx: u-boot.bin $(IMX_CONFIG) $(PLUGIN).bin FORCE > ++u-boot.imx: u-boot.bin u-boot.cfgout $(PLUGIN).bin FORCE > + $(call if_changed,mkimage) > + > + ifeq ($(CONFIG_OF_SEPARATE),y) > +@@ -87,16 +89,15 @@ MKIMAGEFLAGS_u-boot-dtb.imx = -n $(filter-out $(PLUGIN).bin $< $(PHONY),$^) -T i > + -e $(CONFIG_SYS_TEXT_BASE) > + u-boot-dtb.imx: MKIMAGEOUTPUT = u-boot-dtb.imx.log > + > +-u-boot-dtb.imx: u-boot-dtb.bin $(IMX_CONFIG) $(PLUGIN).bin FORCE > ++u-boot-dtb.imx: u-boot-dtb.bin u-boot-dtb.cfgout $(PLUGIN).bin FORCE > + $(call if_changed,mkimage) > + endif > + > + MKIMAGEFLAGS_SPL = -n $(filter-out $(PLUGIN).bin $< $(PHONY),$^) -T imximage \ > + -e $(CONFIG_SPL_TEXT_BASE) > +- > + SPL: MKIMAGEOUTPUT = SPL.log > + > +-SPL: spl/u-boot-spl.bin $(IMX_CONFIG) $(PLUGIN).bin FORCE > ++SPL: spl/u-boot-spl.bin spl/u-boot-spl.cfgout $(PLUGIN).bin FORCE > + $(call if_changed,mkimage) > + > + MKIMAGEFLAGS_u-boot.uim = -A arm -O U-Boot -a $(CONFIG_SYS_TEXT_BASE) \ > +@@ -124,4 +125,4 @@ cmd_u-boot-nand-spl_imx = (printf '\000\000\000\000\106\103\102\040\001' && \ > + spl/u-boot-nand-spl.imx: SPL FORCE > + $(call if_changed,u-boot-nand-spl_imx) > + > +-targets += $(addprefix ../../../,$(IMX_CONFIG) SPL u-boot.uim spl/u-boot-nand-spl.imx) > ++targets += $(addprefix ../../../,SPL spl/u-boot-spl.cfgout u-boot-dtb.cfgout u-boot.cfgout u-boot.uim spl/u-boot-nand-spl.imx) > +-- > +2.7.4 > + > diff --git a/configs/freescale_imx7dsabresd_defconfig b/configs/freescale_imx7dsabresd_defconfig > index 3563d1e1b2..9d00a53eb8 100644 > --- a/configs/freescale_imx7dsabresd_defconfig > +++ b/configs/freescale_imx7dsabresd_defconfig > @@ -2,6 +2,9 @@ > BR2_arm=y > BR2_cortex_a7=y > +# patches > +BR2_GLOBAL_PATCH_DIR="board/freescale/imx7dsdb/patches" > + > # Linux headers same as kernel, a 4.9 series > BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_4_9=y > -- > 2.17.1 > _______________________________________________ > buildroot mailing list > buildroot at busybox.net > http://lists.busybox.net/mailman/listinfo/buildroot -- Bye, Peter Korsgaard ^ permalink raw reply [flat|nested] 6+ messages in thread
* [Buildroot] [PATCH 1/2] configs/imx6slevk: Bump U-Boot version 2018-12-20 16:54 [Buildroot] [PATCH 1/2] configs/imx6slevk: Bump U-Boot version Fabio Estevam 2018-12-20 16:54 ` [Buildroot] [PATCH 2/2] configs/freescale_imx7dsabresd: Apply upstream U-Boot fix Fabio Estevam @ 2018-12-21 13:58 ` Peter Korsgaard 2019-01-01 15:28 ` Peter Korsgaard 2 siblings, 0 replies; 6+ messages in thread From: Peter Korsgaard @ 2018-12-21 13:58 UTC (permalink / raw) To: buildroot >>>>> "Fabio" == Fabio Estevam <festevam@gmail.com> writes: > U-Boot 2017.11 has the following build issue: > MKIMAGE u-boot-dtb.imx > Error: No BOOT_FROM tag in board/freescale/mx6slevk/imximage.cfg.cfgtmp > arch/arm/mach-imx/Makefile:86: recipe for target 'u-boot-dtb.imx' failed > make[2]: *** [u-boot-dtb.imx] Error 1 > Makefile:907: recipe for target 'u-boot-dtb.imx' failed > make[1]: *** [u-boot-dtb.imx] Error 2 > make[1]: *** Waiting for unfinished jobs.... > This issue has been fixed by commit f916757300c1 ("imx: Create > distinct pre-processed mkimage config files"), which landed in > U-Boot 2018.05. > Bump the U-Boot version to fix this build error. > Fixes: > https://gitlab.com/buildroot.org/buildroot/-/jobs/136980040 > Reported-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com> > Signed-off-by: Fabio Estevam <festevam@gmail.com> Committed, thanks. -- Bye, Peter Korsgaard ^ permalink raw reply [flat|nested] 6+ messages in thread
* [Buildroot] [PATCH 1/2] configs/imx6slevk: Bump U-Boot version 2018-12-20 16:54 [Buildroot] [PATCH 1/2] configs/imx6slevk: Bump U-Boot version Fabio Estevam 2018-12-20 16:54 ` [Buildroot] [PATCH 2/2] configs/freescale_imx7dsabresd: Apply upstream U-Boot fix Fabio Estevam 2018-12-21 13:58 ` [Buildroot] [PATCH 1/2] configs/imx6slevk: Bump U-Boot version Peter Korsgaard @ 2019-01-01 15:28 ` Peter Korsgaard 2 siblings, 0 replies; 6+ messages in thread From: Peter Korsgaard @ 2019-01-01 15:28 UTC (permalink / raw) To: buildroot >>>>> "Fabio" == Fabio Estevam <festevam@gmail.com> writes: > U-Boot 2017.11 has the following build issue: > MKIMAGE u-boot-dtb.imx > Error: No BOOT_FROM tag in board/freescale/mx6slevk/imximage.cfg.cfgtmp > arch/arm/mach-imx/Makefile:86: recipe for target 'u-boot-dtb.imx' failed > make[2]: *** [u-boot-dtb.imx] Error 1 > Makefile:907: recipe for target 'u-boot-dtb.imx' failed > make[1]: *** [u-boot-dtb.imx] Error 2 > make[1]: *** Waiting for unfinished jobs.... > This issue has been fixed by commit f916757300c1 ("imx: Create > distinct pre-processed mkimage config files"), which landed in > U-Boot 2018.05. > Bump the U-Boot version to fix this build error. > Fixes: > https://gitlab.com/buildroot.org/buildroot/-/jobs/136980040 > Reported-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com> > Signed-off-by: Fabio Estevam <festevam@gmail.com> Committed to 2018.11.x, thanks. -- Bye, Peter Korsgaard ^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2019-01-01 15:29 UTC | newest] Thread overview: 6+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2018-12-20 16:54 [Buildroot] [PATCH 1/2] configs/imx6slevk: Bump U-Boot version Fabio Estevam 2018-12-20 16:54 ` [Buildroot] [PATCH 2/2] configs/freescale_imx7dsabresd: Apply upstream U-Boot fix Fabio Estevam 2018-12-21 13:59 ` Peter Korsgaard 2019-01-01 15:29 ` Peter Korsgaard 2018-12-21 13:58 ` [Buildroot] [PATCH 1/2] configs/imx6slevk: Bump U-Boot version Peter Korsgaard 2019-01-01 15:28 ` Peter Korsgaard
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox