summaryrefslogtreecommitdiff
path: root/firmware/SOURCES
diff options
context:
space:
mode:
authorAidan MacDonald <amachronic@protonmail.com>2022-02-21 17:52:58 +0000
committerAidan MacDonald <amachronic@protonmail.com>2022-03-04 09:02:56 -0500
commitee87bfb933cdb595718bd8ddadf6552c3fa8895d (patch)
tree71fae89c44f6e6544c559555247103d46083aba5 /firmware/SOURCES
parentd541a3a1919f90b8b6dc8e649d586df7e407cb54 (diff)
downloadrockbox-ee87bfb933cdb595718bd8ddadf6552c3fa8895d.tar.gz
rockbox-ee87bfb933cdb595718bd8ddadf6552c3fa8895d.zip
Add support code for dealing with U-Boot uImages
Adds a loader for the legacy uImage format that is commonly used on embedded Linux systems. It verifies checksums and supports uncompressed and gzipped images. Supports arbitrary reader functions to allow the images to be streamed off any storage device, for optimal RAM use. Change-Id: I93c35f9a6f323999a22a07300e05627fabfcbd2c
Diffstat (limited to 'firmware/SOURCES')
-rw-r--r--firmware/SOURCES2
1 files changed, 1 insertions, 1 deletions
diff --git a/firmware/SOURCES b/firmware/SOURCES
index 4ea922af1b..2e2f13bbe9 100644
--- a/firmware/SOURCES
+++ b/firmware/SOURCES
@@ -33,6 +33,7 @@ logf.c
33#endif /* ROCKBOX_HAS_LOGF */ 33#endif /* ROCKBOX_HAS_LOGF */
34#if (CONFIG_PLATFORM & PLATFORM_NATIVE) 34#if (CONFIG_PLATFORM & PLATFORM_NATIVE)
35load_code.c 35load_code.c
36linuxboot.c
36#ifdef RB_PROFILE 37#ifdef RB_PROFILE
37profile.c 38profile.c
38#endif /* RB_PROFILE */ 39#endif /* RB_PROFILE */
@@ -46,7 +47,6 @@ timer.c
46debug.c 47debug.c
47#endif /* PLATFORM_NATIVE */ 48#endif /* PLATFORM_NATIVE */
48panic.c 49panic.c
49
50#if (CONFIG_PLATFORM & PLATFORM_HOSTED) && defined(BOOTFILE) 50#if (CONFIG_PLATFORM & PLATFORM_HOSTED) && defined(BOOTFILE)
51target/hosted/rolo.c 51target/hosted/rolo.c
52#endif 52#endif