public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
From: Sjoerd Simons <sjoerd.simons@collabora.co.uk>
To: u-boot@lists.denx.de
Subject: [U-Boot] [PATCH V2 2/2] odroid: Add boot script (boot.scr) support
Date: Mon, 05 Oct 2015 11:13:54 +0200	[thread overview]
Message-ID: <1444036434.9895.16.camel@collabora.co.uk> (raw)
In-Reply-To: <1444036039-9104-3-git-send-email-guillaume.gardet@free.fr>

On Mon, 2015-10-05 at 11:07 +0200, Guillaume GARDET wrote:
> Add boot script (boot.scr) support. If no boot script are 
> found, it boots as usual.

Instead of extending the specialized boot script, it would belovely to
see the odroid board switch to distro boot commands for a more
standardized boot sequence.

For reference, if you need an example how to add that while staying
backwards compatible see my patchset for am335x boards which did
something like that: 

http://lists.denx.de/pipermail/u-boot/2015-August/225656.html

> Signed-off-by: Guillaume GARDET <guillaume.gardet@free.fr>
> Cc: Przemyslaw Marczak <p.marczak@samsung.com>
> Cc: Minkyu Kang <mk7.kang@samsung.com>
> 
> ---
>  include/configs/odroid.h | 9 +++++++++
>  1 file changed, 9 insertions(+)
> 
> diff --git a/include/configs/odroid.h b/include/configs/odroid.h
> index e45b00e..f79847b 100644
> --- a/include/configs/odroid.h
> +++ b/include/configs/odroid.h
> @@ -108,6 +108,8 @@
>   * 2.  ROOT:  -
>  */
>  #define CONFIG_EXTRA_ENV_SETTINGS \
> +	"loadbootscript=load mmc ${mmcbootdev}:${mmcbootpart}
> ${scriptaddr} " \
> +		"boot.scr\0" \
>  	"loadkernel=load mmc ${mmcbootdev}:${mmcbootpart}
> ${kerneladdr} " \
>  		"${kernelname}\0" \
>  	"loadinitrd=load mmc ${mmcbootdev}:${mmcbootpart}
> ${initrdaddr} " \
> @@ -129,6 +131,9 @@
>  	"kernel_args=" \
>  		"setenv bootargs
> root=/dev/mmcblk${mmcrootdev}p${mmcrootpart}" \
>  		" rootwait ${console} ${opts}\0" \
> +	"boot_script=" \
> +		"run loadbootscript;" \
> +		"source ${scriptaddr}\0" \
>  	"boot_fit=" \
>  		"setenv kerneladdr 0x42000000;" \
>  		"setenv kernelname Image.itb;" \
> @@ -152,6 +157,9 @@
>  		"run kernel_args;" \
>  		"bootz ${kerneladdr} ${initrd_addr} ${fdt_addr};\0"
> \
>  	"autoboot=" \
> +		"if test -e mmc 0 boot.scr; then; " \
> +			"run boot_script; " \
> +		"fi; " \
>  		"if test -e mmc 0 Image.itb; then; " \
>  			"run boot_fit;" \
>  		"elif test -e mmc 0 zImage; then; " \
> @@ -171,6 +179,7 @@
>  	"consoleoff=set console console=ram; save; reset\0" \
>  	"initrdname=uInitrd\0" \
>  	"initrdaddr=42000000\0" \
> +	"scriptaddr=0x42000000\0" \
>  	"fdtaddr=40800000\0"
>  
>  /* I2C */

-- 
Sjoerd Simons
Collabora Ltd.

  reply	other threads:[~2015-10-05  9:13 UTC|newest]

Thread overview: 19+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-09-28  9:42 [U-Boot] [PATCH 0/2] Enhance Odroid board Guillaume GARDET
2015-09-28  9:42 ` [U-Boot] [PATCH 1/2] odroid: replace 'fatload' with 'load' to be able to use EXT* partitions Guillaume GARDET
2015-10-01  9:18   ` Przemyslaw Marczak
2015-09-28  9:42 ` [U-Boot] [PATCH 2/2] odroid: Add boot script (boot.scr) support Guillaume GARDET
2015-10-01  9:19   ` Przemyslaw Marczak
2015-10-05  9:07 ` [U-Boot] [PATCH V2 0/2] Enhance Odroid board Guillaume GARDET
2015-10-05  9:07   ` [U-Boot] [PATCH V2 1/2] odroid: replace 'fatload' with 'load' to be able to use EXT* partitions Guillaume GARDET
2015-10-05  9:07   ` [U-Boot] [PATCH V2 2/2] odroid: Add boot script (boot.scr) support Guillaume GARDET
2015-10-05  9:13     ` Sjoerd Simons [this message]
2015-10-08  9:31       ` Guillaume Gardet
2015-10-09 10:18       ` Przemyslaw Marczak
2015-10-09 10:24     ` Przemyslaw Marczak
2015-10-09 11:59       ` Guillaume Gardet
2015-10-09 12:18         ` Przemyslaw Marczak
2015-10-09 12:26   ` [U-Boot] [PATCH V3 0/2] *Enhance Odroid board Guillaume GARDET
2015-10-09 12:26     ` [U-Boot] [PATCH V3 1/2] odroid: replace 'fatload' with 'load' to be able to use EXT* partitions Guillaume GARDET
2015-10-09 12:26     ` [U-Boot] [PATCH V3 2/2] odroid: Add boot script (boot.scr) support Guillaume GARDET
2015-10-13 10:16     ` [U-Boot] [PATCH V3 0/2] *Enhance Odroid board Przemyslaw Marczak
2015-10-13 11:51       ` Minkyu Kang

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1444036434.9895.16.camel@collabora.co.uk \
    --to=sjoerd.simons@collabora.co.uk \
    --cc=u-boot@lists.denx.de \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox