mirror of https://github.com/OpenIPC/firmware.git
Makefile: rename and repack final images
parent
d6eb39eeb0
commit
3e0336170b
|
@ -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
|
||||
|
|
64
Makefile
64
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=<config> - builds the selected device\n\n"
|
||||
- make select - show interactive device list\n \
|
||||
- make all BOARD=<config> - 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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue