diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index bfa02885..93596972 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -12,12 +12,6 @@ on: env: TAG_NAME: latest - MAX_KERNEL_SIZE: 0x200000 - MAX_ROOTFS_SIZE: 0x500000 - MAX_KERNEL_SIZE_ULTIMATE: 0x300000 - MAX_ROOTFS_SIZE_ULTIMATE: 0xA00000 - MAX_KERNEL_SIZE_NAND: 0x0800000 - MAX_ROOTFS_SIZE_NAND: 0x1000000 TG_TOKEN: ${{secrets.TELEGRAM_TOKEN_BOT_OPENIPC}} TG_CHANNEL: ${{secrets.TELEGRAM_CHANNEL_OPENIPC_DEV}} TG_OPTIONS: -s --connect-timeout 30 --retry 10 --http1.1 -o /dev/null -w %{http_code} @@ -213,10 +207,7 @@ jobs: - name: Build firmware run: | echo "8.8.8.8 invisible-mirror.net" | sudo tee -a /etc/hosts - MODEL=${{matrix.platform}} - RELEASE=${{matrix.release}} - CONFIG=$(find br-ext-chip-* -name ${MODEL}_${RELEASE}_defconfig) - IMAGES=${GITHUB_WORKSPACE}/output/images + CONFIG=$(find br-ext-chip-* -name ${{matrix.platform}}_${{matrix.release}}_defconfig) export GIT_HASH=$(git rev-parse --short ${GITHUB_SHA}) export GIT_BRANCH=${GITHUB_REF_NAME} @@ -236,59 +227,15 @@ jobs: TIME=$(date -d @${SECONDS} +%M:%S) echo TIME=${TIME} >> ${GITHUB_ENV} - echo Build time: ${TIME} - check_size() { - SIZE1=$(expr $(stat --printf="%s" ${1}) / 1024) - SIZE2=$(expr ${2} / 1024) - echo - ${1}: [${SIZE1}KB/${SIZE2}KB] - if [ ${SIZE1} -gt ${SIZE2} ]; then - echo -- Error: size exceeded by $(expr ${SIZE1} - ${SIZE2})KB - exit 1 - fi - } - - EXCLUDE="hi3516cv500" - if [ ${RELEASE} = "ultimate" ] || grep -qP ${EXCLUDE} ${CONFIG}; then - MAX_KERNEL_SIZE=${MAX_KERNEL_SIZE_ULTIMATE} - MAX_ROOTFS_SIZE=${MAX_ROOTFS_SIZE_ULTIMATE} - fi - - mkdir -p /tmp/openipc - cd /tmp/openipc - - if [ -e ${IMAGES}/uImage ]; then - mv ${IMAGES}/uImage uImage.${MODEL} - md5sum uImage.${MODEL} > uImage.${MODEL}.md5sum - check_size uImage.${MODEL} ${MAX_KERNEL_SIZE} - fi - - if [ -e ${IMAGES}/zboot.img ]; then - mv ${IMAGES}/zboot.img boot.img.${MODEL} - md5sum boot.img.${MODEL} > boot.img.${MODEL}.md5sum - check_size boot.img.${MODEL} ${MAX_KERNEL_SIZE_NAND} - rm -f ${IMAGES}/rootfs.squashfs - fi - - if [ -e ${IMAGES}/rootfs.squashfs ]; then - mv ${IMAGES}/rootfs.squashfs rootfs.squashfs.${MODEL} - md5sum rootfs.squashfs.${MODEL} > rootfs.squashfs.${MODEL}.md5sum - check_size rootfs.squashfs.${MODEL} ${MAX_ROOTFS_SIZE} - - NORFW=${IMAGES}/openipc.${MODEL}-nor-${RELEASE}.tgz + NORFW=${GITHUB_WORKSPACE}/output/openipc.${{matrix.platform}}-nor-${{matrix.release}}.tgz + if [ -e ${NORFW} ]; then echo NORFW=${NORFW} >> ${GITHUB_ENV} - tar czf ${NORFW} $(ls) fi - if [ -e ${IMAGES}/rootfs.ubi ]; then - mv ${IMAGES}/rootfs.ubi rootfs.ubi.${MODEL} - md5sum rootfs.ubi.${MODEL} > rootfs.ubi.${MODEL}.md5sum - check_size rootfs.ubi.${MODEL} ${MAX_ROOTFS_SIZE_NAND} - rm -f rootfs.squashfs* - - NANDFW=${IMAGES}/openipc.${MODEL}-nand-${RELEASE}.tgz + NANDFW=${GITHUB_WORKSPACE}/output/openipc.${{matrix.platform}}-nand-${{matrix.release}}.tgz + if [ -e ${NANDFW} ]; then echo NANDFW=${NANDFW} >> ${GITHUB_ENV} - tar czf ${NANDFW} $(ls) fi - name: Upload firmware diff --git a/Makefile b/Makefile index cfe62c19..80aa9c61 100644 --- a/Makefile +++ b/Makefile @@ -4,12 +4,21 @@ BR_LINK = https://github.com/buildroot/buildroot/archive/refs/tags BR_FILE = /tmp/buildroot-$(BR_VER).tar.gz TARGET ?= $(PWD)/output +MAX_KERNEL_SIZE_LITE = 2048 +MAX_ROOTFS_SIZE_LITE = 5120 +MAX_KERNEL_SIZE_ULTIMATE = 3072 +MAX_ROOTFS_SIZE_ULTIMATE = 10240 +MAX_KERNEL_SIZE_NAND = 4096 +MAX_ROOTFS_SIZE_NAND = 16384 + ifdef BOARD - CONFIG = $(shell find br-ext-chip-*/configs | grep -m1 $(BOARD)) + CONFIG = $(shell find br-ext-*/configs/*_defconfig | grep -m1 $(BOARD)) endif ifeq ($(CONFIG),) CONFIG = $(error variable BOARD must be defined to initialize build) +else + include $(CONFIG) endif .PHONY: all clean defconfig deps distclean help prepare toolname @@ -20,9 +29,12 @@ help: - make clean - remove defconfig and target folder\n \ - make distclean - remove buildroot and output folder\n \ - make list - show available device configurations\n \ - - make all BOARD= - builds the selected device\n\n" + - make select - show interactive device list\n \ + - make all BOARD= - build the selected device\n\n" -all: defconfig +all: build repack + +build: defconfig @$(BR_MAKE) all br-%: defconfig @@ -48,4 +60,48 @@ list: @ls -1 br-ext-chip-*/configs deps: - sudo apt-get install -y automake autotools-dev bc build-essential cpio curl file fzf git libncurses-dev libtool lzop make rsync unzip wget + sudo apt-get install -y automake autotools-dev bc build-essential cpio \ + curl file fzf git libncurses-dev libtool lzop make rsync unzip wget + +select: + $(eval MENULIST = $(shell find ./br-ext-*/configs/*_defconfig | sort | \ + sed -E "s|br-ext-chip-(.+).configs.(.+)_defconfig|'\2' '\1 \2'|")) + @$(MAKE) BOARD=$(shell whiptail --title "Available boards" --menu "Please select a board:" \ + 20 76 12 --notags $(MENULIST) 3>&1 1>&2 2>&3) all + +repack: +ifeq ($(BR2_TARGET_ROOTFS_SQUASHFS),y) +ifeq ($(BR2_OPENIPC_FLASH_SIZE),"8") + @$(call CHECK_SIZE,uImage,$(MAX_KERNEL_SIZE_LITE)) + @$(call CHECK_SIZE,rootfs.squashfs,$(MAX_ROOTFS_SIZE_LITE)) +else + @$(call CHECK_SIZE,uImage,$(MAX_KERNEL_SIZE_ULTIMATE)) + @$(call CHECK_SIZE,rootfs.squashfs,$(MAX_ROOTFS_SIZE_ULTIMATE)) +endif + @$(call REPACK_FIRMWARE,uImage,rootfs.squashfs,nor) +endif +ifeq ($(BR2_TARGET_ROOTFS_UBI),y) + $(eval KERNEL_BIN = $(or $(BR2_LINUX_KERNEL_IMAGE_NAME),uImage)) + @$(call CHECK_SIZE,$(KERNEL_BIN),$(MAX_KERNEL_SIZE_NAND)) + @$(call CHECK_SIZE,rootfs.ubi,$(MAX_ROOTFS_SIZE_NAND)) + @$(call REPACK_FIRMWARE,$(KERNEL_BIN),rootfs.ubi,nand) +endif + +define CHECK_SIZE + $(eval FILE_SIZE = $(shell expr $(shell stat -c %s $(TARGET)/images/$(1) || echo 0) / 1024)) + if test $(FILE_SIZE) -eq 0; then exit 1; fi + echo - $(1): [$(FILE_SIZE)KB/$(2)KB] + if test $(FILE_SIZE) -gt $(2); then \ + echo -- size exceeded by: $(shell expr $(FILE_SIZE) - $(2))KB; exit 1; fi +endef + +define REPACK_FIRMWARE + mkdir -p $(TARGET)/images/$(3) + cd $(TARGET)/images && cp -f $(1) $(3)/$(1).$(BR2_OPENIPC_SOC_MODEL) + cd $(TARGET)/images && cp -f $(2) $(3)/$(2).$(BR2_OPENIPC_SOC_MODEL) + cd $(TARGET)/images && md5sum $(1) > $(3)/$(1).$(BR2_OPENIPC_SOC_MODEL).md5sum + cd $(TARGET)/images && md5sum $(2) > $(3)/$(2).$(BR2_OPENIPC_SOC_MODEL).md5sum + cd $(TARGET)/images && tar -czf $(TARGET)/openipc.$(BR2_OPENIPC_SOC_MODEL)-$(3)-$(BR2_OPENIPC_FLAVOR).tgz \ + $(3)/$(1).$(BR2_OPENIPC_SOC_MODEL) $(3)/$(1).$(BR2_OPENIPC_SOC_MODEL).md5sum \ + $(3)/$(2).$(BR2_OPENIPC_SOC_MODEL) $(3)/$(2).$(BR2_OPENIPC_SOC_MODEL).md5sum +endef diff --git a/br-ext-chip-allwinner/configs/v83x_lite_defconfig b/br-ext-chip-allwinner/configs/v83x_lite_defconfig index e79a0be1..c60577d4 100644 --- a/br-ext-chip-allwinner/configs/v83x_lite_defconfig +++ b/br-ext-chip-allwinner/configs/v83x_lite_defconfig @@ -36,6 +36,7 @@ BR2_OPENIPC_SOC_VENDOR="allwinner" BR2_OPENIPC_SOC_MODEL="v83x" BR2_OPENIPC_SOC_FAMILY="v83x" BR2_OPENIPC_FLAVOR="lite" +BR2_OPENIPC_FLASH_SIZE="8" # Filesystem # BR2_TARGET_TZ_INFO is not set diff --git a/br-ext-chip-allwinner/configs/v83x_ultimate_defconfig b/br-ext-chip-allwinner/configs/v83x_ultimate_defconfig index 1cd1435e..76f1966a 100644 --- a/br-ext-chip-allwinner/configs/v83x_ultimate_defconfig +++ b/br-ext-chip-allwinner/configs/v83x_ultimate_defconfig @@ -36,6 +36,7 @@ BR2_OPENIPC_SOC_VENDOR="allwinner" BR2_OPENIPC_SOC_MODEL="v83x" BR2_OPENIPC_SOC_FAMILY="v83x" BR2_OPENIPC_FLAVOR="ultimate" +BR2_OPENIPC_FLASH_SIZE="16" # Filesystem # BR2_TARGET_TZ_INFO is not set diff --git a/br-ext-chip-ambarella/configs/s3l_lite_defconfig b/br-ext-chip-ambarella/configs/s3l_lite_defconfig index 04a1baba..780ed222 100644 --- a/br-ext-chip-ambarella/configs/s3l_lite_defconfig +++ b/br-ext-chip-ambarella/configs/s3l_lite_defconfig @@ -35,6 +35,7 @@ BR2_OPENIPC_SOC_VENDOR="ambarella" BR2_OPENIPC_SOC_MODEL="s3l" BR2_OPENIPC_SOC_FAMILY="s3l" BR2_OPENIPC_FLAVOR="lite" +BR2_OPENIPC_FLASH_SIZE="8" # Filesystem # BR2_TARGET_TZ_INFO is not set diff --git a/br-ext-chip-anyka/configs/ak3916ev300_lite_defconfig b/br-ext-chip-anyka/configs/ak3916ev300_lite_defconfig index 0f8aac2d..0b06f27a 100644 --- a/br-ext-chip-anyka/configs/ak3916ev300_lite_defconfig +++ b/br-ext-chip-anyka/configs/ak3916ev300_lite_defconfig @@ -34,6 +34,7 @@ BR2_OPENIPC_SOC_VENDOR="anyka" BR2_OPENIPC_SOC_MODEL="ak3916ev300" BR2_OPENIPC_SOC_FAMILY="ak3918ev300" BR2_OPENIPC_FLAVOR="lite" +BR2_OPENIPC_FLASH_SIZE="8" # Filesystem # BR2_TARGET_TZ_INFO is not set diff --git a/br-ext-chip-anyka/configs/ak3918ev300_lite_defconfig b/br-ext-chip-anyka/configs/ak3918ev300_lite_defconfig index 1fe7bfef..bc6f391a 100644 --- a/br-ext-chip-anyka/configs/ak3918ev300_lite_defconfig +++ b/br-ext-chip-anyka/configs/ak3918ev300_lite_defconfig @@ -34,6 +34,7 @@ BR2_OPENIPC_SOC_VENDOR="anyka" BR2_OPENIPC_SOC_MODEL="ak3918ev300" BR2_OPENIPC_SOC_FAMILY="ak3918ev300" BR2_OPENIPC_FLAVOR="lite" +BR2_OPENIPC_FLASH_SIZE="8" # Filesystem # BR2_TARGET_TZ_INFO is not set diff --git a/br-ext-chip-fullhan/configs/fh8833v100_lite_defconfig b/br-ext-chip-fullhan/configs/fh8833v100_lite_defconfig index 4eae6c04..c3a19534 100644 --- a/br-ext-chip-fullhan/configs/fh8833v100_lite_defconfig +++ b/br-ext-chip-fullhan/configs/fh8833v100_lite_defconfig @@ -33,6 +33,7 @@ BR2_OPENIPC_SOC_VENDOR="fullhan" BR2_OPENIPC_SOC_MODEL="fh8833v100" BR2_OPENIPC_SOC_FAMILY="fh8833v100" BR2_OPENIPC_FLAVOR="lite" +BR2_OPENIPC_FLASH_SIZE="8" # Filesystem # BR2_TARGET_TZ_INFO is not set diff --git a/br-ext-chip-fullhan/configs/fh8852v100_lite_defconfig b/br-ext-chip-fullhan/configs/fh8852v100_lite_defconfig index e6043985..4b6a459c 100644 --- a/br-ext-chip-fullhan/configs/fh8852v100_lite_defconfig +++ b/br-ext-chip-fullhan/configs/fh8852v100_lite_defconfig @@ -33,6 +33,7 @@ BR2_OPENIPC_SOC_VENDOR="fullhan" BR2_OPENIPC_SOC_MODEL="fh8852v100" BR2_OPENIPC_SOC_FAMILY="fh8852v100" BR2_OPENIPC_FLAVOR="lite" +BR2_OPENIPC_FLASH_SIZE="8" # Filesystem # BR2_TARGET_TZ_INFO is not set diff --git a/br-ext-chip-fullhan/configs/fh8852v200_lite_defconfig b/br-ext-chip-fullhan/configs/fh8852v200_lite_defconfig index 4b85b3ce..cba6f417 100644 --- a/br-ext-chip-fullhan/configs/fh8852v200_lite_defconfig +++ b/br-ext-chip-fullhan/configs/fh8852v200_lite_defconfig @@ -33,6 +33,7 @@ BR2_OPENIPC_SOC_VENDOR="fullhan" BR2_OPENIPC_SOC_MODEL="fh8852v200" BR2_OPENIPC_SOC_FAMILY="fh8852v200" BR2_OPENIPC_FLAVOR="lite" +BR2_OPENIPC_FLASH_SIZE="8" # Filesystem # BR2_TARGET_TZ_INFO is not set diff --git a/br-ext-chip-fullhan/configs/fh8852v210_lite_defconfig b/br-ext-chip-fullhan/configs/fh8852v210_lite_defconfig index 02c8ddd8..ba522f5c 100644 --- a/br-ext-chip-fullhan/configs/fh8852v210_lite_defconfig +++ b/br-ext-chip-fullhan/configs/fh8852v210_lite_defconfig @@ -33,6 +33,7 @@ BR2_OPENIPC_SOC_VENDOR="fullhan" BR2_OPENIPC_SOC_MODEL="fh8852v210" BR2_OPENIPC_SOC_FAMILY="fh8852v200" BR2_OPENIPC_FLAVOR="lite" +BR2_OPENIPC_FLASH_SIZE="8" # Filesystem # BR2_TARGET_TZ_INFO is not set diff --git a/br-ext-chip-fullhan/configs/fh8856v100_lite_defconfig b/br-ext-chip-fullhan/configs/fh8856v100_lite_defconfig index 864faf29..e9b8995e 100644 --- a/br-ext-chip-fullhan/configs/fh8856v100_lite_defconfig +++ b/br-ext-chip-fullhan/configs/fh8856v100_lite_defconfig @@ -33,6 +33,7 @@ BR2_OPENIPC_SOC_VENDOR="fullhan" BR2_OPENIPC_SOC_MODEL="fh8856v100" BR2_OPENIPC_SOC_FAMILY="fh8852v100" BR2_OPENIPC_FLAVOR="lite" +BR2_OPENIPC_FLASH_SIZE="8" # Filesystem # BR2_TARGET_TZ_INFO is not set diff --git a/br-ext-chip-fullhan/configs/fh8856v200_lite_defconfig b/br-ext-chip-fullhan/configs/fh8856v200_lite_defconfig index 9fb7755d..78c8af61 100644 --- a/br-ext-chip-fullhan/configs/fh8856v200_lite_defconfig +++ b/br-ext-chip-fullhan/configs/fh8856v200_lite_defconfig @@ -33,6 +33,7 @@ BR2_OPENIPC_SOC_VENDOR="fullhan" BR2_OPENIPC_SOC_MODEL="fh8856v200" BR2_OPENIPC_SOC_FAMILY="fh8852v200" BR2_OPENIPC_FLAVOR="lite" +BR2_OPENIPC_FLASH_SIZE="8" # Filesystem # BR2_TARGET_TZ_INFO is not set diff --git a/br-ext-chip-fullhan/configs/fh8856v210_lite_defconfig b/br-ext-chip-fullhan/configs/fh8856v210_lite_defconfig index c5ea2e52..b01ba296 100644 --- a/br-ext-chip-fullhan/configs/fh8856v210_lite_defconfig +++ b/br-ext-chip-fullhan/configs/fh8856v210_lite_defconfig @@ -33,6 +33,7 @@ BR2_OPENIPC_SOC_VENDOR="fullhan" BR2_OPENIPC_SOC_MODEL="fh8856v210" BR2_OPENIPC_SOC_FAMILY="fh8852v200" BR2_OPENIPC_FLAVOR="lite" +BR2_OPENIPC_FLASH_SIZE="8" # Filesystem # BR2_TARGET_TZ_INFO is not set diff --git a/br-ext-chip-fullhan/configs/fh8858v200_lite_defconfig b/br-ext-chip-fullhan/configs/fh8858v200_lite_defconfig index 0fd78948..a3c00940 100644 --- a/br-ext-chip-fullhan/configs/fh8858v200_lite_defconfig +++ b/br-ext-chip-fullhan/configs/fh8858v200_lite_defconfig @@ -33,6 +33,7 @@ BR2_OPENIPC_SOC_VENDOR="fullhan" BR2_OPENIPC_SOC_MODEL="fh8858v200" BR2_OPENIPC_SOC_FAMILY="fh8852v200" BR2_OPENIPC_FLAVOR="lite" +BR2_OPENIPC_FLASH_SIZE="8" # Filesystem # BR2_TARGET_TZ_INFO is not set diff --git a/br-ext-chip-fullhan/configs/fh8858v210_lite_defconfig b/br-ext-chip-fullhan/configs/fh8858v210_lite_defconfig index 9111f961..ef080248 100644 --- a/br-ext-chip-fullhan/configs/fh8858v210_lite_defconfig +++ b/br-ext-chip-fullhan/configs/fh8858v210_lite_defconfig @@ -33,6 +33,7 @@ BR2_OPENIPC_SOC_VENDOR="fullhan" BR2_OPENIPC_SOC_MODEL="fh8858v210" BR2_OPENIPC_SOC_FAMILY="fh8852v200" BR2_OPENIPC_FLAVOR="lite" +BR2_OPENIPC_FLASH_SIZE="8" # Filesystem # BR2_TARGET_TZ_INFO is not set diff --git a/br-ext-chip-goke/configs/gk7102_lite_defconfig b/br-ext-chip-goke/configs/gk7102_lite_defconfig index 8053c52d..4b29e6a7 100644 --- a/br-ext-chip-goke/configs/gk7102_lite_defconfig +++ b/br-ext-chip-goke/configs/gk7102_lite_defconfig @@ -33,6 +33,7 @@ BR2_OPENIPC_SOC_VENDOR="goke" BR2_OPENIPC_SOC_MODEL="gk7102" BR2_OPENIPC_SOC_FAMILY="gk710x" BR2_OPENIPC_FLAVOR="lite" +BR2_OPENIPC_FLASH_SIZE="8" # Filesystem # BR2_TARGET_TZ_INFO is not set diff --git a/br-ext-chip-goke/configs/gk7102s_lite_defconfig b/br-ext-chip-goke/configs/gk7102s_lite_defconfig index 30fb1662..c66ea704 100644 --- a/br-ext-chip-goke/configs/gk7102s_lite_defconfig +++ b/br-ext-chip-goke/configs/gk7102s_lite_defconfig @@ -33,6 +33,7 @@ BR2_OPENIPC_SOC_VENDOR="goke" BR2_OPENIPC_SOC_MODEL="gk7102s" BR2_OPENIPC_SOC_FAMILY="gk710x" BR2_OPENIPC_FLAVOR="lite" +BR2_OPENIPC_FLASH_SIZE="8" # Filesystem # BR2_TARGET_TZ_INFO is not set diff --git a/br-ext-chip-goke/configs/gk7202v300_lite_defconfig b/br-ext-chip-goke/configs/gk7202v300_lite_defconfig index a0147c89..d6cd0be7 100644 --- a/br-ext-chip-goke/configs/gk7202v300_lite_defconfig +++ b/br-ext-chip-goke/configs/gk7202v300_lite_defconfig @@ -35,6 +35,7 @@ BR2_OPENIPC_SOC_VENDOR="goke" BR2_OPENIPC_SOC_MODEL="gk7202v300" BR2_OPENIPC_SOC_FAMILY="gk7205v200" BR2_OPENIPC_FLAVOR="lite" +BR2_OPENIPC_FLASH_SIZE="8" # Filesystem # BR2_TARGET_TZ_INFO is not set diff --git a/br-ext-chip-goke/configs/gk7205v200_fpv_defconfig b/br-ext-chip-goke/configs/gk7205v200_fpv_defconfig index c35f29f8..838a3063 100644 --- a/br-ext-chip-goke/configs/gk7205v200_fpv_defconfig +++ b/br-ext-chip-goke/configs/gk7205v200_fpv_defconfig @@ -35,6 +35,7 @@ BR2_OPENIPC_SOC_VENDOR="goke" BR2_OPENIPC_SOC_MODEL="gk7205v200" BR2_OPENIPC_SOC_FAMILY="gk7205v200" BR2_OPENIPC_FLAVOR="fpv" +BR2_OPENIPC_FLASH_SIZE="8" # Filesystem # BR2_TARGET_TZ_INFO is not set diff --git a/br-ext-chip-goke/configs/gk7205v200_lite_defconfig b/br-ext-chip-goke/configs/gk7205v200_lite_defconfig index be0a2707..d5d20720 100644 --- a/br-ext-chip-goke/configs/gk7205v200_lite_defconfig +++ b/br-ext-chip-goke/configs/gk7205v200_lite_defconfig @@ -35,6 +35,7 @@ BR2_OPENIPC_SOC_VENDOR="goke" BR2_OPENIPC_SOC_MODEL="gk7205v200" BR2_OPENIPC_SOC_FAMILY="gk7205v200" BR2_OPENIPC_FLAVOR="lite" +BR2_OPENIPC_FLASH_SIZE="8" # Filesystem # BR2_TARGET_TZ_INFO is not set diff --git a/br-ext-chip-goke/configs/gk7205v200_lte_defconfig b/br-ext-chip-goke/configs/gk7205v200_lte_defconfig index 8b7db760..ffdb00aa 100644 --- a/br-ext-chip-goke/configs/gk7205v200_lte_defconfig +++ b/br-ext-chip-goke/configs/gk7205v200_lte_defconfig @@ -35,6 +35,7 @@ BR2_OPENIPC_SOC_VENDOR="goke" BR2_OPENIPC_SOC_MODEL="gk7205v200" BR2_OPENIPC_SOC_FAMILY="gk7205v200" BR2_OPENIPC_FLAVOR="lte" +BR2_OPENIPC_FLASH_SIZE="8" # Filesystem # BR2_TARGET_TZ_INFO is not set diff --git a/br-ext-chip-goke/configs/gk7205v200_original_defconfig b/br-ext-chip-goke/configs/gk7205v200_original_defconfig index c9e90fc9..3b32a89b 100644 --- a/br-ext-chip-goke/configs/gk7205v200_original_defconfig +++ b/br-ext-chip-goke/configs/gk7205v200_original_defconfig @@ -35,6 +35,7 @@ BR2_OPENIPC_SOC_VENDOR="goke" BR2_OPENIPC_SOC_MODEL="gk7205v200" BR2_OPENIPC_SOC_FAMILY="gk7205v200" BR2_OPENIPC_FLAVOR="original" +BR2_OPENIPC_FLASH_SIZE="8" # Filesystem # BR2_TARGET_TZ_INFO is not set diff --git a/br-ext-chip-goke/configs/gk7205v200_ultimate_defconfig b/br-ext-chip-goke/configs/gk7205v200_ultimate_defconfig index edb3f382..8812f731 100644 --- a/br-ext-chip-goke/configs/gk7205v200_ultimate_defconfig +++ b/br-ext-chip-goke/configs/gk7205v200_ultimate_defconfig @@ -35,6 +35,7 @@ BR2_OPENIPC_SOC_VENDOR="goke" BR2_OPENIPC_SOC_MODEL="gk7205v200" BR2_OPENIPC_SOC_FAMILY="gk7205v200" BR2_OPENIPC_FLAVOR="ultimate" +BR2_OPENIPC_FLASH_SIZE="16" # Filesystem # BR2_TARGET_TZ_INFO is not set diff --git a/br-ext-chip-goke/configs/gk7205v210_lite_defconfig b/br-ext-chip-goke/configs/gk7205v210_lite_defconfig index 4794fa83..f6bbe6c6 100644 --- a/br-ext-chip-goke/configs/gk7205v210_lite_defconfig +++ b/br-ext-chip-goke/configs/gk7205v210_lite_defconfig @@ -35,6 +35,7 @@ BR2_OPENIPC_SOC_VENDOR="goke" BR2_OPENIPC_SOC_MODEL="gk7205v210" BR2_OPENIPC_SOC_FAMILY="gk7205v200" BR2_OPENIPC_FLAVOR="lite" +BR2_OPENIPC_FLASH_SIZE="8" # Filesystem # BR2_TARGET_TZ_INFO is not set diff --git a/br-ext-chip-goke/configs/gk7205v300_fpv_defconfig b/br-ext-chip-goke/configs/gk7205v300_fpv_defconfig index 80cb8ce3..6fd23525 100644 --- a/br-ext-chip-goke/configs/gk7205v300_fpv_defconfig +++ b/br-ext-chip-goke/configs/gk7205v300_fpv_defconfig @@ -35,6 +35,7 @@ BR2_OPENIPC_SOC_VENDOR="goke" BR2_OPENIPC_SOC_MODEL="gk7205v300" BR2_OPENIPC_SOC_FAMILY="gk7205v200" BR2_OPENIPC_FLAVOR="fpv" +BR2_OPENIPC_FLASH_SIZE="8" # Filesystem # BR2_TARGET_TZ_INFO is not set diff --git a/br-ext-chip-goke/configs/gk7205v300_lite_defconfig b/br-ext-chip-goke/configs/gk7205v300_lite_defconfig index d33543d4..8c56048e 100644 --- a/br-ext-chip-goke/configs/gk7205v300_lite_defconfig +++ b/br-ext-chip-goke/configs/gk7205v300_lite_defconfig @@ -35,6 +35,7 @@ BR2_OPENIPC_SOC_VENDOR="goke" BR2_OPENIPC_SOC_MODEL="gk7205v300" BR2_OPENIPC_SOC_FAMILY="gk7205v200" BR2_OPENIPC_FLAVOR="lite" +BR2_OPENIPC_FLASH_SIZE="8" # Filesystem # BR2_TARGET_TZ_INFO is not set diff --git a/br-ext-chip-goke/configs/gk7205v300_lte_defconfig b/br-ext-chip-goke/configs/gk7205v300_lte_defconfig index 988d013b..701602b0 100644 --- a/br-ext-chip-goke/configs/gk7205v300_lte_defconfig +++ b/br-ext-chip-goke/configs/gk7205v300_lte_defconfig @@ -35,6 +35,7 @@ BR2_OPENIPC_SOC_VENDOR="goke" BR2_OPENIPC_SOC_MODEL="gk7205v300" BR2_OPENIPC_SOC_FAMILY="gk7205v200" BR2_OPENIPC_FLAVOR="lte" +BR2_OPENIPC_FLASH_SIZE="8" # Filesystem # BR2_TARGET_TZ_INFO is not set diff --git a/br-ext-chip-goke/configs/gk7205v300_ultimate_defconfig b/br-ext-chip-goke/configs/gk7205v300_ultimate_defconfig index f7effaa8..92cf9d5d 100644 --- a/br-ext-chip-goke/configs/gk7205v300_ultimate_defconfig +++ b/br-ext-chip-goke/configs/gk7205v300_ultimate_defconfig @@ -35,6 +35,7 @@ BR2_OPENIPC_SOC_VENDOR="goke" BR2_OPENIPC_SOC_MODEL="gk7205v300" BR2_OPENIPC_SOC_FAMILY="gk7205v200" BR2_OPENIPC_FLAVOR="ultimate" +BR2_OPENIPC_FLASH_SIZE="16" # Filesystem # BR2_TARGET_TZ_INFO is not set diff --git a/br-ext-chip-goke/configs/gk7605v100_lite_defconfig b/br-ext-chip-goke/configs/gk7605v100_lite_defconfig index 044b7d41..21f0db37 100644 --- a/br-ext-chip-goke/configs/gk7605v100_lite_defconfig +++ b/br-ext-chip-goke/configs/gk7605v100_lite_defconfig @@ -35,6 +35,7 @@ BR2_OPENIPC_SOC_VENDOR="goke" BR2_OPENIPC_SOC_MODEL="gk7605v100" BR2_OPENIPC_SOC_FAMILY="gk7205v200" BR2_OPENIPC_FLAVOR="lite" +BR2_OPENIPC_FLASH_SIZE="8" # Filesystem # BR2_TARGET_TZ_INFO is not set diff --git a/br-ext-chip-grainmedia/configs/gm8135_lite_defconfig b/br-ext-chip-grainmedia/configs/gm8135_lite_defconfig index 64e32419..c335e149 100644 --- a/br-ext-chip-grainmedia/configs/gm8135_lite_defconfig +++ b/br-ext-chip-grainmedia/configs/gm8135_lite_defconfig @@ -32,6 +32,7 @@ BR2_OPENIPC_SOC_VENDOR="grainmedia" BR2_OPENIPC_SOC_MODEL="gm8135" BR2_OPENIPC_SOC_FAMILY="gm8136" BR2_OPENIPC_FLAVOR="lite" +BR2_OPENIPC_FLASH_SIZE="8" # Filesystem # BR2_TARGET_TZ_INFO is not set diff --git a/br-ext-chip-grainmedia/configs/gm8136_lite_defconfig b/br-ext-chip-grainmedia/configs/gm8136_lite_defconfig index dda0a604..c67c8028 100644 --- a/br-ext-chip-grainmedia/configs/gm8136_lite_defconfig +++ b/br-ext-chip-grainmedia/configs/gm8136_lite_defconfig @@ -32,6 +32,7 @@ BR2_OPENIPC_SOC_VENDOR="grainmedia" BR2_OPENIPC_SOC_MODEL="gm8136" BR2_OPENIPC_SOC_FAMILY="gm8136" BR2_OPENIPC_FLAVOR="lite" +BR2_OPENIPC_FLASH_SIZE="8" # Filesystem # BR2_TARGET_TZ_INFO is not set diff --git a/br-ext-chip-hisilicon/configs/hi3516av100_lite_defconfig b/br-ext-chip-hisilicon/configs/hi3516av100_lite_defconfig index 323a767a..8bd87d0d 100644 --- a/br-ext-chip-hisilicon/configs/hi3516av100_lite_defconfig +++ b/br-ext-chip-hisilicon/configs/hi3516av100_lite_defconfig @@ -35,6 +35,7 @@ BR2_OPENIPC_SOC_VENDOR="hisilicon" BR2_OPENIPC_SOC_MODEL="hi3516av100" BR2_OPENIPC_SOC_FAMILY="hi3516av100" BR2_OPENIPC_FLAVOR="lite" +BR2_OPENIPC_FLASH_SIZE="8" # Filesystem # BR2_TARGET_TZ_INFO is not set diff --git a/br-ext-chip-hisilicon/configs/hi3516av100_ultimate_defconfig b/br-ext-chip-hisilicon/configs/hi3516av100_ultimate_defconfig index 811a2afc..2c2153ce 100644 --- a/br-ext-chip-hisilicon/configs/hi3516av100_ultimate_defconfig +++ b/br-ext-chip-hisilicon/configs/hi3516av100_ultimate_defconfig @@ -35,6 +35,7 @@ BR2_OPENIPC_SOC_VENDOR="hisilicon" BR2_OPENIPC_SOC_MODEL="hi3516av100" BR2_OPENIPC_SOC_FAMILY="hi3516av100" BR2_OPENIPC_FLAVOR="ultimate" +BR2_OPENIPC_FLASH_SIZE="16" # Filesystem # BR2_TARGET_TZ_INFO is not set diff --git a/br-ext-chip-hisilicon/configs/hi3516av200_lite_defconfig b/br-ext-chip-hisilicon/configs/hi3516av200_lite_defconfig index 4fa307d0..04e46610 100644 --- a/br-ext-chip-hisilicon/configs/hi3516av200_lite_defconfig +++ b/br-ext-chip-hisilicon/configs/hi3516av200_lite_defconfig @@ -35,6 +35,7 @@ BR2_OPENIPC_SOC_VENDOR="hisilicon" BR2_OPENIPC_SOC_MODEL="hi3516av200" BR2_OPENIPC_SOC_FAMILY="hi3519v101" BR2_OPENIPC_FLAVOR="lite" +BR2_OPENIPC_FLASH_SIZE="8" # Filesystem # BR2_TARGET_TZ_INFO is not set diff --git a/br-ext-chip-hisilicon/configs/hi3516av200_ultimate_defconfig b/br-ext-chip-hisilicon/configs/hi3516av200_ultimate_defconfig index 6be121e9..51c62bbd 100644 --- a/br-ext-chip-hisilicon/configs/hi3516av200_ultimate_defconfig +++ b/br-ext-chip-hisilicon/configs/hi3516av200_ultimate_defconfig @@ -35,6 +35,7 @@ BR2_OPENIPC_SOC_VENDOR="hisilicon" BR2_OPENIPC_SOC_MODEL="hi3516av200" BR2_OPENIPC_SOC_FAMILY="hi3519v101" BR2_OPENIPC_FLAVOR="ultimate" +BR2_OPENIPC_FLASH_SIZE="16" # Filesystem # BR2_TARGET_TZ_INFO is not set diff --git a/br-ext-chip-hisilicon/configs/hi3516av300_lite_defconfig b/br-ext-chip-hisilicon/configs/hi3516av300_lite_defconfig index c0f1fbc1..b495a787 100644 --- a/br-ext-chip-hisilicon/configs/hi3516av300_lite_defconfig +++ b/br-ext-chip-hisilicon/configs/hi3516av300_lite_defconfig @@ -33,6 +33,7 @@ BR2_OPENIPC_SOC_VENDOR="hisilicon" BR2_OPENIPC_SOC_MODEL="hi3516av300" BR2_OPENIPC_SOC_FAMILY="hi3516cv500" BR2_OPENIPC_FLAVOR="lite" +BR2_OPENIPC_FLASH_SIZE="16" # Filesystem # BR2_TARGET_TZ_INFO is not set diff --git a/br-ext-chip-hisilicon/configs/hi3516cv100_lite_defconfig b/br-ext-chip-hisilicon/configs/hi3516cv100_lite_defconfig index 0e6f8fe7..fe7d23b5 100644 --- a/br-ext-chip-hisilicon/configs/hi3516cv100_lite_defconfig +++ b/br-ext-chip-hisilicon/configs/hi3516cv100_lite_defconfig @@ -33,6 +33,7 @@ BR2_OPENIPC_SOC_VENDOR="hisilicon" BR2_OPENIPC_SOC_MODEL="hi3516cv100" BR2_OPENIPC_SOC_FAMILY="hi3516cv100" BR2_OPENIPC_FLAVOR="lite" +BR2_OPENIPC_FLASH_SIZE="8" # Filesystem # BR2_TARGET_TZ_INFO is not set diff --git a/br-ext-chip-hisilicon/configs/hi3516cv200_lite_defconfig b/br-ext-chip-hisilicon/configs/hi3516cv200_lite_defconfig index 82c2fb8f..6565dacb 100644 --- a/br-ext-chip-hisilicon/configs/hi3516cv200_lite_defconfig +++ b/br-ext-chip-hisilicon/configs/hi3516cv200_lite_defconfig @@ -34,6 +34,7 @@ BR2_OPENIPC_SOC_VENDOR="hisilicon" BR2_OPENIPC_SOC_MODEL="hi3516cv200" BR2_OPENIPC_SOC_FAMILY="hi3516cv200" BR2_OPENIPC_FLAVOR="lite" +BR2_OPENIPC_FLASH_SIZE="8" # Filesystem # BR2_TARGET_TZ_INFO is not set diff --git a/br-ext-chip-hisilicon/configs/hi3516cv300_lite_defconfig b/br-ext-chip-hisilicon/configs/hi3516cv300_lite_defconfig index 7a08d782..6f033cbd 100644 --- a/br-ext-chip-hisilicon/configs/hi3516cv300_lite_defconfig +++ b/br-ext-chip-hisilicon/configs/hi3516cv300_lite_defconfig @@ -34,6 +34,7 @@ BR2_OPENIPC_SOC_VENDOR="hisilicon" BR2_OPENIPC_SOC_MODEL="hi3516cv300" BR2_OPENIPC_SOC_FAMILY="hi3516cv300" BR2_OPENIPC_FLAVOR="lite" +BR2_OPENIPC_FLASH_SIZE="8" # Filesystem # BR2_TARGET_TZ_INFO is not set diff --git a/br-ext-chip-hisilicon/configs/hi3516cv300_mini_defconfig b/br-ext-chip-hisilicon/configs/hi3516cv300_mini_defconfig index 00e6fd1f..bb93b07d 100644 --- a/br-ext-chip-hisilicon/configs/hi3516cv300_mini_defconfig +++ b/br-ext-chip-hisilicon/configs/hi3516cv300_mini_defconfig @@ -34,6 +34,7 @@ BR2_OPENIPC_SOC_VENDOR="hisilicon" BR2_OPENIPC_SOC_MODEL="hi3516cv300" BR2_OPENIPC_SOC_FAMILY="hi3516cv300" BR2_OPENIPC_FLAVOR="mini" +BR2_OPENIPC_FLASH_SIZE="8" # Filesystem # BR2_TARGET_TZ_INFO is not set diff --git a/br-ext-chip-hisilicon/configs/hi3516cv300_ultimate_defconfig b/br-ext-chip-hisilicon/configs/hi3516cv300_ultimate_defconfig index ebc509dd..3bcc61b2 100644 --- a/br-ext-chip-hisilicon/configs/hi3516cv300_ultimate_defconfig +++ b/br-ext-chip-hisilicon/configs/hi3516cv300_ultimate_defconfig @@ -34,6 +34,7 @@ BR2_OPENIPC_SOC_VENDOR="hisilicon" BR2_OPENIPC_SOC_MODEL="hi3516cv300" BR2_OPENIPC_SOC_FAMILY="hi3516cv300" BR2_OPENIPC_FLAVOR="ultimate" +BR2_OPENIPC_FLASH_SIZE="16" # Filesystem # BR2_TARGET_TZ_INFO is not set diff --git a/br-ext-chip-hisilicon/configs/hi3516cv500_lite_defconfig b/br-ext-chip-hisilicon/configs/hi3516cv500_lite_defconfig index e0ad63cb..94f6954e 100644 --- a/br-ext-chip-hisilicon/configs/hi3516cv500_lite_defconfig +++ b/br-ext-chip-hisilicon/configs/hi3516cv500_lite_defconfig @@ -32,6 +32,7 @@ BR2_OPENIPC_SOC_VENDOR="hisilicon" BR2_OPENIPC_SOC_MODEL="hi3516cv500" BR2_OPENIPC_SOC_FAMILY="hi3516cv500" BR2_OPENIPC_FLAVOR="lite" +BR2_OPENIPC_FLASH_SIZE="16" # Filesystem # BR2_TARGET_TZ_INFO is not set diff --git a/br-ext-chip-hisilicon/configs/hi3516dv100_lite_defconfig b/br-ext-chip-hisilicon/configs/hi3516dv100_lite_defconfig index 91038a17..99b3a981 100644 --- a/br-ext-chip-hisilicon/configs/hi3516dv100_lite_defconfig +++ b/br-ext-chip-hisilicon/configs/hi3516dv100_lite_defconfig @@ -35,6 +35,7 @@ BR2_OPENIPC_SOC_VENDOR="hisilicon" BR2_OPENIPC_SOC_MODEL="hi3516dv100" BR2_OPENIPC_SOC_FAMILY="hi3516av100" BR2_OPENIPC_FLAVOR="lite" +BR2_OPENIPC_FLASH_SIZE="8" # Filesystem # BR2_TARGET_TZ_INFO is not set diff --git a/br-ext-chip-hisilicon/configs/hi3516dv100_ultimate_defconfig b/br-ext-chip-hisilicon/configs/hi3516dv100_ultimate_defconfig index fc3adc3d..502e235f 100644 --- a/br-ext-chip-hisilicon/configs/hi3516dv100_ultimate_defconfig +++ b/br-ext-chip-hisilicon/configs/hi3516dv100_ultimate_defconfig @@ -35,6 +35,7 @@ BR2_OPENIPC_SOC_VENDOR="hisilicon" BR2_OPENIPC_SOC_MODEL="hi3516dv100" BR2_OPENIPC_SOC_FAMILY="hi3516av100" BR2_OPENIPC_FLAVOR="ultimate" +BR2_OPENIPC_FLASH_SIZE="16" # Filesystem # BR2_TARGET_TZ_INFO is not set diff --git a/br-ext-chip-hisilicon/configs/hi3516dv200_lite_defconfig b/br-ext-chip-hisilicon/configs/hi3516dv200_lite_defconfig index ef057510..febf707a 100644 --- a/br-ext-chip-hisilicon/configs/hi3516dv200_lite_defconfig +++ b/br-ext-chip-hisilicon/configs/hi3516dv200_lite_defconfig @@ -35,6 +35,7 @@ BR2_OPENIPC_SOC_VENDOR="hisilicon" BR2_OPENIPC_SOC_MODEL="hi3516dv200" BR2_OPENIPC_SOC_FAMILY="hi3516ev200" BR2_OPENIPC_FLAVOR="lite" +BR2_OPENIPC_FLASH_SIZE="8" # Filesystem # BR2_TARGET_TZ_INFO is not set diff --git a/br-ext-chip-hisilicon/configs/hi3516dv300_lite_defconfig b/br-ext-chip-hisilicon/configs/hi3516dv300_lite_defconfig index 8058b086..198561a6 100644 --- a/br-ext-chip-hisilicon/configs/hi3516dv300_lite_defconfig +++ b/br-ext-chip-hisilicon/configs/hi3516dv300_lite_defconfig @@ -32,6 +32,7 @@ BR2_OPENIPC_SOC_VENDOR="hisilicon" BR2_OPENIPC_SOC_MODEL="hi3516dv300" BR2_OPENIPC_SOC_FAMILY="hi3516cv500" BR2_OPENIPC_FLAVOR="lite" +BR2_OPENIPC_FLASH_SIZE="16" # Filesystem # BR2_TARGET_TZ_INFO is not set diff --git a/br-ext-chip-hisilicon/configs/hi3516ev100_lite_defconfig b/br-ext-chip-hisilicon/configs/hi3516ev100_lite_defconfig index 01c03556..4d004411 100644 --- a/br-ext-chip-hisilicon/configs/hi3516ev100_lite_defconfig +++ b/br-ext-chip-hisilicon/configs/hi3516ev100_lite_defconfig @@ -34,6 +34,7 @@ BR2_OPENIPC_SOC_VENDOR="hisilicon" BR2_OPENIPC_SOC_MODEL="hi3516ev100" BR2_OPENIPC_SOC_FAMILY="hi3516cv300" BR2_OPENIPC_FLAVOR="lite" +BR2_OPENIPC_FLASH_SIZE="8" # Filesystem # BR2_TARGET_TZ_INFO is not set diff --git a/br-ext-chip-hisilicon/configs/hi3516ev200_fpv_defconfig b/br-ext-chip-hisilicon/configs/hi3516ev200_fpv_defconfig index c20fe3c8..f95ab295 100644 --- a/br-ext-chip-hisilicon/configs/hi3516ev200_fpv_defconfig +++ b/br-ext-chip-hisilicon/configs/hi3516ev200_fpv_defconfig @@ -35,6 +35,7 @@ BR2_OPENIPC_SOC_VENDOR="hisilicon" BR2_OPENIPC_SOC_MODEL="hi3516ev200" BR2_OPENIPC_SOC_FAMILY="hi3516ev200" BR2_OPENIPC_FLAVOR="fpv" +BR2_OPENIPC_FLASH_SIZE="8" # Filesystem # BR2_TARGET_TZ_INFO is not set diff --git a/br-ext-chip-hisilicon/configs/hi3516ev200_lite_defconfig b/br-ext-chip-hisilicon/configs/hi3516ev200_lite_defconfig index 146e7c4f..7fd6c816 100644 --- a/br-ext-chip-hisilicon/configs/hi3516ev200_lite_defconfig +++ b/br-ext-chip-hisilicon/configs/hi3516ev200_lite_defconfig @@ -35,6 +35,7 @@ BR2_OPENIPC_SOC_VENDOR="hisilicon" BR2_OPENIPC_SOC_MODEL="hi3516ev200" BR2_OPENIPC_SOC_FAMILY="hi3516ev200" BR2_OPENIPC_FLAVOR="lite" +BR2_OPENIPC_FLASH_SIZE="8" # Filesystem # BR2_TARGET_TZ_INFO is not set diff --git a/br-ext-chip-hisilicon/configs/hi3516ev200_lte_defconfig b/br-ext-chip-hisilicon/configs/hi3516ev200_lte_defconfig index 10571813..5551e754 100644 --- a/br-ext-chip-hisilicon/configs/hi3516ev200_lte_defconfig +++ b/br-ext-chip-hisilicon/configs/hi3516ev200_lte_defconfig @@ -35,6 +35,7 @@ BR2_OPENIPC_SOC_VENDOR="hisilicon" BR2_OPENIPC_SOC_MODEL="hi3516ev200" BR2_OPENIPC_SOC_FAMILY="hi3516ev200" BR2_OPENIPC_FLAVOR="lte" +BR2_OPENIPC_FLASH_SIZE="8" # Filesystem # BR2_TARGET_TZ_INFO is not set diff --git a/br-ext-chip-hisilicon/configs/hi3516ev200_ultimate_defconfig b/br-ext-chip-hisilicon/configs/hi3516ev200_ultimate_defconfig index 172091a9..1c7da2c5 100644 --- a/br-ext-chip-hisilicon/configs/hi3516ev200_ultimate_defconfig +++ b/br-ext-chip-hisilicon/configs/hi3516ev200_ultimate_defconfig @@ -35,6 +35,7 @@ BR2_OPENIPC_SOC_VENDOR="hisilicon" BR2_OPENIPC_SOC_MODEL="hi3516ev200" BR2_OPENIPC_SOC_FAMILY="hi3516ev200" BR2_OPENIPC_FLAVOR="ultimate" +BR2_OPENIPC_FLASH_SIZE="16" # Filesystem # BR2_TARGET_TZ_INFO is not set diff --git a/br-ext-chip-hisilicon/configs/hi3516ev300_dev_defconfig b/br-ext-chip-hisilicon/configs/hi3516ev300_dev_defconfig index 9b9d7d50..bd062bd4 100644 --- a/br-ext-chip-hisilicon/configs/hi3516ev300_dev_defconfig +++ b/br-ext-chip-hisilicon/configs/hi3516ev300_dev_defconfig @@ -35,6 +35,7 @@ BR2_OPENIPC_SOC_VENDOR="hisilicon" BR2_OPENIPC_SOC_MODEL="hi3516ev300" BR2_OPENIPC_SOC_FAMILY="hi3516ev200" BR2_OPENIPC_FLAVOR="dev" +BR2_OPENIPC_FLASH_SIZE="8" # Filesystem # BR2_TARGET_TZ_INFO is not set diff --git a/br-ext-chip-hisilicon/configs/hi3516ev300_fpv_defconfig b/br-ext-chip-hisilicon/configs/hi3516ev300_fpv_defconfig index 90e99f47..37116890 100644 --- a/br-ext-chip-hisilicon/configs/hi3516ev300_fpv_defconfig +++ b/br-ext-chip-hisilicon/configs/hi3516ev300_fpv_defconfig @@ -35,6 +35,7 @@ BR2_OPENIPC_SOC_VENDOR="hisilicon" BR2_OPENIPC_SOC_MODEL="hi3516ev300" BR2_OPENIPC_SOC_FAMILY="hi3516ev200" BR2_OPENIPC_FLAVOR="fpv" +BR2_OPENIPC_FLASH_SIZE="8" # Filesystem # BR2_TARGET_TZ_INFO is not set diff --git a/br-ext-chip-hisilicon/configs/hi3516ev300_glibc_defconfig b/br-ext-chip-hisilicon/configs/hi3516ev300_glibc_defconfig index 6e392179..78f74ba3 100644 --- a/br-ext-chip-hisilicon/configs/hi3516ev300_glibc_defconfig +++ b/br-ext-chip-hisilicon/configs/hi3516ev300_glibc_defconfig @@ -38,6 +38,7 @@ BR2_OPENIPC_SOC_VENDOR="hisilicon" BR2_OPENIPC_SOC_MODEL="hi3516ev300" BR2_OPENIPC_SOC_FAMILY="hi3516ev200" BR2_OPENIPC_FLAVOR="glibc" +BR2_OPENIPC_FLASH_SIZE="8" # Filesystem # BR2_TARGET_TZ_INFO is not set diff --git a/br-ext-chip-hisilicon/configs/hi3516ev300_lite_defconfig b/br-ext-chip-hisilicon/configs/hi3516ev300_lite_defconfig index f8e6fc58..91aea19a 100644 --- a/br-ext-chip-hisilicon/configs/hi3516ev300_lite_defconfig +++ b/br-ext-chip-hisilicon/configs/hi3516ev300_lite_defconfig @@ -35,6 +35,7 @@ BR2_OPENIPC_SOC_VENDOR="hisilicon" BR2_OPENIPC_SOC_MODEL="hi3516ev300" BR2_OPENIPC_SOC_FAMILY="hi3516ev200" BR2_OPENIPC_FLAVOR="lite" +BR2_OPENIPC_FLASH_SIZE="8" # Filesystem # BR2_TARGET_TZ_INFO is not set diff --git a/br-ext-chip-hisilicon/configs/hi3516ev300_lte_defconfig b/br-ext-chip-hisilicon/configs/hi3516ev300_lte_defconfig index 5ee4adb8..dfbc30f6 100644 --- a/br-ext-chip-hisilicon/configs/hi3516ev300_lte_defconfig +++ b/br-ext-chip-hisilicon/configs/hi3516ev300_lte_defconfig @@ -35,6 +35,7 @@ BR2_OPENIPC_SOC_VENDOR="hisilicon" BR2_OPENIPC_SOC_MODEL="hi3516ev300" BR2_OPENIPC_SOC_FAMILY="hi3516ev200" BR2_OPENIPC_FLAVOR="lte" +BR2_OPENIPC_FLASH_SIZE="8" # Filesystem # BR2_TARGET_TZ_INFO is not set diff --git a/br-ext-chip-hisilicon/configs/hi3516ev300_ultimate_defconfig b/br-ext-chip-hisilicon/configs/hi3516ev300_ultimate_defconfig index 279db46d..e07f1e4a 100644 --- a/br-ext-chip-hisilicon/configs/hi3516ev300_ultimate_defconfig +++ b/br-ext-chip-hisilicon/configs/hi3516ev300_ultimate_defconfig @@ -35,6 +35,7 @@ BR2_OPENIPC_SOC_VENDOR="hisilicon" BR2_OPENIPC_SOC_MODEL="hi3516ev300" BR2_OPENIPC_SOC_FAMILY="hi3516ev200" BR2_OPENIPC_FLAVOR="ultimate" +BR2_OPENIPC_FLASH_SIZE="16" # Filesystem # BR2_TARGET_TZ_INFO is not set diff --git a/br-ext-chip-hisilicon/configs/hi3518cv100_lite_defconfig b/br-ext-chip-hisilicon/configs/hi3518cv100_lite_defconfig index 1e641726..4af40296 100644 --- a/br-ext-chip-hisilicon/configs/hi3518cv100_lite_defconfig +++ b/br-ext-chip-hisilicon/configs/hi3518cv100_lite_defconfig @@ -33,6 +33,7 @@ BR2_OPENIPC_SOC_VENDOR="hisilicon" BR2_OPENIPC_SOC_MODEL="hi3518cv100" BR2_OPENIPC_SOC_FAMILY="hi3516cv100" BR2_OPENIPC_FLAVOR="lite" +BR2_OPENIPC_FLASH_SIZE="8" # Filesystem # BR2_TARGET_TZ_INFO is not set diff --git a/br-ext-chip-hisilicon/configs/hi3518ev100_lite_defconfig b/br-ext-chip-hisilicon/configs/hi3518ev100_lite_defconfig index 9c98efbd..f217e306 100644 --- a/br-ext-chip-hisilicon/configs/hi3518ev100_lite_defconfig +++ b/br-ext-chip-hisilicon/configs/hi3518ev100_lite_defconfig @@ -33,6 +33,7 @@ BR2_OPENIPC_SOC_VENDOR="hisilicon" BR2_OPENIPC_SOC_MODEL="hi3518ev100" BR2_OPENIPC_SOC_FAMILY="hi3516cv100" BR2_OPENIPC_FLAVOR="lite" +BR2_OPENIPC_FLASH_SIZE="8" # Filesystem # BR2_TARGET_TZ_INFO is not set diff --git a/br-ext-chip-hisilicon/configs/hi3518ev200_lite_defconfig b/br-ext-chip-hisilicon/configs/hi3518ev200_lite_defconfig index 4e88967b..a04cd091 100644 --- a/br-ext-chip-hisilicon/configs/hi3518ev200_lite_defconfig +++ b/br-ext-chip-hisilicon/configs/hi3518ev200_lite_defconfig @@ -34,6 +34,7 @@ BR2_OPENIPC_SOC_VENDOR="hisilicon" BR2_OPENIPC_SOC_MODEL="hi3518ev200" BR2_OPENIPC_SOC_FAMILY="hi3516cv200" BR2_OPENIPC_FLAVOR="lite" +BR2_OPENIPC_FLASH_SIZE="8" # Filesystem # BR2_TARGET_TZ_INFO is not set diff --git a/br-ext-chip-hisilicon/configs/hi3518ev200_mini_defconfig b/br-ext-chip-hisilicon/configs/hi3518ev200_mini_defconfig index 1bf982ce..c0c2441a 100644 --- a/br-ext-chip-hisilicon/configs/hi3518ev200_mini_defconfig +++ b/br-ext-chip-hisilicon/configs/hi3518ev200_mini_defconfig @@ -34,6 +34,7 @@ BR2_OPENIPC_SOC_VENDOR="hisilicon" BR2_OPENIPC_SOC_MODEL="hi3518ev200" BR2_OPENIPC_SOC_FAMILY="hi3516cv200" BR2_OPENIPC_FLAVOR="mini" +BR2_OPENIPC_FLASH_SIZE="8" # Filesystem # BR2_TARGET_TZ_INFO is not set @@ -108,7 +109,7 @@ BR2_PACKAGE_MOSQUITTO=y # BR2_PACKAGE_MOSQUITTO_BROKER is not set # FEATURES -BR2_PACKAGE_COMGT is not set +# BR2_PACKAGE_COMGT is not set # DEBUG # BR2_PACKAGE_HOST_GDB is not set diff --git a/br-ext-chip-hisilicon/configs/hi3518ev200_ultimate_defconfig b/br-ext-chip-hisilicon/configs/hi3518ev200_ultimate_defconfig index 368d8f98..27a4806c 100644 --- a/br-ext-chip-hisilicon/configs/hi3518ev200_ultimate_defconfig +++ b/br-ext-chip-hisilicon/configs/hi3518ev200_ultimate_defconfig @@ -34,6 +34,7 @@ BR2_OPENIPC_SOC_VENDOR="hisilicon" BR2_OPENIPC_SOC_MODEL="hi3518ev200" BR2_OPENIPC_SOC_FAMILY="hi3516cv200" BR2_OPENIPC_FLAVOR="ultimate" +BR2_OPENIPC_FLASH_SIZE="16" # Filesystem # BR2_TARGET_TZ_INFO is not set diff --git a/br-ext-chip-hisilicon/configs/hi3518ev201_lite_defconfig b/br-ext-chip-hisilicon/configs/hi3518ev201_lite_defconfig index 35297c62..b62fdaa4 100644 --- a/br-ext-chip-hisilicon/configs/hi3518ev201_lite_defconfig +++ b/br-ext-chip-hisilicon/configs/hi3518ev201_lite_defconfig @@ -34,6 +34,7 @@ BR2_OPENIPC_SOC_VENDOR="hisilicon" BR2_OPENIPC_SOC_MODEL="hi3518ev201" BR2_OPENIPC_SOC_FAMILY="hi3516cv200" BR2_OPENIPC_FLAVOR="lite" +BR2_OPENIPC_FLASH_SIZE="8" # Filesystem # BR2_TARGET_TZ_INFO is not set diff --git a/br-ext-chip-hisilicon/configs/hi3518ev300_lite_defconfig b/br-ext-chip-hisilicon/configs/hi3518ev300_lite_defconfig index 72ebab43..023273af 100644 --- a/br-ext-chip-hisilicon/configs/hi3518ev300_lite_defconfig +++ b/br-ext-chip-hisilicon/configs/hi3518ev300_lite_defconfig @@ -35,6 +35,7 @@ BR2_OPENIPC_SOC_VENDOR="hisilicon" BR2_OPENIPC_SOC_MODEL="hi3518ev300" BR2_OPENIPC_SOC_FAMILY="hi3516ev200" BR2_OPENIPC_FLAVOR="lite" +BR2_OPENIPC_FLASH_SIZE="8" # Filesystem # BR2_TARGET_TZ_INFO is not set diff --git a/br-ext-chip-hisilicon/configs/hi3518ev300_ultimate_defconfig b/br-ext-chip-hisilicon/configs/hi3518ev300_ultimate_defconfig index a6498b4d..c5a88216 100644 --- a/br-ext-chip-hisilicon/configs/hi3518ev300_ultimate_defconfig +++ b/br-ext-chip-hisilicon/configs/hi3518ev300_ultimate_defconfig @@ -35,6 +35,7 @@ BR2_OPENIPC_SOC_VENDOR="hisilicon" BR2_OPENIPC_SOC_MODEL="hi3518ev300" BR2_OPENIPC_SOC_FAMILY="hi3516ev200" BR2_OPENIPC_FLAVOR="ultimate" +BR2_OPENIPC_FLASH_SIZE="16" # Filesystem # BR2_TARGET_TZ_INFO is not set diff --git a/br-ext-chip-hisilicon/configs/hi3519v101_lite_defconfig b/br-ext-chip-hisilicon/configs/hi3519v101_lite_defconfig index 6828e19a..eebffe8e 100644 --- a/br-ext-chip-hisilicon/configs/hi3519v101_lite_defconfig +++ b/br-ext-chip-hisilicon/configs/hi3519v101_lite_defconfig @@ -35,6 +35,7 @@ BR2_OPENIPC_SOC_VENDOR="hisilicon" BR2_OPENIPC_SOC_MODEL="hi3519v101" BR2_OPENIPC_SOC_FAMILY="hi3519v101" BR2_OPENIPC_FLAVOR="lite" +BR2_OPENIPC_FLASH_SIZE="8" # Filesystem # BR2_TARGET_TZ_INFO is not set diff --git a/br-ext-chip-hisilicon/configs/hi3520dv200_lite_defconfig b/br-ext-chip-hisilicon/configs/hi3520dv200_lite_defconfig index 65287789..009d5013 100644 --- a/br-ext-chip-hisilicon/configs/hi3520dv200_lite_defconfig +++ b/br-ext-chip-hisilicon/configs/hi3520dv200_lite_defconfig @@ -36,6 +36,7 @@ BR2_OPENIPC_SOC_VENDOR="hisilicon" BR2_OPENIPC_SOC_MODEL="hi3520dv200" BR2_OPENIPC_SOC_FAMILY="hi3520dv200" BR2_OPENIPC_FLAVOR="lite" +BR2_OPENIPC_FLASH_SIZE="8" # Filesystem # BR2_TARGET_TZ_INFO is not set diff --git a/br-ext-chip-hisilicon/configs/hi3536cv100_lite_defconfig b/br-ext-chip-hisilicon/configs/hi3536cv100_lite_defconfig index ade32cb6..9bd0aee3 100644 --- a/br-ext-chip-hisilicon/configs/hi3536cv100_lite_defconfig +++ b/br-ext-chip-hisilicon/configs/hi3536cv100_lite_defconfig @@ -36,6 +36,7 @@ BR2_OPENIPC_SOC_VENDOR="hisilicon" BR2_OPENIPC_SOC_MODEL="hi3536cv100" BR2_OPENIPC_SOC_FAMILY="hi3536cv100" BR2_OPENIPC_FLAVOR="lite" +BR2_OPENIPC_FLASH_SIZE="8" # Filesystem # BR2_TARGET_TZ_INFO is not set diff --git a/br-ext-chip-hisilicon/configs/hi3536dv100_fpv_defconfig b/br-ext-chip-hisilicon/configs/hi3536dv100_fpv_defconfig index 64917b0e..ba0951c6 100644 --- a/br-ext-chip-hisilicon/configs/hi3536dv100_fpv_defconfig +++ b/br-ext-chip-hisilicon/configs/hi3536dv100_fpv_defconfig @@ -43,6 +43,7 @@ BR2_OPENIPC_SOC_VENDOR="hisilicon" BR2_OPENIPC_SOC_MODEL="hi3536dv100" BR2_OPENIPC_SOC_FAMILY="hi3536dv100" BR2_OPENIPC_FLAVOR="fpv" +BR2_OPENIPC_FLASH_SIZE="8" # Filesystem # BR2_TARGET_TZ_INFO is not set diff --git a/br-ext-chip-hisilicon/configs/hi3536dv100_lite_defconfig b/br-ext-chip-hisilicon/configs/hi3536dv100_lite_defconfig index cf678d95..ed1b706d 100644 --- a/br-ext-chip-hisilicon/configs/hi3536dv100_lite_defconfig +++ b/br-ext-chip-hisilicon/configs/hi3536dv100_lite_defconfig @@ -36,6 +36,7 @@ BR2_OPENIPC_SOC_VENDOR="hisilicon" BR2_OPENIPC_SOC_MODEL="hi3536dv100" BR2_OPENIPC_SOC_FAMILY="hi3536dv100" BR2_OPENIPC_FLAVOR="lite" +BR2_OPENIPC_FLASH_SIZE="8" # Filesystem # BR2_TARGET_TZ_INFO is not set diff --git a/br-ext-chip-ingenic/configs/t10_lite_defconfig b/br-ext-chip-ingenic/configs/t10_lite_defconfig index c03fff6f..1bc98245 100644 --- a/br-ext-chip-ingenic/configs/t10_lite_defconfig +++ b/br-ext-chip-ingenic/configs/t10_lite_defconfig @@ -38,6 +38,7 @@ BR2_OPENIPC_SOC_VENDOR="ingenic" BR2_OPENIPC_SOC_MODEL="t10" BR2_OPENIPC_SOC_FAMILY="t31" BR2_OPENIPC_FLAVOR="lite" +BR2_OPENIPC_FLASH_SIZE="8" # Filesystem # BR2_TARGET_TZ_INFO is not set diff --git a/br-ext-chip-ingenic/configs/t20_lite_defconfig b/br-ext-chip-ingenic/configs/t20_lite_defconfig index 8e4b9b75..9223f209 100644 --- a/br-ext-chip-ingenic/configs/t20_lite_defconfig +++ b/br-ext-chip-ingenic/configs/t20_lite_defconfig @@ -38,6 +38,7 @@ BR2_OPENIPC_SOC_VENDOR="ingenic" BR2_OPENIPC_SOC_MODEL="t20" BR2_OPENIPC_SOC_FAMILY="t31" BR2_OPENIPC_FLAVOR="lite" +BR2_OPENIPC_FLASH_SIZE="8" # Filesystem # BR2_TARGET_TZ_INFO is not set diff --git a/br-ext-chip-ingenic/configs/t21_lite_defconfig b/br-ext-chip-ingenic/configs/t21_lite_defconfig index 58a5c38f..766b441c 100644 --- a/br-ext-chip-ingenic/configs/t21_lite_defconfig +++ b/br-ext-chip-ingenic/configs/t21_lite_defconfig @@ -38,6 +38,7 @@ BR2_OPENIPC_SOC_VENDOR="ingenic" BR2_OPENIPC_SOC_MODEL="t21" BR2_OPENIPC_SOC_FAMILY="t31" BR2_OPENIPC_FLAVOR="lite" +BR2_OPENIPC_FLASH_SIZE="8" # Filesystem # BR2_TARGET_TZ_INFO is not set diff --git a/br-ext-chip-ingenic/configs/t30_lite_defconfig b/br-ext-chip-ingenic/configs/t30_lite_defconfig index 9a6c84b9..c2a10ff3 100644 --- a/br-ext-chip-ingenic/configs/t30_lite_defconfig +++ b/br-ext-chip-ingenic/configs/t30_lite_defconfig @@ -38,6 +38,7 @@ BR2_OPENIPC_SOC_VENDOR="ingenic" BR2_OPENIPC_SOC_MODEL="t30" BR2_OPENIPC_SOC_FAMILY="t31" BR2_OPENIPC_FLAVOR="lite" +BR2_OPENIPC_FLASH_SIZE="8" # Filesystem # BR2_TARGET_TZ_INFO is not set diff --git a/br-ext-chip-ingenic/configs/t31_fpv_defconfig b/br-ext-chip-ingenic/configs/t31_fpv_defconfig index 40cf95de..43e8452e 100644 --- a/br-ext-chip-ingenic/configs/t31_fpv_defconfig +++ b/br-ext-chip-ingenic/configs/t31_fpv_defconfig @@ -38,6 +38,7 @@ BR2_OPENIPC_SOC_VENDOR="ingenic" BR2_OPENIPC_SOC_MODEL="t31" BR2_OPENIPC_SOC_FAMILY="t31" BR2_OPENIPC_FLAVOR="fpv" +BR2_OPENIPC_FLASH_SIZE="8" # Filesystem # BR2_TARGET_TZ_INFO is not set diff --git a/br-ext-chip-ingenic/configs/t31_lite_defconfig b/br-ext-chip-ingenic/configs/t31_lite_defconfig index 5f5352e8..c8b7752b 100644 --- a/br-ext-chip-ingenic/configs/t31_lite_defconfig +++ b/br-ext-chip-ingenic/configs/t31_lite_defconfig @@ -38,6 +38,7 @@ BR2_OPENIPC_SOC_VENDOR="ingenic" BR2_OPENIPC_SOC_MODEL="t31" BR2_OPENIPC_SOC_FAMILY="t31" BR2_OPENIPC_FLAVOR="lite" +BR2_OPENIPC_FLASH_SIZE="8" # Filesystem # BR2_TARGET_TZ_INFO is not set diff --git a/br-ext-chip-ingenic/configs/t31_ultimate_defconfig b/br-ext-chip-ingenic/configs/t31_ultimate_defconfig index f77f8dfb..a9af4f3b 100644 --- a/br-ext-chip-ingenic/configs/t31_ultimate_defconfig +++ b/br-ext-chip-ingenic/configs/t31_ultimate_defconfig @@ -38,6 +38,7 @@ BR2_OPENIPC_SOC_VENDOR="ingenic" BR2_OPENIPC_SOC_MODEL="t31" BR2_OPENIPC_SOC_FAMILY="t31" BR2_OPENIPC_FLAVOR="ultimate" +BR2_OPENIPC_FLASH_SIZE="16" # Filesystem # BR2_TARGET_TZ_INFO is not set diff --git a/br-ext-chip-ingenic/configs/t40_lite_defconfig b/br-ext-chip-ingenic/configs/t40_lite_defconfig index f04c3eb4..1fb2cb1c 100644 --- a/br-ext-chip-ingenic/configs/t40_lite_defconfig +++ b/br-ext-chip-ingenic/configs/t40_lite_defconfig @@ -38,6 +38,7 @@ BR2_OPENIPC_SOC_VENDOR="ingenic" BR2_OPENIPC_SOC_MODEL="t40" BR2_OPENIPC_SOC_FAMILY="t40" BR2_OPENIPC_FLAVOR="lite" +BR2_OPENIPC_FLASH_SIZE="8" # Filesystem # BR2_TARGET_TZ_INFO is not set diff --git a/br-ext-chip-ingenic/configs/t40_ultimate_defconfig b/br-ext-chip-ingenic/configs/t40_ultimate_defconfig index d2620ba7..8fb4033c 100644 --- a/br-ext-chip-ingenic/configs/t40_ultimate_defconfig +++ b/br-ext-chip-ingenic/configs/t40_ultimate_defconfig @@ -38,6 +38,7 @@ BR2_OPENIPC_SOC_VENDOR="ingenic" BR2_OPENIPC_SOC_MODEL="t40" BR2_OPENIPC_SOC_FAMILY="t40" BR2_OPENIPC_FLAVOR="ultimate" +BR2_OPENIPC_FLASH_SIZE="16" # Filesystem # BR2_TARGET_TZ_INFO is not set diff --git a/br-ext-chip-novatek/configs/nt98562_lite_defconfig b/br-ext-chip-novatek/configs/nt98562_lite_defconfig index d9770db0..921a4cb4 100644 --- a/br-ext-chip-novatek/configs/nt98562_lite_defconfig +++ b/br-ext-chip-novatek/configs/nt98562_lite_defconfig @@ -38,6 +38,7 @@ BR2_OPENIPC_SOC_VENDOR="novatek" BR2_OPENIPC_SOC_MODEL="nt98562" BR2_OPENIPC_SOC_FAMILY="nt9856x" BR2_OPENIPC_FLAVOR="lite" +BR2_OPENIPC_FLASH_SIZE="8" # Filesystem # BR2_TARGET_TZ_INFO is not set diff --git a/br-ext-chip-novatek/configs/nt98566_lite_defconfig b/br-ext-chip-novatek/configs/nt98566_lite_defconfig index aac4f5ab..46a0015a 100644 --- a/br-ext-chip-novatek/configs/nt98566_lite_defconfig +++ b/br-ext-chip-novatek/configs/nt98566_lite_defconfig @@ -37,6 +37,7 @@ BR2_OPENIPC_SOC_VENDOR="novatek" BR2_OPENIPC_SOC_MODEL="nt98566" BR2_OPENIPC_SOC_FAMILY="nt9856x" BR2_OPENIPC_FLAVOR="lite" +BR2_OPENIPC_FLASH_SIZE="8" # Filesystem # BR2_TARGET_TZ_INFO is not set diff --git a/br-ext-chip-rockchip/configs/rv1109_lite_defconfig b/br-ext-chip-rockchip/configs/rv1109_lite_defconfig index 5adc85d6..c4e50d5c 100644 --- a/br-ext-chip-rockchip/configs/rv1109_lite_defconfig +++ b/br-ext-chip-rockchip/configs/rv1109_lite_defconfig @@ -44,12 +44,13 @@ BR2_OPENIPC_SOC_VENDOR="rockchip" BR2_OPENIPC_SOC_MODEL="rv1109" BR2_OPENIPC_SOC_FAMILY="rv11xx" BR2_OPENIPC_FLAVOR="lite" +BR2_OPENIPC_FLASH_SIZE="8" # Filesystem # BR2_TARGET_TZ_INFO is not set BR2_TARGET_ROOTFS_CPIO=y -BR2_TARGET_ROOTFS_SQUASHFS=y -BR2_TARGET_ROOTFS_SQUASHFS4_XZ=y +# BR2_TARGET_ROOTFS_SQUASHFS is not set +# BR2_TARGET_ROOTFS_SQUASHFS4_XZ is not set BR2_TARGET_ROOTFS_UBI=y BR2_TARGET_ROOTFS_UBI_SUBSIZE=2048 BR2_TARGET_ROOTFS_UBI_USE_CUSTOM_CONFIG=y diff --git a/br-ext-chip-rockchip/configs/rv1126_lite_defconfig b/br-ext-chip-rockchip/configs/rv1126_lite_defconfig index 5a1ed341..9fa5b654 100644 --- a/br-ext-chip-rockchip/configs/rv1126_lite_defconfig +++ b/br-ext-chip-rockchip/configs/rv1126_lite_defconfig @@ -43,12 +43,13 @@ BR2_OPENIPC_SOC_VENDOR="rockchip" BR2_OPENIPC_SOC_MODEL="rv1126" BR2_OPENIPC_SOC_FAMILY="rv11xx" BR2_OPENIPC_FLAVOR="lite" +BR2_OPENIPC_FLASH_SIZE="8" # Filesystem # BR2_TARGET_TZ_INFO is not set BR2_TARGET_ROOTFS_CPIO=y -BR2_TARGET_ROOTFS_SQUASHFS=y -BR2_TARGET_ROOTFS_SQUASHFS4_XZ=y +# BR2_TARGET_ROOTFS_SQUASHFS is not set +# BR2_TARGET_ROOTFS_SQUASHFS4_XZ is not set BR2_TARGET_ROOTFS_UBI=y BR2_TARGET_ROOTFS_UBI_SUBSIZE=2048 BR2_TARGET_ROOTFS_UBI_USE_CUSTOM_CONFIG=y diff --git a/br-ext-chip-sigmastar/configs/msc313e_lite_defconfig b/br-ext-chip-sigmastar/configs/msc313e_lite_defconfig index 9251320b..c67bbb86 100644 --- a/br-ext-chip-sigmastar/configs/msc313e_lite_defconfig +++ b/br-ext-chip-sigmastar/configs/msc313e_lite_defconfig @@ -35,6 +35,7 @@ BR2_OPENIPC_SOC_VENDOR="sigmastar" BR2_OPENIPC_SOC_MODEL="msc313e" BR2_OPENIPC_SOC_FAMILY="infinity3" BR2_OPENIPC_FLAVOR="lite" +BR2_OPENIPC_FLASH_SIZE="8" # Filesystem # BR2_TARGET_TZ_INFO is not set diff --git a/br-ext-chip-sigmastar/configs/msc316dc_lite_defconfig b/br-ext-chip-sigmastar/configs/msc316dc_lite_defconfig index 245754cd..958dfff7 100644 --- a/br-ext-chip-sigmastar/configs/msc316dc_lite_defconfig +++ b/br-ext-chip-sigmastar/configs/msc316dc_lite_defconfig @@ -38,6 +38,7 @@ BR2_OPENIPC_SOC_VENDOR="sigmastar" BR2_OPENIPC_SOC_MODEL="msc316dc" BR2_OPENIPC_SOC_FAMILY="infinity3" BR2_OPENIPC_FLAVOR="lite" +BR2_OPENIPC_FLASH_SIZE="8" # Filesystem # BR2_TARGET_TZ_INFO is not set diff --git a/br-ext-chip-sigmastar/configs/msc316dm_lite_defconfig b/br-ext-chip-sigmastar/configs/msc316dm_lite_defconfig index a902668e..10ae3709 100644 --- a/br-ext-chip-sigmastar/configs/msc316dm_lite_defconfig +++ b/br-ext-chip-sigmastar/configs/msc316dm_lite_defconfig @@ -35,6 +35,7 @@ BR2_OPENIPC_SOC_VENDOR="sigmastar" BR2_OPENIPC_SOC_MODEL="msc316dm" BR2_OPENIPC_SOC_FAMILY="infinity3" BR2_OPENIPC_FLAVOR="lite" +BR2_OPENIPC_FLASH_SIZE="8" # Filesystem # BR2_TARGET_TZ_INFO is not set diff --git a/br-ext-chip-sigmastar/configs/ssc325_lite_defconfig b/br-ext-chip-sigmastar/configs/ssc325_lite_defconfig index f7ffc23e..71a9393e 100644 --- a/br-ext-chip-sigmastar/configs/ssc325_lite_defconfig +++ b/br-ext-chip-sigmastar/configs/ssc325_lite_defconfig @@ -35,6 +35,7 @@ BR2_OPENIPC_SOC_VENDOR="sigmastar" BR2_OPENIPC_SOC_MODEL="ssc325" BR2_OPENIPC_SOC_FAMILY="infinity6b0" BR2_OPENIPC_FLAVOR="lite" +BR2_OPENIPC_FLASH_SIZE="8" # Filesystem # BR2_TARGET_TZ_INFO is not set diff --git a/br-ext-chip-sigmastar/configs/ssc333_lite_defconfig b/br-ext-chip-sigmastar/configs/ssc333_lite_defconfig index b3daa594..1be3b676 100644 --- a/br-ext-chip-sigmastar/configs/ssc333_lite_defconfig +++ b/br-ext-chip-sigmastar/configs/ssc333_lite_defconfig @@ -35,6 +35,7 @@ BR2_OPENIPC_SOC_VENDOR="sigmastar" BR2_OPENIPC_SOC_MODEL="ssc333" BR2_OPENIPC_SOC_FAMILY="infinity6b0" BR2_OPENIPC_FLAVOR="lite" +BR2_OPENIPC_FLASH_SIZE="8" # Filesystem # BR2_TARGET_TZ_INFO is not set diff --git a/br-ext-chip-sigmastar/configs/ssc335_initramfs_defconfig b/br-ext-chip-sigmastar/configs/ssc335_initramfs_defconfig index 7194c146..efa444ef 100644 --- a/br-ext-chip-sigmastar/configs/ssc335_initramfs_defconfig +++ b/br-ext-chip-sigmastar/configs/ssc335_initramfs_defconfig @@ -31,6 +31,7 @@ BR2_OPENIPC_SOC_VENDOR="sigmastar" BR2_OPENIPC_SOC_MODEL="ssc335" BR2_OPENIPC_SOC_FAMILY="infinity6b0" BR2_OPENIPC_FLAVOR="initramfs" +BR2_OPENIPC_FLASH_SIZE="8" # Filesystem BR2_TARGET_ROOTFS_INITRAMFS=y diff --git a/br-ext-chip-sigmastar/configs/ssc335_lite_defconfig b/br-ext-chip-sigmastar/configs/ssc335_lite_defconfig index 035ea249..586ff229 100644 --- a/br-ext-chip-sigmastar/configs/ssc335_lite_defconfig +++ b/br-ext-chip-sigmastar/configs/ssc335_lite_defconfig @@ -35,6 +35,7 @@ BR2_OPENIPC_SOC_VENDOR="sigmastar" BR2_OPENIPC_SOC_MODEL="ssc335" BR2_OPENIPC_SOC_FAMILY="infinity6b0" BR2_OPENIPC_FLAVOR="lite" +BR2_OPENIPC_FLASH_SIZE="8" # Filesystem # BR2_TARGET_TZ_INFO is not set diff --git a/br-ext-chip-sigmastar/configs/ssc335de_lite_defconfig b/br-ext-chip-sigmastar/configs/ssc335de_lite_defconfig index e3f110df..89f6651c 100644 --- a/br-ext-chip-sigmastar/configs/ssc335de_lite_defconfig +++ b/br-ext-chip-sigmastar/configs/ssc335de_lite_defconfig @@ -35,6 +35,7 @@ BR2_OPENIPC_SOC_VENDOR="sigmastar" BR2_OPENIPC_SOC_MODEL="ssc335de" BR2_OPENIPC_SOC_FAMILY="infinity6b0" BR2_OPENIPC_FLAVOR="lite" +BR2_OPENIPC_FLASH_SIZE="8" # Filesystem # BR2_TARGET_TZ_INFO is not set diff --git a/br-ext-chip-sigmastar/configs/ssc337_lite_defconfig b/br-ext-chip-sigmastar/configs/ssc337_lite_defconfig index 7b2c339e..775ce0f6 100644 --- a/br-ext-chip-sigmastar/configs/ssc337_lite_defconfig +++ b/br-ext-chip-sigmastar/configs/ssc337_lite_defconfig @@ -35,6 +35,7 @@ BR2_OPENIPC_SOC_VENDOR="sigmastar" BR2_OPENIPC_SOC_MODEL="ssc337" BR2_OPENIPC_SOC_FAMILY="infinity6b0" BR2_OPENIPC_FLAVOR="lite" +BR2_OPENIPC_FLASH_SIZE="8" # Filesystem # BR2_TARGET_TZ_INFO is not set diff --git a/br-ext-chip-sigmastar/configs/ssc337de_lite_defconfig b/br-ext-chip-sigmastar/configs/ssc337de_lite_defconfig index 932918e8..de423f22 100644 --- a/br-ext-chip-sigmastar/configs/ssc337de_lite_defconfig +++ b/br-ext-chip-sigmastar/configs/ssc337de_lite_defconfig @@ -35,6 +35,7 @@ BR2_OPENIPC_SOC_VENDOR="sigmastar" BR2_OPENIPC_SOC_MODEL="ssc337de" BR2_OPENIPC_SOC_FAMILY="infinity6b0" BR2_OPENIPC_FLAVOR="lite" +BR2_OPENIPC_FLASH_SIZE="8" # Filesystem # BR2_TARGET_TZ_INFO is not set diff --git a/br-ext-chip-sigmastar/configs/ssc337de_ultimate_defconfig b/br-ext-chip-sigmastar/configs/ssc337de_ultimate_defconfig index ae933c90..838e0aa7 100644 --- a/br-ext-chip-sigmastar/configs/ssc337de_ultimate_defconfig +++ b/br-ext-chip-sigmastar/configs/ssc337de_ultimate_defconfig @@ -35,6 +35,7 @@ BR2_OPENIPC_SOC_VENDOR="sigmastar" BR2_OPENIPC_SOC_MODEL="ssc337de" BR2_OPENIPC_SOC_FAMILY="infinity6b0" BR2_OPENIPC_FLAVOR="ultimate" +BR2_OPENIPC_FLASH_SIZE="16" # Filesystem # BR2_TARGET_TZ_INFO is not set diff --git a/br-ext-chip-sigmastar/configs/ssc338q_initramfs_defconfig b/br-ext-chip-sigmastar/configs/ssc338q_initramfs_defconfig index 87afe277..f2fdc981 100644 --- a/br-ext-chip-sigmastar/configs/ssc338q_initramfs_defconfig +++ b/br-ext-chip-sigmastar/configs/ssc338q_initramfs_defconfig @@ -32,6 +32,7 @@ BR2_OPENIPC_SOC_VENDOR="sigmastar" BR2_OPENIPC_SOC_MODEL="ssc338q" BR2_OPENIPC_SOC_FAMILY="infinity6e" BR2_OPENIPC_FLAVOR="initramfs" +BR2_OPENIPC_FLASH_SIZE="8" # Filesystem # BR2_TARGET_TZ_INFO is not set diff --git a/br-ext-chip-sigmastar/configs/ssc338q_lite_defconfig b/br-ext-chip-sigmastar/configs/ssc338q_lite_defconfig index fe5c3a2b..55b68961 100644 --- a/br-ext-chip-sigmastar/configs/ssc338q_lite_defconfig +++ b/br-ext-chip-sigmastar/configs/ssc338q_lite_defconfig @@ -32,6 +32,7 @@ BR2_OPENIPC_SOC_VENDOR="sigmastar" BR2_OPENIPC_SOC_MODEL="ssc338q" BR2_OPENIPC_SOC_FAMILY="infinity6e" BR2_OPENIPC_FLAVOR="lite" +BR2_OPENIPC_FLASH_SIZE="8" # Filesystem # BR2_TARGET_TZ_INFO is not set diff --git a/br-ext-chip-sigmastar/configs/ssc338q_ultimate_defconfig b/br-ext-chip-sigmastar/configs/ssc338q_ultimate_defconfig index df96ae53..c8f44456 100644 --- a/br-ext-chip-sigmastar/configs/ssc338q_ultimate_defconfig +++ b/br-ext-chip-sigmastar/configs/ssc338q_ultimate_defconfig @@ -32,6 +32,7 @@ BR2_OPENIPC_SOC_VENDOR="sigmastar" BR2_OPENIPC_SOC_MODEL="ssc338q" BR2_OPENIPC_SOC_FAMILY="infinity6e" BR2_OPENIPC_FLAVOR="ultimate" +BR2_OPENIPC_FLASH_SIZE="16" # Filesystem # BR2_TARGET_TZ_INFO is not set diff --git a/br-ext-chip-ti/configs/dm36x_lite_defconfig b/br-ext-chip-ti/configs/dm36x_lite_defconfig index 6b4250ee..7d20d6c7 100644 --- a/br-ext-chip-ti/configs/dm36x_lite_defconfig +++ b/br-ext-chip-ti/configs/dm36x_lite_defconfig @@ -35,6 +35,7 @@ BR2_OPENIPC_SOC_VENDOR="ti" BR2_OPENIPC_SOC_MODEL="dm36x" BR2_OPENIPC_SOC_FAMILY="dm36x" BR2_OPENIPC_FLAVOR="lite" +BR2_OPENIPC_FLASH_SIZE="8" # Filesystem # BR2_TARGET_TZ_INFO is not set diff --git a/br-ext-chip-xiongmai/configs/xm510_lite_defconfig b/br-ext-chip-xiongmai/configs/xm510_lite_defconfig index 2260b930..cc97e263 100644 --- a/br-ext-chip-xiongmai/configs/xm510_lite_defconfig +++ b/br-ext-chip-xiongmai/configs/xm510_lite_defconfig @@ -33,6 +33,7 @@ BR2_OPENIPC_SOC_VENDOR="xiongmai" BR2_OPENIPC_SOC_MODEL="xm510" BR2_OPENIPC_SOC_FAMILY="xm510" BR2_OPENIPC_FLAVOR="lite" +BR2_OPENIPC_FLASH_SIZE="8" # Filesystem # BR2_TARGET_TZ_INFO is not set diff --git a/br-ext-chip-xiongmai/configs/xm530_lite_defconfig b/br-ext-chip-xiongmai/configs/xm530_lite_defconfig index 19dccc40..f75a75fb 100644 --- a/br-ext-chip-xiongmai/configs/xm530_lite_defconfig +++ b/br-ext-chip-xiongmai/configs/xm530_lite_defconfig @@ -33,6 +33,7 @@ BR2_OPENIPC_SOC_VENDOR="xiongmai" BR2_OPENIPC_SOC_MODEL="xm530" BR2_OPENIPC_SOC_FAMILY="xm530" BR2_OPENIPC_FLAVOR="lite" +BR2_OPENIPC_FLASH_SIZE="8" # Filesystem # BR2_TARGET_TZ_INFO is not set diff --git a/br-ext-chip-xiongmai/configs/xm550_lite_defconfig b/br-ext-chip-xiongmai/configs/xm550_lite_defconfig index c56ea481..7ce6e2dd 100644 --- a/br-ext-chip-xiongmai/configs/xm550_lite_defconfig +++ b/br-ext-chip-xiongmai/configs/xm550_lite_defconfig @@ -33,6 +33,7 @@ BR2_OPENIPC_SOC_VENDOR="xiongmai" BR2_OPENIPC_SOC_MODEL="xm550" BR2_OPENIPC_SOC_FAMILY="xm530" BR2_OPENIPC_FLAVOR="lite" +BR2_OPENIPC_FLASH_SIZE="8" # Filesystem # BR2_TARGET_TZ_INFO is not set diff --git a/general/Config.in b/general/Config.in index 2393e68e..f50f8e7a 100644 --- a/general/Config.in +++ b/general/Config.in @@ -14,4 +14,8 @@ config BR2_OPENIPC_FLAVOR string "OpenIPC flavor" default "lite" +config BR2_OPENIPC_FLASH_SIZE + string "OpenIPC flash size" + default "8" + source "$BR2_EXTERNAL_GENERAL_PATH/package/Config.in"