Skip to content
Snippets Groups Projects
Commit 12262340 authored by Adam Ford's avatar Adam Ford Committed by Tom Rini
Browse files

ARM: OMAP3_LOGIC: Update MTD Partition Table


The previous partition table did not support a separate device tree
and the kernel size was limited to 4MB.  This update shows the
location of the device tree (labeled as spl-os) for those who
want to use Falcon Mode or use U-Boot to store the Flattened
Device Tree (FDT) to NAND without appending it to the kernel.

This also grows the kernel to 6MB since 4MB was becomming tight

Signed-off-by: default avatarAdam Ford <aford173@gmail.com>
Reviewed-by: default avatarTom Rini <trini@konsulko.com>
parent d5584e43
No related branches found
No related tags found
No related merge requests found
...@@ -108,9 +108,12 @@ ...@@ -108,9 +108,12 @@
#define CONFIG_MTD_DEVICE /* needed for mtdparts commands */ #define CONFIG_MTD_DEVICE /* needed for mtdparts commands */
#define CONFIG_MTD_PARTITIONS /* required for UBI partition support */ #define CONFIG_MTD_PARTITIONS /* required for UBI partition support */
#define MTDIDS_DEFAULT "nand0=omap2-nand.0" #define MTDIDS_DEFAULT "nand0=omap2-nand.0"
#define MTDPARTS_DEFAULT "mtdparts=omap2-nand.0:512k(MLO),"\ #define MTDPARTS_DEFAULT "mtdparts=omap2-nand.0:"\
"1920k(u-boot),128k(u-boot-env),"\ "512k(MLO),"\
"4m(kernel),-(fs)" "1792k(u-boot),"\
"128k(spl-os)," \
"128k(u-boot-env),"\
"6m(kernel),-(fs)"
#endif #endif
/* Environment information */ /* Environment information */
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment