| #
4c3bac62 |
| 27-Oct-2021 |
Joseph Chen <chenjh@rock-chips.com> |
common: bootm: pass bootm header structure for arch_preboot_os()
Signed-off-by: Joseph Chen <chenjh@rock-chips.com> Change-Id: Id2735cd4224a0aa04fac2d208757e104ba8e82b0
|
| #
4103a11c |
| 30-Mar-2020 |
Joseph Chen <chenjh@rock-chips.com> |
Merge branch 'next-dev' into thunder-boot
|
| #
96f5441e |
| 25-Mar-2020 |
Joseph Chen <chenjh@rock-chips.com> |
common: fit: support spl fit image check by tools/fit_check_sign
Signed-off-by: Joseph Chen <chenjh@rock-chips.com> Change-Id: I0e03a90d50290e18c6fb2cd44516c352f3695290
|
| #
1a4f6af8 |
| 02-Mar-2020 |
Joseph Chen <chenjh@rock-chips.com> |
Merge branch 'next-dev' into thunder-boot
|
| #
998aeb5f |
| 11-Jan-2020 |
Joseph Chen <chenjh@rock-chips.com> |
common: bootm: add board_do_bootm()
There maybe some board routine before do_bootm_states(). The board can override this __weak function.
Signed-off-by: Joseph Chen <chenjh@rock-chips.com> Change-I
common: bootm: add board_do_bootm()
There maybe some board routine before do_bootm_states(). The board can override this __weak function.
Signed-off-by: Joseph Chen <chenjh@rock-chips.com> Change-Id: Iab6a6742a02dae681e4d3221dc7cfffd2c3df98c
show more ...
|
| #
bd700d6b |
| 01-Aug-2019 |
Joseph Chen <chenjh@rock-chips.com> |
common: bootm: add bootm state param for arch_preboot_os()
- This makes arch_preboot_os() more flexsible; - call arch_preboot_os() when BOOTM_STATE_OS_PREP;
Change-Id: Ia4ae3666b8180c993c761ef222ac
common: bootm: add bootm state param for arch_preboot_os()
- This makes arch_preboot_os() more flexsible; - call arch_preboot_os() when BOOTM_STATE_OS_PREP;
Change-Id: Ia4ae3666b8180c993c761ef222acbcff5358ae97 Signed-off-by: Joseph Chen <chenjh@rock-chips.com>
show more ...
|
| #
d52e8575 |
| 21-May-2015 |
Karl Apsite <Karl.Apsite@dornerworks.com> |
Combine bootm_find_<thing> functions together
bootm_find_ramdisk_fdt() renamed to bootm_find_images() for readability.
The function bootm_find_ramdisk_fdt() appears to be a simple wrapper for bootm
Combine bootm_find_<thing> functions together
bootm_find_ramdisk_fdt() renamed to bootm_find_images() for readability.
The function bootm_find_ramdisk_fdt() appears to be a simple wrapper for bootm_find_ramdisk(), bootm_find_fdt(), and now bootm_find_loadables(). I didn't see any other callers entering a bootm_find<thing>, so removing the wrapper, and condensing these together hopefully makes the code a little simpler.
Signed-off-by: Karl Apsite <Karl.Apsite@dornerworks.com> Reviewed-by: Simon Glass <sjg@chromium.org>
show more ...
|
| #
081cc197 |
| 02-Dec-2014 |
Simon Glass <sjg@chromium.org> |
bootm: Export bootm_decomp_image()
Export this function for testing. Also add a parameter so that values other than CONFIG_SYS_BOOTM_LEN can be used for the maximum uncompressed size.
Signed-off-by
bootm: Export bootm_decomp_image()
Export this function for testing. Also add a parameter so that values other than CONFIG_SYS_BOOTM_LEN can be used for the maximum uncompressed size.
Signed-off-by: Simon Glass <sjg@chromium.org>
show more ...
|
| #
f1bd871a |
| 08-Oct-2014 |
Jeroen Hofstee <jeroen@myspectrum.nl> |
bootm: add prototype for arch_preboot_os
Signed-off-by: Jeroen Hofstee <jeroen@myspectrum.nl>
|
| #
d2b2ffe3 |
| 14-Aug-2014 |
Tom Rini <trini@ti.com> |
cmd_bootm.c: Add 'booti' for ARM64 Linux kernel Images
The default format for arm64 Linux kernels is the "Image" format, described in Documentation/arm64/booting.txt. This, along with an optional g
cmd_bootm.c: Add 'booti' for ARM64 Linux kernel Images
The default format for arm64 Linux kernels is the "Image" format, described in Documentation/arm64/booting.txt. This, along with an optional gzip compression on top is all that is generated by default. The Image format has a magic number within the header for verification, a text_offset where the Image must be run from, an image_size that includes the BSS and reserved fields.
This does not support automatic detection of a gzip compressed image.
Signed-off-by: Tom Rini <trini@ti.com>
show more ...
|
| #
dab5e346 |
| 16-Jul-2014 |
Stefano Babic <sbabic@denx.de> |
Merge branch 'master' of git://git.denx.de/u-boot
Signed-off-by: Stefano Babic <sbabic@denx.de>
Conflicts: boards.cfg
|
| #
ed1d98d8 |
| 25-Jun-2014 |
Albert ARIBAUD <albert.u.boot@aribaud.net> |
Merge branch 'u-boot/master' into 'u-boot-arm/master'
|
| #
ce1400f6 |
| 12-Jun-2014 |
Simon Glass <sjg@chromium.org> |
Enhance fit_check_sign to check all images
At present this tool only checks the configuration signing. Have it also look at each of the images in the configuration and confirm that they verify.
Sig
Enhance fit_check_sign to check all images
At present this tool only checks the configuration signing. Have it also look at each of the images in the configuration and confirm that they verify.
Signed-off-by: Simon Glass <sjg@chromium.org> Acked-by: Heiko Schocher <hs@denx.de> (v1)
show more ...
|
| #
b6396403 |
| 12-Jun-2014 |
Simon Glass <sjg@chromium.org> |
bootm: Split out code from cmd_bootm.c
This file has code in three different categories: - Command processing - OS-specific boot code - Locating images and setting up to boot
Only the first categor
bootm: Split out code from cmd_bootm.c
This file has code in three different categories: - Command processing - OS-specific boot code - Locating images and setting up to boot
Only the first category really belongs in a file called cmd_bootm.c.
Leave the command processing code where it is. Split out the OS-specific boot code into bootm_os.c. Split out the other code into bootm.c
Header files and extern declarations are tidied but otherwise no code changes are made, to make it easier to review.
Signed-off-by: Simon Glass <sjg@chromium.org>
show more ...
|