diff options
author | Oskari Lemmela <oskari@lemmela.net> | 2021-04-10 20:16:05 +0300 |
---|---|---|
committer | Daniel Golle <daniel@makrotopia.org> | 2021-04-11 14:55:35 +0100 |
commit | d05051774e0f9d52930c73c6a2cbaf7300a2ac91 (patch) | |
tree | 6f82c4ac0eb9445c282b7c35cdd402a91491a380 /target/linux | |
parent | dc61c32fdc5ec2c47a3857a17a6fb2dbd43c711a (diff) | |
download | upstream-d05051774e0f9d52930c73c6a2cbaf7300a2ac91.tar.gz upstream-d05051774e0f9d52930c73c6a2cbaf7300a2ac91.tar.bz2 upstream-d05051774e0f9d52930c73c6a2cbaf7300a2ac91.zip |
mediatek: bpi-r64: use separate partition for emmc bootloader
eMMC booloader is stored to separate partition.
FIP size is increased to 2MB.
Signed-off-by: Oskari Lemmela <oskari@lemmela.net>
Diffstat (limited to 'target/linux')
-rw-r--r-- | target/linux/mediatek/image/mt7622.mk | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/target/linux/mediatek/image/mt7622.mk b/target/linux/mediatek/image/mt7622.mk index 255b75983d..3901800bcb 100644 --- a/target/linux/mediatek/image/mt7622.mk +++ b/target/linux/mediatek/image/mt7622.mk @@ -43,11 +43,12 @@ define Build/mt7622-gpt -H \ -t 0x83 -N bl2 -r -p 512k@512k \ ) \ - -t 0xef -N fip -r -p 1M@2M \ + -t 0xef -N fip -r -p 2M@2M \ -t 0x83 -N ubootenv -r -p 1M@4M \ -N recovery -r -p 32M@6M \ $(if $(findstring sdmmc,$1), \ - -t 0x2e -N production -p 216M@40M \ + -N install -r -p 7M@38M \ + -t 0x2e -N production -p 211M@45M \ ) \ $(if $(findstring emmc,$1), \ -t 0x2e -N production -p 980M@40M \ @@ -79,13 +80,13 @@ define Device/bananapi_bpi-r64 IMAGES := sysupgrade.itb KERNEL_INITRAMFS_SUFFIX := -recovery.itb ARTIFACT/sdcard.img.gz := mt7622-gpt sdmmc |\ - pad-to 128k | mt7622-gpt emmc |\ - pad-to 256k | bl2 emmc-2ddr |\ pad-to 512k | bl2 sdmmc-2ddr |\ - pad-to 1024k | bl31-uboot bananapi_bpi-r64-emmc |\ pad-to 2048k | bl31-uboot bananapi_bpi-r64-sdmmc |\ pad-to 6144k | append-image initramfs-recovery.itb |\ - pad-to 40960k | append-image squashfs-sysupgrade.itb | gzip + pad-to 38912k | mt7622-gpt emmc |\ + pad-to 39424k | bl2 emmc-2ddr |\ + pad-to 40960k | bl31-uboot bananapi_bpi-r64-emmc |\ + pad-to 46080k | append-image squashfs-sysupgrade.itb | gzip KERNEL := kernel-bin | gzip KERNEL_INITRAMFS := kernel-bin | lzma | fit lzma $$(DTS_DIR)/$$(DEVICE_DTS).dtb with-initrd | pad-to 128k IMAGE/sysupgrade.itb := append-kernel | fit gzip $$(DTS_DIR)/$$(DEVICE_DTS).dtb external-static-with-rootfs | append-metadata |