mirror of
https://git.openwrt.org/openwrt/openwrt.git
synced 2026-02-12 13:20:03 +01:00
The problem is the following: we have three fixed partitions in a RedBoot partition for kernel, initrd and rootfs. On the surface this looks good. But we have little flash and want to use it efficiently. We want to use the OpenWrt "firmware" partition scheme where the kernel, initramfs and sqashfs+jffs2 rootfs is appended, leaving maximum space for a writeable rootfs. To do this we will override the existing RedBoot partition table with one that merges the three separate partitions into one "firmware" partition. RedBoot is still booting the system. It still needs to read the first two parts "as if" these were the kernel and initrd. This works fine, because the kernel still comes first. We already have hacks in place to merge the two kernel and initrd into one binary image and execute it. This is done by prepending a "prolog" to the kernel that does the necessary copying in memory and then jumps to execute the kernel. Since this "prolog" copying routine is just 92 bytes but has 512 bytes allocated, we can trivially create a firmware format that can be used for splitting the image into kernel and rootfs using a tagging scheme that can be done directly by scripting so we don't need any special binary programs. This splitter implements that idea. This will be used on the Gemini platform and was tested on the Raidsonic IB-4220-B. Link: https://github.com/openwrt/openwrt/pull/21820 Signed-off-by: Linus Walleij <linusw@kernel.org>
122 lines
3 KiB
Text
122 lines
3 KiB
Text
config MTD_SPLIT
|
|
def_bool n
|
|
help
|
|
Generic MTD split support.
|
|
|
|
config MTD_SPLIT_SUPPORT
|
|
def_bool MTD = y
|
|
|
|
comment "Rootfs partition parsers"
|
|
|
|
config MTD_SPLIT_SQUASHFS_ROOT
|
|
bool "Squashfs based root partition parser"
|
|
depends on MTD_SPLIT_SUPPORT
|
|
select MTD_SPLIT
|
|
help
|
|
This provides a parsing function which allows to detect the
|
|
offset and size of the unused portion of a rootfs partition
|
|
containing a squashfs.
|
|
|
|
comment "Firmware partition parsers"
|
|
|
|
config MTD_SPLIT_BCM63XX_FW
|
|
bool "BCM63xx firmware parser"
|
|
depends on MTD_SPLIT_SUPPORT
|
|
select MTD_SPLIT
|
|
|
|
config MTD_SPLIT_BCM_WFI_FW
|
|
bool "Broadcom Whole Flash Image parser"
|
|
depends on MTD_SPLIT_SUPPORT
|
|
select MTD_SPLIT
|
|
|
|
config MTD_SPLIT_CFE_BOOTFS
|
|
bool "Parser finding rootfs appended to the CFE bootfs"
|
|
depends on MTD_SPLIT_SUPPORT && (ARCH_BCM4908 || ARCH_BCMBCA)
|
|
select MTD_SPLIT
|
|
help
|
|
cferom on BCM4908 (and bcm63xx) uses JFFS2 bootfs partition
|
|
for storing kernel, cferam and some device specific files.
|
|
There isn't any straight way of storing rootfs so it gets
|
|
appended to the JFFS2 bootfs partition. Kernel needs to find
|
|
it and run init from it. This parser is responsible for
|
|
finding appended rootfs.
|
|
|
|
config MTD_SPLIT_SEAMA_FW
|
|
bool "Seama firmware parser"
|
|
depends on MTD_SPLIT_SUPPORT
|
|
select MTD_SPLIT
|
|
|
|
config MTD_SPLIT_WRGG_FW
|
|
bool "WRGG firmware parser"
|
|
depends on MTD_SPLIT_SUPPORT
|
|
select MTD_SPLIT
|
|
|
|
config MTD_SPLIT_UIMAGE_FW
|
|
bool "uImage based firmware partition parser"
|
|
depends on MTD_SPLIT_SUPPORT
|
|
select MTD_SPLIT
|
|
|
|
config MTD_SPLIT_FIT_FW
|
|
bool "FIT based firmware partition parser"
|
|
depends on MTD_SPLIT_SUPPORT
|
|
select MTD_SPLIT
|
|
|
|
config MTD_SPLIT_LZMA_FW
|
|
bool "LZMA compressed kernel based firmware partition parser"
|
|
depends on MTD_SPLIT_SUPPORT
|
|
select MTD_SPLIT
|
|
|
|
config MTD_SPLIT_TPLINK_FW
|
|
bool "TP-Link firmware parser"
|
|
depends on MTD_SPLIT_SUPPORT
|
|
select MTD_SPLIT
|
|
|
|
config MTD_SPLIT_TRX_FW
|
|
bool "TRX image based firmware partition parser"
|
|
depends on MTD_SPLIT_SUPPORT
|
|
select MTD_SPLIT
|
|
|
|
config MTD_SPLIT_BRNIMAGE_FW
|
|
bool "brnImage (brnboot image) firmware parser"
|
|
depends on MTD_SPLIT_SUPPORT
|
|
select MTD_SPLIT
|
|
|
|
config MTD_SPLIT_EVA_FW
|
|
bool "EVA image based firmware partition parser"
|
|
depends on MTD_SPLIT_SUPPORT
|
|
select MTD_SPLIT
|
|
|
|
config MTD_SPLIT_MINOR_FW
|
|
bool "Mikrotik NOR image based firmware partition parser"
|
|
depends on MTD_SPLIT_SUPPORT
|
|
select MTD_SPLIT
|
|
|
|
config MTD_SPLIT_JIMAGE_FW
|
|
bool "JBOOT Image based firmware partition parser"
|
|
depends on MTD_SPLIT_SUPPORT
|
|
select MTD_SPLIT
|
|
|
|
config MTD_SPLIT_ELF_FW
|
|
bool "ELF loader firmware partition parser"
|
|
depends on MTD_SPLIT_SUPPORT
|
|
select MTD_SPLIT
|
|
|
|
config MTD_SPLIT_H3C_VFS
|
|
bool "Parser finding rootfs appended to H3C VFS"
|
|
depends on MTD_SPLIT_SUPPORT
|
|
select MTD_SPLIT
|
|
|
|
config MTD_SPLIT_SEIL_FW
|
|
bool "IIJ SEIL firmware parser"
|
|
depends on MTD_SPLIT_SUPPORT
|
|
select MTD_SPLIT
|
|
|
|
config MTD_SPLIT_MSTC_BOOT
|
|
bool "MSTC bootnum-based parser"
|
|
depends on MTD_SPLIT_SUPPORT
|
|
select MTD_SPLIT
|
|
|
|
config MTD_SPLIT_OPENWRT_PROLOG
|
|
bool "OpenWrt executable prolog-based parser"
|
|
depends on MTD_SPLIT_SUPPORT
|
|
select MTD_SPLIT
|