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 @@ -120,6 +120,9 @@ jobs:
- hi3516cv500_lite
- hi3516dv300_lite

# Hisilicon [HI3516CV6XX]
- hi3516cv6xx_lite

# Hisilicon [HI3516EV200]
- hi3516dv200_lite
- hi3516ev200_lite
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/toolchain.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ jobs:
- hi3516cv200_lite
- hi3516cv300_lite
- hi3516cv500_lite
- hi3516cv6xx_lite
- hi3516ev200_lite
- hi3519v101_lite
- hi3520dv200_lite
Expand Down
4 changes: 4 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,9 @@ endif
@$(call BUNDLE_SDK)

repack:
ifneq ($(wildcard $(TARGET)/images/firmware.bin),)
@$(call PREPARE_REPACK,firmware.bin,8192,,,nor)
else
ifeq ($(BR2_TARGET_ROOTFS_SQUASHFS),y)
ifeq ($(BR2_OPENIPC_SOC_VENDOR),"rockchip")
@$(call PREPARE_REPACK,zboot.img,4096,rootfs.squashfs,8192,nor)
Expand All @@ -114,6 +117,7 @@ endif
ifeq ($(BR2_TARGET_ROOTFS_INITRAMFS),y)
@$(call PREPARE_REPACK,uImage,16384,,,initramfs)
endif
endif

size-report:
@TARGET_DIR=$(TARGET)/target \
Expand Down
38 changes: 38 additions & 0 deletions br-ext-chip-hisilicon/board/hi3516cv6xx/fit-image.its
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
/dts-v1/;

/ {
description = "Linux Kernel";
#address-cells = <1>;

images {
fdt-1 {
description = "dtb";
data = /incbin/("fdt.dtb");
type = "flat_dt";
arch = "arm";
compression = "none";
load = <0x40000000>;
};

linux_kernel {
description = "Linux";
data = /incbin/("zImage");
type = "kernel";
arch = "arm";
os = "Linux";
compression = "none";
load = <0x40018000>;
entry = <0x40018000>;
};
};

configurations {
default = "config-1";
config-1 {
description = "Linux";
kernel = "linux_kernel";
fdt = "fdt-1";
loadables = "linux_kernel", "fdt-1";
};
};
};
Loading
Loading