diff --git a/arch/arm/boards/chumby_falconwing/lowlevel.c b/arch/arm/boards/chumby_falconwing/lowlevel.c index ee287ec..0277b5d 100644 --- a/arch/arm/boards/chumby_falconwing/lowlevel.c +++ b/arch/arm/boards/chumby_falconwing/lowlevel.c @@ -5,7 +5,7 @@ #include #include -void __naked barebox_arm_reset_vector(uint32_t r0, uint32_t r1, uint32_t r2) +ENTRY_FUNCTION(start_chumby_falconwing, r0, r1, r2) { arm_cpu_lowlevel_init(); barebox_arm_entry(IMX_MEMORY_BASE, SZ_64M, (void *)MACH_TYPE_CHUMBY); diff --git a/arch/arm/mach-mxs/Kconfig b/arch/arm/mach-mxs/Kconfig index fd6b592..ffaf9a9 100644 --- a/arch/arm/mach-mxs/Kconfig +++ b/arch/arm/mach-mxs/Kconfig @@ -40,6 +40,7 @@ config MACH_CHUMBY bool "Chumby Falconwing" + select HAVE_PBL_MULTI_IMAGES help Say Y here if you are using the "chumby one" aka falconwing from Chumby Industries diff --git a/images/Makefile.mxs b/images/Makefile.mxs index 4c69c34..ceb7b37 100644 --- a/images/Makefile.mxs +++ b/images/Makefile.mxs @@ -72,3 +72,7 @@ pblb-$(CONFIG_MACH_MX23EVK) += start_imx23_evk FILE_barebox-freescale-mx23-evk-2nd.img = start_imx23_evk.pblb image-$(CONFIG_MACH_MX23EVK) += barebox-freescale-mx23-evk-2nd.img + +pblb-$(CONFIG_MACH_CHUMBY) += start_chumby_falconwing +FILE_barebox-chumby-falconwing-2nd.img = start_chumby_falconwing.pblb +image-$(CONFIG_MACH_CHUMBY) += barebox-chumby-falconwing-2nd.img