Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -123,6 +123,9 @@ jobs:
# Hisilicon [HI3516CV6XX]
- hi3516cv6xx_ultimate

# Hisilicon [HI3519DV500]
- hi3519dv500_ultimate

# Hisilicon [HI3516EV200]
- hi3516dv200_lite
- hi3516ev200_lite
Expand Down
4 changes: 2 additions & 2 deletions br-ext-chip-hisilicon/board/hi3519dv500/fit-image.its
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,11 @@

linux_kernel {
description = "Linux";
data = /incbin/("Image");
data = /incbin/("Image.gz");
type = "kernel";
arch = "arm64";
os = "Linux";
compression = "none";
compression = "gzip";
load = <0x40080000>;
entry = <0x40080000>;
};
Expand Down
3 changes: 3 additions & 0 deletions br-ext-chip-hisilicon/board/hi3519dv500/post-image.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,9 @@ ERASEBLOCK_SIZE=$((64 * 1024))


cp ${BINARIES_DIR}/hi35*.dtb ${BINARIES_DIR}/fdt.dtb
# Compress the arm64 Image so the FIT + squashfs fit the 16 MiB NOR. U-Boot
# decompresses it at boot (CONFIG_FIT + CONFIG_GZIP).
gzip -9 -c ${BINARIES_DIR}/Image > ${BINARIES_DIR}/Image.gz
cp ${BOARD_DIR}/${ITS_SOURCE} ${BINARIES_DIR}/
mkimage -f ${BINARIES_DIR}/${ITS_SOURCE} ${BINARIES_DIR}/fitImage

Expand Down
Loading