[U-Boot] [PATCH 1/5] mx53loco: Allow booting a zImage kernel

From: Fabio Estevam fabio.estevam@freescale.com
Allow booting a zImage kernel.
Signed-off-by: Fabio Estevam fabio.estevam@freescale.com --- include/configs/mx53loco.h | 1 + 1 file changed, 1 insertion(+)
diff --git a/include/configs/mx53loco.h b/include/configs/mx53loco.h index 0658dd3..25672c0 100644 --- a/include/configs/mx53loco.h +++ b/include/configs/mx53loco.h @@ -103,6 +103,7 @@
/* Command definition */ #include <config_cmd_default.h> +#define CONFIG_CMD_BOOTZ
#undef CONFIG_CMD_IMLS

From: Fabio Estevam fabio.estevam@freescale.com
Allow booting a zImage kernel.
Signed-off-by: Fabio Estevam fabio.estevam@freescale.com --- include/configs/mx25pdk.h | 1 + 1 file changed, 1 insertion(+)
diff --git a/include/configs/mx25pdk.h b/include/configs/mx25pdk.h index bd000a7..1dddf50 100644 --- a/include/configs/mx25pdk.h +++ b/include/configs/mx25pdk.h @@ -83,6 +83,7 @@
/* U-Boot commands */ #include <config_cmd_default.h> +#define CONFIG_CMD_BOOTZ #define CONFIG_CMD_CACHE
/* Ethernet */

On 24/10/2012 21:44, Fabio Estevam wrote:
From: Fabio Estevam fabio.estevam@freescale.com
Allow booting a zImage kernel.
Signed-off-by: Fabio Estevam fabio.estevam@freescale.com
include/configs/mx25pdk.h | 1 + 1 file changed, 1 insertion(+)
diff --git a/include/configs/mx25pdk.h b/include/configs/mx25pdk.h index bd000a7..1dddf50 100644 --- a/include/configs/mx25pdk.h +++ b/include/configs/mx25pdk.h @@ -83,6 +83,7 @@
/* U-Boot commands */ #include <config_cmd_default.h> +#define CONFIG_CMD_BOOTZ #define CONFIG_CMD_CACHE
/* Ethernet */
Applied to u-boot-imx, thanks.
Best regards, Stefano Babic

From: Fabio Estevam fabio.estevam@freescale.com
Allow booting a zImage kernel.
Signed-off-by: Fabio Estevam fabio.estevam@freescale.com --- include/configs/mx51evk.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/include/configs/mx51evk.h b/include/configs/mx51evk.h index d3edcba..8cf59fe 100644 --- a/include/configs/mx51evk.h +++ b/include/configs/mx51evk.h @@ -144,7 +144,7 @@ ***********************************************************/
#include <config_cmd_default.h> - +#define CONFIG_CMD_BOOTZ #undef CONFIG_CMD_IMLS
#define CONFIG_CMD_DATE

On 24/10/2012 21:44, Fabio Estevam wrote:
From: Fabio Estevam fabio.estevam@freescale.com
Allow booting a zImage kernel.
Signed-off-by: Fabio Estevam fabio.estevam@freescale.com
Applied to u-boot-imx, thanks.
Best regards, Stefano Babic

From: Fabio Estevam fabio.estevam@freescale.com
Allow booting a zImage kernel.
Signed-off-by: Fabio Estevam fabio.estevam@freescale.com --- include/configs/mx35pdk.h | 1 + 1 file changed, 1 insertion(+)
diff --git a/include/configs/mx35pdk.h b/include/configs/mx35pdk.h index 826c912..d8f28f3 100644 --- a/include/configs/mx35pdk.h +++ b/include/configs/mx35pdk.h @@ -94,6 +94,7 @@
#include <config_cmd_default.h>
+#define CONFIG_CMD_BOOTZ #define CONFIG_CMD_PING #define CONFIG_CMD_DHCP #define CONFIG_BOOTP_SUBNETMASK

On 24/10/2012 21:44, Fabio Estevam wrote:
From: Fabio Estevam fabio.estevam@freescale.com
Allow booting a zImage kernel.
Signed-off-by: Fabio Estevam fabio.estevam@freescale.com
Applied to u-boot-imx, thanks.
Best regards, Stefano Babic

From: Fabio Estevam fabio.estevam@freescale.com
Allow booting a zImage kernel.
Signed-off-by: Fabio Estevam fabio.estevam@freescale.com --- include/configs/mx6qsabre_common.h | 1 + 1 file changed, 1 insertion(+)
diff --git a/include/configs/mx6qsabre_common.h b/include/configs/mx6qsabre_common.h index bfb9cd4..fa38d79 100644 --- a/include/configs/mx6qsabre_common.h +++ b/include/configs/mx6qsabre_common.h @@ -72,6 +72,7 @@ /* Command definition */ #include <config_cmd_default.h>
+#define CONFIG_CMD_BOOTZ #undef CONFIG_CMD_IMLS
#define CONFIG_BOOTDELAY 3

On 24/10/2012 21:44, Fabio Estevam wrote:
From: Fabio Estevam fabio.estevam@freescale.com
Allow booting a zImage kernel.
Signed-off-by: Fabio Estevam fabio.estevam@freescale.com
Applied to u-boot-imx, thanks.
Best regards, Stefano Babic

On Wed, Oct 24, 2012 at 2:44 PM, Fabio Estevam festevam@gmail.com wrote:
From: Fabio Estevam fabio.estevam@freescale.com
Allow booting a zImage kernel.
Signed-off-by: Fabio Estevam fabio.estevam@freescale.com
include/configs/mx53loco.h | 1 + 1 file changed, 1 insertion(+)
diff --git a/include/configs/mx53loco.h b/include/configs/mx53loco.h index 0658dd3..25672c0 100644 --- a/include/configs/mx53loco.h +++ b/include/configs/mx53loco.h @@ -103,6 +103,7 @@
/* Command definition */ #include <config_cmd_default.h> +#define CONFIG_CMD_BOOTZ
Fabio,
Any thoughts on also enabling "define CONFIG_SUPPORT_RAW_INITRD" at the same time, otherwise you'd still have to run mkimage on the other half "initrd.img-$(uname -r)" when using booting an initramfs with your main kernel image..
Regards,

Hi Robert,
On Thu, Oct 25, 2012 at 12:07 AM, Robert Nelson robertcnelson@gmail.com wrote:
Fabio,
Any thoughts on also enabling "define CONFIG_SUPPORT_RAW_INITRD" at the same time, otherwise you'd still have to run mkimage on the other half "initrd.img-$(uname -r)" when using booting an initramfs with your main kernel image..
Sure, no problem. We can enable CONFIG_SUPPORT_RAW_INITRD as well.
Stefano,
Should I enable CONFIG_SUPPORT_RAW_INITRD as part of the same patch series or on a separate one?
Thanks,
Fabio Estevam

Am 25/10/2012 04:15, schrieb Fabio Estevam:
Hi Robert,
On Thu, Oct 25, 2012 at 12:07 AM, Robert Nelson robertcnelson@gmail.com wrote:
Fabio,
Any thoughts on also enabling "define CONFIG_SUPPORT_RAW_INITRD" at the same time, otherwise you'd still have to run mkimage on the other half "initrd.img-$(uname -r)" when using booting an initramfs with your main kernel image..
Sure, no problem. We can enable CONFIG_SUPPORT_RAW_INITRD as well.
Stefano,
Should I enable CONFIG_SUPPORT_RAW_INITRD as part of the same patch series or on a separate one?
Your decision, both are fine with me.
Regards,
Stefano Babic

On Thu, Oct 25, 2012 at 5:00 AM, Stefano Babic sbabic@denx.de wrote:
Should I enable CONFIG_SUPPORT_RAW_INITRD as part of the same patch series or on a separate one?
Your decision, both are fine with me.
Ok, then I prefer to keep this series as is.
I will send a separate one for adding CONFIG_SUPPORT_RAW_INITRD only for mx53loco as requested by Robert.
Regards,
Fabio Estevam

Am 25/10/2012 13:16, schrieb Fabio Estevam:
On Thu, Oct 25, 2012 at 5:00 AM, Stefano Babic sbabic@denx.de wrote:
Should I enable CONFIG_SUPPORT_RAW_INITRD as part of the same patch series or on a separate one?
Your decision, both are fine with me.
Ok, then I prefer to keep this series as is.
I will send a separate one for adding CONFIG_SUPPORT_RAW_INITRD only for mx53loco as requested by Robert.
Ok, fine. This series is then ready to be merged.
Regards, Stefano Babic

On 24/10/2012 21:44, Fabio Estevam wrote:
From: Fabio Estevam fabio.estevam@freescale.com
Allow booting a zImage kernel.
Signed-off-by: Fabio Estevam fabio.estevam@freescale.com
include/configs/mx53loco.h | 1 + 1 file changed, 1 insertion(+)
diff --git a/include/configs/mx53loco.h b/include/configs/mx53loco.h index 0658dd3..25672c0 100644 --- a/include/configs/mx53loco.h +++ b/include/configs/mx53loco.h @@ -103,6 +103,7 @@
/* Command definition */ #include <config_cmd_default.h> +#define CONFIG_CMD_BOOTZ
#undef CONFIG_CMD_IMLS
Applied to u-boot-imx, thanks.
Best regards, Stefano Babic
participants (3)
-
Fabio Estevam
-
Robert Nelson
-
Stefano Babic