mirror of
https://git.openwrt.org/openwrt/openwrt.git
synced 2026-05-04 09:31:26 +02:00
microchipsw: tactical-1000: expand FIP partition size
Expand the FIP partition size to future proof and allow custom firmware to be used as BL31 instead of U-Boot. Signed-off-by: Robert Marko <robert.marko@sartura.hr>
This commit is contained in:
parent
5c49ee6099
commit
fa20221a8b
@ -18,6 +18,20 @@ define Build/lan969x-gpt-emmc
|
||||
rm $@.tmp
|
||||
endef
|
||||
|
||||
define Build/tactical-1000-gpt-emmc
|
||||
cp $@ $@.tmp 2>/dev/null || true
|
||||
ptgen -g -o $@.tmp -a 1 -l 1024 \
|
||||
-t 0x83 -N fip -r -p 128M@1M \
|
||||
-t 0x83 -N fip.bak -r -p 128M@129M \
|
||||
-t 0x83 -N Env -r -p 2M@257M \
|
||||
$(if $(findstring flash,$1), \
|
||||
-t 0x2e -N kernel -p $(CONFIG_TARGET_KERNEL_PARTSIZE)M@259M \
|
||||
-t 0x2e -N rootfs -p $(CONFIG_TARGET_ROOTFS_PARTSIZE)M
|
||||
)
|
||||
cat $@.tmp >> $@
|
||||
rm $@.tmp
|
||||
endef
|
||||
|
||||
define Build/append-kernel-part
|
||||
dd if=$(IMAGE_KERNEL) bs=$(CONFIG_TARGET_KERNEL_PARTSIZE)M conv=sync >> $@
|
||||
endef
|
||||
@ -51,15 +65,16 @@ define Device/novarq_tactical-1000
|
||||
DEVICE_PACKAGES := kmod-i2c-mux-gpio \
|
||||
kmod-gpio-pwm kmod-hwmon-pwmfan kmod-hwmon-gpiofan \
|
||||
kmod-rtc-ds1307 kmod-hwmon-lm75
|
||||
IMAGES += emmc-atf-gpt.gz emmc-gpt.img.gz
|
||||
IMAGE/emmc-atf-gpt.gz := lan969x-gpt-emmc |\
|
||||
IMAGES += emmc-gpt-table.gz emmc-atf-gpt.gz emmc-gpt.img.gz
|
||||
IMAGE/emmc-gpt-table.gz := tactical-1000-gpt-emmc | gzip
|
||||
IMAGE/emmc-atf-gpt.gz := tactical-1000-gpt-emmc |\
|
||||
pad-to 1M | lan969x-fip tactical-1000 |\
|
||||
pad-to 9M | lan969x-fip tactical-1000 |\
|
||||
pad-to 129M | lan969x-fip tactical-1000 |\
|
||||
gzip
|
||||
IMAGE/emmc-gpt.img.gz := lan969x-gpt-emmc flash |\
|
||||
IMAGE/emmc-gpt.img.gz := tactical-1000-gpt-emmc flash |\
|
||||
pad-to 1M | lan969x-fip tactical-1000 |\
|
||||
pad-to 9M | lan969x-fip tactical-1000 |\
|
||||
pad-to 19M | append-kernel-part |\
|
||||
pad-to 129M | lan969x-fip tactical-1000 |\
|
||||
pad-to 259M | append-kernel-part |\
|
||||
append-rootfs |\
|
||||
gzip
|
||||
SUPPORTED_DEVICES += novarq,tactical-1000-v3
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user