mirror of https://github.com/OpenIPC/firmware.git
General: introduce separate board config values
parent
48b6ce35b3
commit
7255f17c8a
|
@ -314,13 +314,14 @@ jobs:
|
|||
echo ${EXT}_PATH=\"${SDK}\" >> ${CONFIG}
|
||||
|
||||
PREFIX=$(ls -d ${SDK}/*openipc* | xargs basename)
|
||||
GCCV=$(echo ${GCC} | cut -d "-" -f 2)
|
||||
LIBC=$(echo ${GCC} | cut -d "-" -f 3)
|
||||
KVER=$(echo ${GCC} | cut -d "-" -f 4)
|
||||
echo ${EXT}_CUSTOM_PREFIX=\"${PREFIX}\" >> ${CONFIG}
|
||||
echo ${EXT}_CUSTOM_${LIBC^^}=y >> ${CONFIG}
|
||||
echo ${EXT}_HEADERS_${KVER}=y >> ${CONFIG}
|
||||
echo ${EXT}_GCC_${GCCV:3:1}=y >> ${CONFIG}
|
||||
|
||||
GCCV=$(echo ${GCC} | grep -oP "gcc\K\d+")
|
||||
echo ${EXT}_GCC_${GCCV}=y >> ${CONFIG}
|
||||
|
||||
if [ ${LIBC} = "glibc" ]; then
|
||||
RPC=${SDK}/${PREFIX}/sysroot/usr/include/rpc/rpc.h
|
||||
|
@ -336,7 +337,9 @@ jobs:
|
|||
|
||||
echo BR2_CCACHE=y >> ${CONFIG}
|
||||
echo BR2_CCACHE_DIR=\"/tmp/ccache\" >> ${CONFIG}
|
||||
|
||||
export BR2_DL_DIR=/tmp/download
|
||||
export BR2_EXTERNAL_LIBC=${LIBC}
|
||||
|
||||
export GIT_HASH=$(git rev-parse --short ${GITHUB_SHA})
|
||||
export GIT_BRANCH=${GITHUB_REF_NAME}
|
||||
|
@ -348,7 +351,9 @@ jobs:
|
|||
echo ------------------------------------------------------------
|
||||
cat ${CONFIG}
|
||||
echo ------------------------------------------------------------
|
||||
make BOARD=${FAMILY}_${RELEASE} all
|
||||
make info BOARD=${FAMILY}_${RELEASE}
|
||||
echo ------------------------------------------------------------
|
||||
make all BOARD=${FAMILY}_${RELEASE}
|
||||
echo ------------------------------------------------------------
|
||||
|
||||
check_size() {
|
||||
|
@ -361,7 +366,7 @@ jobs:
|
|||
fi
|
||||
}
|
||||
|
||||
if [ ${RELEASE} == "ultimate" ] || grep -q GLIBC=y ${CONFIG}; then
|
||||
if [ ${RELEASE} == "ultimate" ] || [ ${LIBC} = "glibc" ]; then
|
||||
MAX_KERNEL_SIZE=${MAX_KERNEL_SIZE_ULTIMATE}
|
||||
MAX_ROOTFS_SIZE=${MAX_ROOTFS_SIZE_ULTIMATE}
|
||||
fi
|
||||
|
|
12
Makefile
12
Makefile
|
@ -18,11 +18,12 @@ endif
|
|||
.PHONY: all clean defconfig distclean help prepare toolname
|
||||
|
||||
help:
|
||||
@printf "BR-OpenIPC usage:\n \
|
||||
@echo -e "BR-OpenIPC usage:\n \
|
||||
- make clean - remove defconfig and target folder\n \
|
||||
- make distclean - remove buildroot and output folder\n \
|
||||
- make list-configs - show available device configurations\n \
|
||||
- make all BOARD=<config> - builds the selected device\n\n"
|
||||
- make list - show available device configurations\n \
|
||||
- make info BOARD=<config> - show device information\n \
|
||||
- make all BOARD=<config> - builds the selected device\n"
|
||||
|
||||
all: defconfig
|
||||
@$(BR_MAKE) all
|
||||
|
@ -50,5 +51,8 @@ clean:
|
|||
distclean:
|
||||
@rm -rf output buildroot-$(BR_VER) $(BR_FILE)
|
||||
|
||||
list-configs:
|
||||
info:
|
||||
@cat $(CONFIG) | grep BR2_OPENIPC | tr -d '"' | sed "s|BR2_OPENIPC_||g"
|
||||
|
||||
list:
|
||||
@ls -1 br-ext-chip-*/configs
|
||||
|
|
|
@ -30,7 +30,12 @@ BR2_LINUX_KERNEL_USE_CUSTOM_CONFIG=y
|
|||
BR2_LINUX_KERNEL_CUSTOM_CONFIG_FILE="$(BR2_EXTERNAL_VENDOR)/board/v83x/kernel/v83x.generic.config"
|
||||
BR2_LINUX_KERNEL_UIMAGE=y
|
||||
BR2_LINUX_KERNEL_XZ=y
|
||||
BR2_PACKAGE_VENDOR_PATCHER=y
|
||||
|
||||
# OpenIPC
|
||||
BR2_OPENIPC_VENDOR="allwinner"
|
||||
BR2_OPENIPC_FAMILY="v83x"
|
||||
BR2_OPENIPC_MODEL="v83x"
|
||||
BR2_OPENIPC_RELEASE="lite"
|
||||
|
||||
# Filesystem
|
||||
# BR2_TARGET_TZ_INFO is not set
|
||||
|
|
|
@ -30,7 +30,12 @@ BR2_LINUX_KERNEL_USE_CUSTOM_CONFIG=y
|
|||
BR2_LINUX_KERNEL_CUSTOM_CONFIG_FILE="$(BR2_EXTERNAL_VENDOR)/board/v83x/kernel/v83x.generic.config"
|
||||
BR2_LINUX_KERNEL_UIMAGE=y
|
||||
BR2_LINUX_KERNEL_XZ=y
|
||||
BR2_PACKAGE_VENDOR_PATCHER=y
|
||||
|
||||
# OpenIPC
|
||||
BR2_OPENIPC_VENDOR="allwinner"
|
||||
BR2_OPENIPC_FAMILY="v83x"
|
||||
BR2_OPENIPC_MODEL="v83x"
|
||||
BR2_OPENIPC_RELEASE="ultimate"
|
||||
|
||||
# Filesystem
|
||||
# BR2_TARGET_TZ_INFO is not set
|
||||
|
|
|
@ -29,7 +29,12 @@ BR2_LINUX_KERNEL_USE_CUSTOM_CONFIG=y
|
|||
BR2_LINUX_KERNEL_CUSTOM_CONFIG_FILE="$(BR2_EXTERNAL_VENDOR)/board/s3l/kernel/s3l.generic.config"
|
||||
BR2_LINUX_KERNEL_UIMAGE=y
|
||||
BR2_LINUX_KERNEL_XZ=y
|
||||
BR2_PACKAGE_VENDOR_PATCHER=y
|
||||
|
||||
# OpenIPC
|
||||
BR2_OPENIPC_VENDOR="ambarella"
|
||||
BR2_OPENIPC_FAMILY="s3l"
|
||||
BR2_OPENIPC_MODEL="s3l"
|
||||
BR2_OPENIPC_RELEASE="lite"
|
||||
|
||||
# Filesystem
|
||||
# BR2_TARGET_TZ_INFO is not set
|
||||
|
|
|
@ -28,7 +28,12 @@ BR2_LINUX_KERNEL_USE_CUSTOM_CONFIG=y
|
|||
BR2_LINUX_KERNEL_CUSTOM_CONFIG_FILE="$(BR2_EXTERNAL_VENDOR)/board/ak3918ev300/kernel/ak3916ev300.generic.config"
|
||||
BR2_LINUX_KERNEL_UIMAGE=y
|
||||
BR2_LINUX_KERNEL_XZ=y
|
||||
BR2_PACKAGE_VENDOR_PATCHER=y
|
||||
|
||||
# OpenIPC
|
||||
BR2_OPENIPC_VENDOR="anyka"
|
||||
BR2_OPENIPC_FAMILY="ak3918ev300"
|
||||
BR2_OPENIPC_MODEL="ak3916ev300"
|
||||
BR2_OPENIPC_RELEASE="lite"
|
||||
|
||||
# Filesystem
|
||||
# BR2_TARGET_TZ_INFO is not set
|
||||
|
|
|
@ -28,7 +28,12 @@ BR2_LINUX_KERNEL_USE_CUSTOM_CONFIG=y
|
|||
BR2_LINUX_KERNEL_CUSTOM_CONFIG_FILE="$(BR2_EXTERNAL_VENDOR)/board/ak3918ev300/kernel/ak3918ev300.generic.config"
|
||||
BR2_LINUX_KERNEL_UIMAGE=y
|
||||
BR2_LINUX_KERNEL_XZ=y
|
||||
BR2_PACKAGE_VENDOR_PATCHER=y
|
||||
|
||||
# OpenIPC
|
||||
BR2_OPENIPC_VENDOR="anyka"
|
||||
BR2_OPENIPC_FAMILY="ak3918ev300"
|
||||
BR2_OPENIPC_MODEL="ak3918ev300"
|
||||
BR2_OPENIPC_RELEASE="lite"
|
||||
|
||||
# Filesystem
|
||||
# BR2_TARGET_TZ_INFO is not set
|
||||
|
|
|
@ -27,7 +27,12 @@ BR2_LINUX_KERNEL_USE_CUSTOM_CONFIG=y
|
|||
BR2_LINUX_KERNEL_CUSTOM_CONFIG_FILE="$(BR2_EXTERNAL_VENDOR)/board/fh8833v100/kernel/fh8833v100.generic.config"
|
||||
BR2_LINUX_KERNEL_UIMAGE=y
|
||||
BR2_LINUX_KERNEL_XZ=y
|
||||
BR2_PACKAGE_VENDOR_PATCHER=y
|
||||
|
||||
# OpenIPC
|
||||
BR2_OPENIPC_VENDOR="fullhan"
|
||||
BR2_OPENIPC_FAMILY="fh8833v100"
|
||||
BR2_OPENIPC_MODEL="fh8833v100"
|
||||
BR2_OPENIPC_RELEASE="lite"
|
||||
|
||||
# Filesystem
|
||||
# BR2_TARGET_TZ_INFO is not set
|
||||
|
|
|
@ -27,7 +27,12 @@ BR2_LINUX_KERNEL_USE_CUSTOM_CONFIG=y
|
|||
BR2_LINUX_KERNEL_CUSTOM_CONFIG_FILE="$(BR2_EXTERNAL_VENDOR)/board/fh8852v100/kernel/fh8852v100.generic.config"
|
||||
BR2_LINUX_KERNEL_UIMAGE=y
|
||||
BR2_LINUX_KERNEL_XZ=y
|
||||
BR2_PACKAGE_VENDOR_PATCHER=y
|
||||
|
||||
# OpenIPC
|
||||
BR2_OPENIPC_VENDOR="fullhan"
|
||||
BR2_OPENIPC_FAMILY="fh8852v100"
|
||||
BR2_OPENIPC_MODEL="fh8852v100"
|
||||
BR2_OPENIPC_RELEASE="lite"
|
||||
|
||||
# Filesystem
|
||||
# BR2_TARGET_TZ_INFO is not set
|
||||
|
|
|
@ -27,7 +27,12 @@ BR2_LINUX_KERNEL_USE_CUSTOM_CONFIG=y
|
|||
BR2_LINUX_KERNEL_CUSTOM_CONFIG_FILE="$(BR2_EXTERNAL_VENDOR)/board/fh8852v200/kernel/fh8852v200.generic.config"
|
||||
BR2_LINUX_KERNEL_UIMAGE=y
|
||||
BR2_LINUX_KERNEL_XZ=y
|
||||
BR2_PACKAGE_VENDOR_PATCHER=y
|
||||
|
||||
# OpenIPC
|
||||
BR2_OPENIPC_VENDOR="fullhan"
|
||||
BR2_OPENIPC_FAMILY="fh8852v200"
|
||||
BR2_OPENIPC_MODEL="fh8852v200"
|
||||
BR2_OPENIPC_RELEASE="lite"
|
||||
|
||||
# Filesystem
|
||||
# BR2_TARGET_TZ_INFO is not set
|
||||
|
|
|
@ -27,7 +27,12 @@ BR2_LINUX_KERNEL_USE_CUSTOM_CONFIG=y
|
|||
BR2_LINUX_KERNEL_CUSTOM_CONFIG_FILE="$(BR2_EXTERNAL_VENDOR)/board/fh8852v200/kernel/fh8852v210.generic.config"
|
||||
BR2_LINUX_KERNEL_UIMAGE=y
|
||||
BR2_LINUX_KERNEL_XZ=y
|
||||
BR2_PACKAGE_VENDOR_PATCHER=y
|
||||
|
||||
# OpenIPC
|
||||
BR2_OPENIPC_VENDOR="fullhan"
|
||||
BR2_OPENIPC_FAMILY="fh8852v200"
|
||||
BR2_OPENIPC_MODEL="fh8852v210"
|
||||
BR2_OPENIPC_RELEASE="lite"
|
||||
|
||||
# Filesystem
|
||||
# BR2_TARGET_TZ_INFO is not set
|
||||
|
|
|
@ -27,7 +27,12 @@ BR2_LINUX_KERNEL_USE_CUSTOM_CONFIG=y
|
|||
BR2_LINUX_KERNEL_CUSTOM_CONFIG_FILE="$(BR2_EXTERNAL_VENDOR)/board/fh8852v100/kernel/fh8856v100.generic.config"
|
||||
BR2_LINUX_KERNEL_UIMAGE=y
|
||||
BR2_LINUX_KERNEL_XZ=y
|
||||
BR2_PACKAGE_VENDOR_PATCHER=y
|
||||
|
||||
# OpenIPC
|
||||
BR2_OPENIPC_VENDOR="fullhan"
|
||||
BR2_OPENIPC_FAMILY="fh8852v100"
|
||||
BR2_OPENIPC_MODEL="fh8856v100"
|
||||
BR2_OPENIPC_RELEASE="lite"
|
||||
|
||||
# Filesystem
|
||||
# BR2_TARGET_TZ_INFO is not set
|
||||
|
|
|
@ -27,7 +27,12 @@ BR2_LINUX_KERNEL_USE_CUSTOM_CONFIG=y
|
|||
BR2_LINUX_KERNEL_CUSTOM_CONFIG_FILE="$(BR2_EXTERNAL_VENDOR)/board/fh8852v200/kernel/fh8856v200.generic.config"
|
||||
BR2_LINUX_KERNEL_UIMAGE=y
|
||||
BR2_LINUX_KERNEL_XZ=y
|
||||
BR2_PACKAGE_VENDOR_PATCHER=y
|
||||
|
||||
# OpenIPC
|
||||
BR2_OPENIPC_VENDOR="fullhan"
|
||||
BR2_OPENIPC_FAMILY="fh8852v200"
|
||||
BR2_OPENIPC_MODEL="fh8856v200"
|
||||
BR2_OPENIPC_RELEASE="lite"
|
||||
|
||||
# Filesystem
|
||||
# BR2_TARGET_TZ_INFO is not set
|
||||
|
|
|
@ -27,7 +27,12 @@ BR2_LINUX_KERNEL_USE_CUSTOM_CONFIG=y
|
|||
BR2_LINUX_KERNEL_CUSTOM_CONFIG_FILE="$(BR2_EXTERNAL_VENDOR)/board/fh8852v200/kernel/fh8856v210.generic.config"
|
||||
BR2_LINUX_KERNEL_UIMAGE=y
|
||||
BR2_LINUX_KERNEL_XZ=y
|
||||
BR2_PACKAGE_VENDOR_PATCHER=y
|
||||
|
||||
# OpenIPC
|
||||
BR2_OPENIPC_VENDOR="fullhan"
|
||||
BR2_OPENIPC_FAMILY="fh8852v200"
|
||||
BR2_OPENIPC_MODEL="fh8856v210"
|
||||
BR2_OPENIPC_RELEASE="lite"
|
||||
|
||||
# Filesystem
|
||||
# BR2_TARGET_TZ_INFO is not set
|
||||
|
|
|
@ -27,7 +27,12 @@ BR2_LINUX_KERNEL_USE_CUSTOM_CONFIG=y
|
|||
BR2_LINUX_KERNEL_CUSTOM_CONFIG_FILE="$(BR2_EXTERNAL_VENDOR)/board/fh8852v200/kernel/fh8858v200.generic.config"
|
||||
BR2_LINUX_KERNEL_UIMAGE=y
|
||||
BR2_LINUX_KERNEL_XZ=y
|
||||
BR2_PACKAGE_VENDOR_PATCHER=y
|
||||
|
||||
# OpenIPC
|
||||
BR2_OPENIPC_VENDOR="fullhan"
|
||||
BR2_OPENIPC_FAMILY="fh8852v200"
|
||||
BR2_OPENIPC_MODEL="fh8858v200"
|
||||
BR2_OPENIPC_RELEASE="lite"
|
||||
|
||||
# Filesystem
|
||||
# BR2_TARGET_TZ_INFO is not set
|
||||
|
|
|
@ -27,7 +27,12 @@ BR2_LINUX_KERNEL_USE_CUSTOM_CONFIG=y
|
|||
BR2_LINUX_KERNEL_CUSTOM_CONFIG_FILE="$(BR2_EXTERNAL_VENDOR)/board/fh8852v200/kernel/fh8858v210.generic.config"
|
||||
BR2_LINUX_KERNEL_UIMAGE=y
|
||||
BR2_LINUX_KERNEL_XZ=y
|
||||
BR2_PACKAGE_VENDOR_PATCHER=y
|
||||
|
||||
# OpenIPC
|
||||
BR2_OPENIPC_VENDOR="fullhan"
|
||||
BR2_OPENIPC_FAMILY="fh8852v200"
|
||||
BR2_OPENIPC_MODEL="fh8858v210"
|
||||
BR2_OPENIPC_RELEASE="lite"
|
||||
|
||||
# Filesystem
|
||||
# BR2_TARGET_TZ_INFO is not set
|
||||
|
|
|
@ -27,7 +27,12 @@ BR2_LINUX_KERNEL_USE_CUSTOM_CONFIG=y
|
|||
BR2_LINUX_KERNEL_CUSTOM_CONFIG_FILE="$(BR2_EXTERNAL_VENDOR)/board/gk710x/kernel/gk710x.generic.config"
|
||||
BR2_LINUX_KERNEL_UIMAGE=y
|
||||
BR2_LINUX_KERNEL_XZ=y
|
||||
BR2_PACKAGE_VENDOR_PATCHER=y
|
||||
|
||||
# OpenIPC
|
||||
BR2_OPENIPC_VENDOR="goke"
|
||||
BR2_OPENIPC_FAMILY="gk710x"
|
||||
BR2_OPENIPC_MODEL="gk7102"
|
||||
BR2_OPENIPC_RELEASE="lite"
|
||||
|
||||
# Filesystem
|
||||
# BR2_TARGET_TZ_INFO is not set
|
||||
|
|
|
@ -27,7 +27,12 @@ BR2_LINUX_KERNEL_USE_CUSTOM_CONFIG=y
|
|||
BR2_LINUX_KERNEL_CUSTOM_CONFIG_FILE="$(BR2_EXTERNAL_VENDOR)/board/gk710x/kernel/gk710xs.generic.config"
|
||||
BR2_LINUX_KERNEL_UIMAGE=y
|
||||
BR2_LINUX_KERNEL_XZ=y
|
||||
BR2_PACKAGE_VENDOR_PATCHER=y
|
||||
|
||||
# OpenIPC
|
||||
BR2_OPENIPC_VENDOR="goke"
|
||||
BR2_OPENIPC_FAMILY="gk710x"
|
||||
BR2_OPENIPC_MODEL="gk7102s"
|
||||
BR2_OPENIPC_RELEASE="lite"
|
||||
|
||||
# Filesystem
|
||||
# BR2_TARGET_TZ_INFO is not set
|
||||
|
|
|
@ -29,7 +29,12 @@ BR2_LINUX_KERNEL_USE_CUSTOM_CONFIG=y
|
|||
BR2_LINUX_KERNEL_CUSTOM_CONFIG_FILE="$(BR2_EXTERNAL_VENDOR)/board/gk7205v200/kernel/gk7202v300.generic.config"
|
||||
BR2_LINUX_KERNEL_UIMAGE=y
|
||||
BR2_LINUX_KERNEL_XZ=y
|
||||
BR2_PACKAGE_VENDOR_PATCHER=y
|
||||
|
||||
# OpenIPC
|
||||
BR2_OPENIPC_VENDOR="goke"
|
||||
BR2_OPENIPC_FAMILY="gk7205v200"
|
||||
BR2_OPENIPC_MODEL="gk7202v300"
|
||||
BR2_OPENIPC_RELEASE="lite"
|
||||
|
||||
# Filesystem
|
||||
# BR2_TARGET_TZ_INFO is not set
|
||||
|
|
|
@ -29,7 +29,12 @@ BR2_LINUX_KERNEL_USE_CUSTOM_CONFIG=y
|
|||
BR2_LINUX_KERNEL_CUSTOM_CONFIG_FILE="$(BR2_EXTERNAL_VENDOR)/board/gk7205v200/kernel/gk7205v200.generic-fpv.config"
|
||||
BR2_LINUX_KERNEL_UIMAGE=y
|
||||
BR2_LINUX_KERNEL_XZ=y
|
||||
BR2_PACKAGE_VENDOR_PATCHER=y
|
||||
|
||||
# OpenIPC
|
||||
BR2_OPENIPC_VENDOR="goke"
|
||||
BR2_OPENIPC_FAMILY="gk7205v200"
|
||||
BR2_OPENIPC_MODEL="gk7205v200"
|
||||
BR2_OPENIPC_RELEASE="fpv"
|
||||
|
||||
# Filesystem
|
||||
# BR2_TARGET_TZ_INFO is not set
|
||||
|
|
|
@ -29,7 +29,12 @@ BR2_LINUX_KERNEL_USE_CUSTOM_CONFIG=y
|
|||
BR2_LINUX_KERNEL_CUSTOM_CONFIG_FILE="$(BR2_EXTERNAL_VENDOR)/board/gk7205v200/kernel/gk7205v200.generic.config"
|
||||
BR2_LINUX_KERNEL_UIMAGE=y
|
||||
BR2_LINUX_KERNEL_XZ=y
|
||||
BR2_PACKAGE_VENDOR_PATCHER=y
|
||||
|
||||
# OpenIPC
|
||||
BR2_OPENIPC_VENDOR="goke"
|
||||
BR2_OPENIPC_FAMILY="gk7205v200"
|
||||
BR2_OPENIPC_MODEL="gk7205v200"
|
||||
BR2_OPENIPC_RELEASE="lite"
|
||||
|
||||
# Filesystem
|
||||
# BR2_TARGET_TZ_INFO is not set
|
||||
|
|
|
@ -29,7 +29,12 @@ BR2_LINUX_KERNEL_USE_CUSTOM_CONFIG=y
|
|||
BR2_LINUX_KERNEL_CUSTOM_CONFIG_FILE="$(BR2_EXTERNAL_VENDOR)/board/gk7205v200/kernel/gk7205v200.generic-fpv.config"
|
||||
BR2_LINUX_KERNEL_UIMAGE=y
|
||||
BR2_LINUX_KERNEL_XZ=y
|
||||
BR2_PACKAGE_VENDOR_PATCHER=y
|
||||
|
||||
# OpenIPC
|
||||
BR2_OPENIPC_VENDOR="goke"
|
||||
BR2_OPENIPC_FAMILY="gk7205v200"
|
||||
BR2_OPENIPC_MODEL="gk7205v200"
|
||||
BR2_OPENIPC_RELEASE="fpv"
|
||||
|
||||
# Filesystem
|
||||
# BR2_TARGET_TZ_INFO is not set
|
||||
|
|
|
@ -29,7 +29,12 @@ BR2_LINUX_KERNEL_USE_CUSTOM_CONFIG=y
|
|||
BR2_LINUX_KERNEL_CUSTOM_CONFIG_FILE="$(BR2_EXTERNAL_VENDOR)/board/gk7205v200/kernel/gk7205v200.generic.config"
|
||||
BR2_LINUX_KERNEL_UIMAGE=y
|
||||
BR2_LINUX_KERNEL_XZ=y
|
||||
BR2_PACKAGE_VENDOR_PATCHER=y
|
||||
|
||||
# OpenIPC
|
||||
BR2_OPENIPC_VENDOR="goke"
|
||||
BR2_OPENIPC_FAMILY="gk7205v200"
|
||||
BR2_OPENIPC_MODEL="gk7205v200"
|
||||
BR2_OPENIPC_RELEASE="original"
|
||||
|
||||
# Filesystem
|
||||
# BR2_TARGET_TZ_INFO is not set
|
||||
|
|
|
@ -29,7 +29,12 @@ BR2_LINUX_KERNEL_USE_CUSTOM_CONFIG=y
|
|||
BR2_LINUX_KERNEL_CUSTOM_CONFIG_FILE="$(BR2_EXTERNAL_VENDOR)/board/gk7205v200/kernel/gk7205v200.generic.config"
|
||||
BR2_LINUX_KERNEL_UIMAGE=y
|
||||
BR2_LINUX_KERNEL_XZ=y
|
||||
BR2_PACKAGE_VENDOR_PATCHER=y
|
||||
|
||||
# OpenIPC
|
||||
BR2_OPENIPC_VENDOR="goke"
|
||||
BR2_OPENIPC_FAMILY="gk7205v200"
|
||||
BR2_OPENIPC_MODEL="gk7205v200"
|
||||
BR2_OPENIPC_RELEASE="ultimate"
|
||||
|
||||
# Filesystem
|
||||
# BR2_TARGET_TZ_INFO is not set
|
||||
|
|
|
@ -29,7 +29,12 @@ BR2_LINUX_KERNEL_USE_CUSTOM_CONFIG=y
|
|||
BR2_LINUX_KERNEL_CUSTOM_CONFIG_FILE="$(BR2_EXTERNAL_VENDOR)/board/gk7205v200/kernel/gk7205v200.generic.config"
|
||||
BR2_LINUX_KERNEL_UIMAGE=y
|
||||
BR2_LINUX_KERNEL_XZ=y
|
||||
BR2_PACKAGE_VENDOR_PATCHER=y
|
||||
|
||||
# OpenIPC
|
||||
BR2_OPENIPC_VENDOR="goke"
|
||||
BR2_OPENIPC_FAMILY="gk7205v200"
|
||||
BR2_OPENIPC_MODEL="gk7205v210"
|
||||
BR2_OPENIPC_RELEASE="lite"
|
||||
|
||||
# Filesystem
|
||||
# BR2_TARGET_TZ_INFO is not set
|
||||
|
|
|
@ -29,7 +29,12 @@ BR2_LINUX_KERNEL_USE_CUSTOM_CONFIG=y
|
|||
BR2_LINUX_KERNEL_CUSTOM_CONFIG_FILE="$(BR2_EXTERNAL_VENDOR)/board/gk7205v200/kernel/gk7205v300.generic-fpv.config"
|
||||
BR2_LINUX_KERNEL_UIMAGE=y
|
||||
BR2_LINUX_KERNEL_XZ=y
|
||||
BR2_PACKAGE_VENDOR_PATCHER=y
|
||||
|
||||
# OpenIPC
|
||||
BR2_OPENIPC_VENDOR="goke"
|
||||
BR2_OPENIPC_FAMILY="gk7205v200"
|
||||
BR2_OPENIPC_MODEL="gk7205v300"
|
||||
BR2_OPENIPC_RELEASE="fpv"
|
||||
|
||||
# Filesystem
|
||||
# BR2_TARGET_TZ_INFO is not set
|
||||
|
|
|
@ -29,7 +29,12 @@ BR2_LINUX_KERNEL_USE_CUSTOM_CONFIG=y
|
|||
BR2_LINUX_KERNEL_CUSTOM_CONFIG_FILE="$(BR2_EXTERNAL_VENDOR)/board/gk7205v200/kernel/gk7205v300.generic.config"
|
||||
BR2_LINUX_KERNEL_UIMAGE=y
|
||||
BR2_LINUX_KERNEL_XZ=y
|
||||
BR2_PACKAGE_VENDOR_PATCHER=y
|
||||
|
||||
# OpenIPC
|
||||
BR2_OPENIPC_VENDOR="goke"
|
||||
BR2_OPENIPC_FAMILY="gk7205v200"
|
||||
BR2_OPENIPC_MODEL="gk7205v300"
|
||||
BR2_OPENIPC_RELEASE="lite"
|
||||
|
||||
# Filesystem
|
||||
# BR2_TARGET_TZ_INFO is not set
|
||||
|
|
|
@ -29,7 +29,12 @@ BR2_LINUX_KERNEL_USE_CUSTOM_CONFIG=y
|
|||
BR2_LINUX_KERNEL_CUSTOM_CONFIG_FILE="$(BR2_EXTERNAL_VENDOR)/board/gk7205v200/kernel/gk7205v300.generic-fpv.config"
|
||||
BR2_LINUX_KERNEL_UIMAGE=y
|
||||
BR2_LINUX_KERNEL_XZ=y
|
||||
BR2_PACKAGE_VENDOR_PATCHER=y
|
||||
|
||||
# OpenIPC
|
||||
BR2_OPENIPC_VENDOR="goke"
|
||||
BR2_OPENIPC_FAMILY="gk7205v200"
|
||||
BR2_OPENIPC_MODEL="gk7205v300"
|
||||
BR2_OPENIPC_RELEASE="fpv"
|
||||
|
||||
# Filesystem
|
||||
# BR2_TARGET_TZ_INFO is not set
|
||||
|
|
|
@ -29,7 +29,12 @@ BR2_LINUX_KERNEL_USE_CUSTOM_CONFIG=y
|
|||
BR2_LINUX_KERNEL_CUSTOM_CONFIG_FILE="$(BR2_EXTERNAL_VENDOR)/board/gk7205v200/kernel/gk7205v300.generic.config"
|
||||
BR2_LINUX_KERNEL_UIMAGE=y
|
||||
BR2_LINUX_KERNEL_XZ=y
|
||||
BR2_PACKAGE_VENDOR_PATCHER=y
|
||||
|
||||
# OpenIPC
|
||||
BR2_OPENIPC_VENDOR="goke"
|
||||
BR2_OPENIPC_FAMILY="gk7205v200"
|
||||
BR2_OPENIPC_MODEL="gk7205v300"
|
||||
BR2_OPENIPC_RELEASE="ultimate"
|
||||
|
||||
# Filesystem
|
||||
# BR2_TARGET_TZ_INFO is not set
|
||||
|
|
|
@ -29,7 +29,12 @@ BR2_LINUX_KERNEL_USE_CUSTOM_CONFIG=y
|
|||
BR2_LINUX_KERNEL_CUSTOM_CONFIG_FILE="$(BR2_EXTERNAL_VENDOR)/board/gk7205v200/kernel/gk7605v100.generic.config"
|
||||
BR2_LINUX_KERNEL_UIMAGE=y
|
||||
BR2_LINUX_KERNEL_XZ=y
|
||||
BR2_PACKAGE_VENDOR_PATCHER=y
|
||||
|
||||
# OpenIPC
|
||||
BR2_OPENIPC_VENDOR="goke"
|
||||
BR2_OPENIPC_FAMILY="gk7205v200"
|
||||
BR2_OPENIPC_MODEL="gk7605v100"
|
||||
BR2_OPENIPC_RELEASE="lite"
|
||||
|
||||
# Filesystem
|
||||
# BR2_TARGET_TZ_INFO is not set
|
||||
|
|
|
@ -26,7 +26,12 @@ BR2_LINUX_KERNEL_USE_CUSTOM_CONFIG=y
|
|||
BR2_LINUX_KERNEL_CUSTOM_CONFIG_FILE="$(BR2_EXTERNAL_VENDOR)/board/gm8136/kernel/gm8135.generic.config"
|
||||
BR2_LINUX_KERNEL_UIMAGE=y
|
||||
BR2_LINUX_KERNEL_XZ=y
|
||||
BR2_PACKAGE_VENDOR_PATCHER=y
|
||||
|
||||
# OpenIPC
|
||||
BR2_OPENIPC_VENDOR="grainmedia"
|
||||
BR2_OPENIPC_FAMILY="gm8136"
|
||||
BR2_OPENIPC_MODEL="gm8135"
|
||||
BR2_OPENIPC_RELEASE="lite"
|
||||
|
||||
# Filesystem
|
||||
# BR2_TARGET_TZ_INFO is not set
|
||||
|
|
|
@ -26,7 +26,12 @@ BR2_LINUX_KERNEL_USE_CUSTOM_CONFIG=y
|
|||
BR2_LINUX_KERNEL_CUSTOM_CONFIG_FILE="$(BR2_EXTERNAL_VENDOR)/board/gm8136/kernel/gm8136.generic.config"
|
||||
BR2_LINUX_KERNEL_UIMAGE=y
|
||||
BR2_LINUX_KERNEL_XZ=y
|
||||
BR2_PACKAGE_VENDOR_PATCHER=y
|
||||
|
||||
# OpenIPC
|
||||
BR2_OPENIPC_VENDOR="grainmedia"
|
||||
BR2_OPENIPC_FAMILY="gm8136"
|
||||
BR2_OPENIPC_MODEL="gm8136"
|
||||
BR2_OPENIPC_RELEASE="lite"
|
||||
|
||||
# Filesystem
|
||||
# BR2_TARGET_TZ_INFO is not set
|
||||
|
|
|
@ -29,7 +29,12 @@ BR2_LINUX_KERNEL_USE_CUSTOM_CONFIG=y
|
|||
BR2_LINUX_KERNEL_CUSTOM_CONFIG_FILE="$(BR2_EXTERNAL_VENDOR)/board/hi3516av100/kernel/hi3516av100.generic.config"
|
||||
BR2_LINUX_KERNEL_UIMAGE=y
|
||||
BR2_LINUX_KERNEL_XZ=y
|
||||
BR2_PACKAGE_VENDOR_PATCHER=y
|
||||
|
||||
# OpenIPC
|
||||
BR2_OPENIPC_VENDOR="hisilicon"
|
||||
BR2_OPENIPC_FAMILY="hi3516av100"
|
||||
BR2_OPENIPC_MODEL="hi3516av100"
|
||||
BR2_OPENIPC_RELEASE="lite"
|
||||
|
||||
# Filesystem
|
||||
# BR2_TARGET_TZ_INFO is not set
|
||||
|
|
|
@ -29,7 +29,12 @@ BR2_LINUX_KERNEL_USE_CUSTOM_CONFIG=y
|
|||
BR2_LINUX_KERNEL_CUSTOM_CONFIG_FILE="$(BR2_EXTERNAL_VENDOR)/board/hi3516av100/kernel/hi3516av100.generic.config"
|
||||
BR2_LINUX_KERNEL_UIMAGE=y
|
||||
BR2_LINUX_KERNEL_XZ=y
|
||||
BR2_PACKAGE_VENDOR_PATCHER=y
|
||||
|
||||
# OpenIPC
|
||||
BR2_OPENIPC_VENDOR="hisilicon"
|
||||
BR2_OPENIPC_FAMILY="hi3516av100"
|
||||
BR2_OPENIPC_MODEL="hi3516av100"
|
||||
BR2_OPENIPC_RELEASE="lite"
|
||||
|
||||
# Filesystem
|
||||
# BR2_TARGET_TZ_INFO is not set
|
||||
|
|
|
@ -29,7 +29,12 @@ BR2_LINUX_KERNEL_USE_CUSTOM_CONFIG=y
|
|||
BR2_LINUX_KERNEL_CUSTOM_CONFIG_FILE="$(BR2_EXTERNAL_VENDOR)/board/hi3519v101/kernel/hi3516av200.generic.config"
|
||||
BR2_LINUX_KERNEL_UIMAGE=y
|
||||
BR2_LINUX_KERNEL_XZ=y
|
||||
BR2_PACKAGE_VENDOR_PATCHER=y
|
||||
|
||||
# OpenIPC
|
||||
BR2_OPENIPC_VENDOR="hisilicon"
|
||||
BR2_OPENIPC_FAMILY="hi3519v101"
|
||||
BR2_OPENIPC_MODEL="hi3516av200"
|
||||
BR2_OPENIPC_RELEASE="lite"
|
||||
|
||||
# Filesystem
|
||||
# BR2_TARGET_TZ_INFO is not set
|
||||
|
|
|
@ -29,7 +29,12 @@ BR2_LINUX_KERNEL_USE_CUSTOM_CONFIG=y
|
|||
BR2_LINUX_KERNEL_CUSTOM_CONFIG_FILE="$(BR2_EXTERNAL_VENDOR)/board/hi3519v101/kernel/hi3516av200.generic.config"
|
||||
BR2_LINUX_KERNEL_UIMAGE=y
|
||||
BR2_LINUX_KERNEL_XZ=y
|
||||
BR2_PACKAGE_VENDOR_PATCHER=y
|
||||
|
||||
# OpenIPC
|
||||
BR2_OPENIPC_VENDOR="hisilicon"
|
||||
BR2_OPENIPC_FAMILY="hi3519v101"
|
||||
BR2_OPENIPC_MODEL="hi3516av200"
|
||||
BR2_OPENIPC_RELEASE="lite"
|
||||
|
||||
# Filesystem
|
||||
# BR2_TARGET_TZ_INFO is not set
|
||||
|
|
|
@ -27,7 +27,12 @@ BR2_LINUX_KERNEL_USE_CUSTOM_CONFIG=y
|
|||
BR2_LINUX_KERNEL_CUSTOM_CONFIG_FILE="$(BR2_EXTERNAL_VENDOR)/board/hi3516cv500/kernel/hi3516av300.generic.config"
|
||||
BR2_LINUX_KERNEL_UIMAGE=y
|
||||
BR2_LINUX_KERNEL_XZ=y
|
||||
BR2_PACKAGE_VENDOR_PATCHER=y
|
||||
|
||||
# OpenIPC
|
||||
BR2_OPENIPC_VENDOR="hisilicon"
|
||||
BR2_OPENIPC_FAMILY="hi3516cv500"
|
||||
BR2_OPENIPC_MODEL="hi3516av300"
|
||||
BR2_OPENIPC_RELEASE="lite"
|
||||
|
||||
# Filesystem
|
||||
# BR2_TARGET_TZ_INFO is not set
|
||||
|
|
|
@ -27,7 +27,12 @@ BR2_LINUX_KERNEL_USE_CUSTOM_CONFIG=y
|
|||
BR2_LINUX_KERNEL_CUSTOM_CONFIG_FILE="$(BR2_EXTERNAL_VENDOR)/board/hi3516cv100/kernel/hi3516cv100.generic.config"
|
||||
BR2_LINUX_KERNEL_UIMAGE=y
|
||||
BR2_LINUX_KERNEL_XZ=y
|
||||
BR2_PACKAGE_VENDOR_PATCHER=y
|
||||
|
||||
# OpenIPC
|
||||
BR2_OPENIPC_VENDOR="hisilicon"
|
||||
BR2_OPENIPC_FAMILY="hi3516cv100"
|
||||
BR2_OPENIPC_MODEL="hi3516cv100"
|
||||
BR2_OPENIPC_RELEASE="lite"
|
||||
|
||||
# Filesystem
|
||||
# BR2_TARGET_TZ_INFO is not set
|
||||
|
|
|
@ -28,7 +28,12 @@ BR2_LINUX_KERNEL_USE_CUSTOM_CONFIG=y
|
|||
BR2_LINUX_KERNEL_CUSTOM_CONFIG_FILE="$(BR2_EXTERNAL_VENDOR)/board/hi3516cv200/kernel/hi3516cv200.generic.config"
|
||||
BR2_LINUX_KERNEL_UIMAGE=y
|
||||
BR2_LINUX_KERNEL_XZ=y
|
||||
BR2_PACKAGE_VENDOR_PATCHER=y
|
||||
|
||||
# OpenIPC
|
||||
BR2_OPENIPC_VENDOR="hisilicon"
|
||||
BR2_OPENIPC_FAMILY="hi3516cv200"
|
||||
BR2_OPENIPC_MODEL="hi3516cv200"
|
||||
BR2_OPENIPC_RELEASE="lite"
|
||||
|
||||
# Filesystem
|
||||
# BR2_TARGET_TZ_INFO is not set
|
||||
|
|
|
@ -28,7 +28,12 @@ BR2_LINUX_KERNEL_USE_CUSTOM_CONFIG=y
|
|||
BR2_LINUX_KERNEL_CUSTOM_CONFIG_FILE="$(BR2_EXTERNAL_VENDOR)/board/hi3516cv300/kernel/hi3516cv300.generic.config"
|
||||
BR2_LINUX_KERNEL_UIMAGE=y
|
||||
BR2_LINUX_KERNEL_XZ=y
|
||||
BR2_PACKAGE_VENDOR_PATCHER=y
|
||||
|
||||
# OpenIPC
|
||||
BR2_OPENIPC_VENDOR="hisilicon"
|
||||
BR2_OPENIPC_FAMILY="hi3516cv300"
|
||||
BR2_OPENIPC_MODEL="hi3516cv300"
|
||||
BR2_OPENIPC_RELEASE="lite"
|
||||
|
||||
# Filesystem
|
||||
# BR2_TARGET_TZ_INFO is not set
|
||||
|
|
|
@ -28,7 +28,12 @@ BR2_LINUX_KERNEL_USE_CUSTOM_CONFIG=y
|
|||
BR2_LINUX_KERNEL_CUSTOM_CONFIG_FILE="$(BR2_EXTERNAL_VENDOR)/board/hi3516cv300/kernel/hi3516cv300.generic.config"
|
||||
BR2_LINUX_KERNEL_UIMAGE=y
|
||||
BR2_LINUX_KERNEL_XZ=y
|
||||
BR2_PACKAGE_VENDOR_PATCHER=y
|
||||
|
||||
# OpenIPC
|
||||
BR2_OPENIPC_VENDOR="hisilicon"
|
||||
BR2_OPENIPC_FAMILY="hi3516cv300"
|
||||
BR2_OPENIPC_MODEL="hi3516cv300"
|
||||
BR2_OPENIPC_RELEASE="mini"
|
||||
|
||||
# Filesystem
|
||||
# BR2_TARGET_TZ_INFO is not set
|
||||
|
|
|
@ -28,7 +28,12 @@ BR2_LINUX_KERNEL_USE_CUSTOM_CONFIG=y
|
|||
BR2_LINUX_KERNEL_CUSTOM_CONFIG_FILE="$(BR2_EXTERNAL_VENDOR)/board/hi3516cv300/kernel/hi3516cv300.generic.config"
|
||||
BR2_LINUX_KERNEL_UIMAGE=y
|
||||
BR2_LINUX_KERNEL_XZ=y
|
||||
BR2_PACKAGE_VENDOR_PATCHER=y
|
||||
|
||||
# OpenIPC
|
||||
BR2_OPENIPC_VENDOR="hisilicon"
|
||||
BR2_OPENIPC_FAMILY="hi3516cv300"
|
||||
BR2_OPENIPC_MODEL="hi3516cv300"
|
||||
BR2_OPENIPC_RELEASE="ultimate"
|
||||
|
||||
# Filesystem
|
||||
# BR2_TARGET_TZ_INFO is not set
|
||||
|
|
|
@ -26,7 +26,12 @@ BR2_LINUX_KERNEL_USE_CUSTOM_CONFIG=y
|
|||
BR2_LINUX_KERNEL_CUSTOM_CONFIG_FILE="$(BR2_EXTERNAL_VENDOR)/board/hi3516cv500/kernel/hi3516cv500.generic.config"
|
||||
BR2_LINUX_KERNEL_UIMAGE=y
|
||||
BR2_LINUX_KERNEL_XZ=y
|
||||
BR2_PACKAGE_VENDOR_PATCHER=y
|
||||
|
||||
# OpenIPC
|
||||
BR2_OPENIPC_VENDOR="hisilicon"
|
||||
BR2_OPENIPC_FAMILY="hi3516cv500"
|
||||
BR2_OPENIPC_MODEL="hi3516cv500"
|
||||
BR2_OPENIPC_RELEASE="lite"
|
||||
|
||||
# Filesystem
|
||||
# BR2_TARGET_TZ_INFO is not set
|
||||
|
|
|
@ -29,7 +29,12 @@ BR2_LINUX_KERNEL_USE_CUSTOM_CONFIG=y
|
|||
BR2_LINUX_KERNEL_CUSTOM_CONFIG_FILE="$(BR2_EXTERNAL_VENDOR)/board/hi3516av100/kernel/hi3516dv100.generic.config"
|
||||
BR2_LINUX_KERNEL_UIMAGE=y
|
||||
BR2_LINUX_KERNEL_XZ=y
|
||||
BR2_PACKAGE_VENDOR_PATCHER=y
|
||||
|
||||
# OpenIPC
|
||||
BR2_OPENIPC_VENDOR="hisilicon"
|
||||
BR2_OPENIPC_FAMILY="hi3516av100"
|
||||
BR2_OPENIPC_MODEL="hi3516dv100"
|
||||
BR2_OPENIPC_RELEASE="lite"
|
||||
|
||||
# Filesystem
|
||||
# BR2_TARGET_TZ_INFO is not set
|
||||
|
|
|
@ -29,7 +29,12 @@ BR2_LINUX_KERNEL_USE_CUSTOM_CONFIG=y
|
|||
BR2_LINUX_KERNEL_CUSTOM_CONFIG_FILE="$(BR2_EXTERNAL_VENDOR)/board/hi3516av100/kernel/hi3516dv100.generic.config"
|
||||
BR2_LINUX_KERNEL_UIMAGE=y
|
||||
BR2_LINUX_KERNEL_XZ=y
|
||||
BR2_PACKAGE_VENDOR_PATCHER=y
|
||||
|
||||
# OpenIPC
|
||||
BR2_OPENIPC_VENDOR="hisilicon"
|
||||
BR2_OPENIPC_FAMILY="hi3516av100"
|
||||
BR2_OPENIPC_MODEL="hi3516dv100"
|
||||
BR2_OPENIPC_RELEASE="lite"
|
||||
|
||||
# Filesystem
|
||||
# BR2_TARGET_TZ_INFO is not set
|
||||
|
|
|
@ -29,7 +29,12 @@ BR2_LINUX_KERNEL_USE_CUSTOM_CONFIG=y
|
|||
BR2_LINUX_KERNEL_CUSTOM_CONFIG_FILE="$(BR2_EXTERNAL_VENDOR)/board/hi3516ev200/kernel/hi3516dv200.generic.config"
|
||||
BR2_LINUX_KERNEL_UIMAGE=y
|
||||
BR2_LINUX_KERNEL_XZ=y
|
||||
BR2_PACKAGE_VENDOR_PATCHER=y
|
||||
|
||||
# OpenIPC
|
||||
BR2_OPENIPC_VENDOR="hisilicon"
|
||||
BR2_OPENIPC_FAMILY="hi3516ev200"
|
||||
BR2_OPENIPC_MODEL="hi3516dv200"
|
||||
BR2_OPENIPC_RELEASE="lite"
|
||||
|
||||
# Filesystem
|
||||
# BR2_TARGET_TZ_INFO is not set
|
||||
|
|
|
@ -26,7 +26,12 @@ BR2_LINUX_KERNEL_USE_CUSTOM_CONFIG=y
|
|||
BR2_LINUX_KERNEL_CUSTOM_CONFIG_FILE="$(BR2_EXTERNAL_VENDOR)/board/hi3516cv500/kernel/hi3516dv300.generic.config"
|
||||
BR2_LINUX_KERNEL_UIMAGE=y
|
||||
BR2_LINUX_KERNEL_XZ=y
|
||||
BR2_PACKAGE_VENDOR_PATCHER=y
|
||||
|
||||
# OpenIPC
|
||||
BR2_OPENIPC_VENDOR="hisilicon"
|
||||
BR2_OPENIPC_FAMILY="hi3516cv500"
|
||||
BR2_OPENIPC_MODEL="hi3516dv300"
|
||||
BR2_OPENIPC_RELEASE="lite"
|
||||
|
||||
# Filesystem
|
||||
# BR2_TARGET_TZ_INFO is not set
|
||||
|
|
|
@ -28,7 +28,12 @@ BR2_LINUX_KERNEL_USE_CUSTOM_CONFIG=y
|
|||
BR2_LINUX_KERNEL_CUSTOM_CONFIG_FILE="$(BR2_EXTERNAL_VENDOR)/board/hi3516cv300/kernel/hi3516ev100.generic.config"
|
||||
BR2_LINUX_KERNEL_UIMAGE=y
|
||||
BR2_LINUX_KERNEL_XZ=y
|
||||
BR2_PACKAGE_VENDOR_PATCHER=y
|
||||
|
||||
# OpenIPC
|
||||
BR2_OPENIPC_VENDOR="hisilicon"
|
||||
BR2_OPENIPC_FAMILY="hi3516cv300"
|
||||
BR2_OPENIPC_MODEL="hi3516ev100"
|
||||
BR2_OPENIPC_RELEASE="lite"
|
||||
|
||||
# Filesystem
|
||||
# BR2_TARGET_TZ_INFO is not set
|
||||
|
|
|
@ -29,7 +29,12 @@ BR2_LINUX_KERNEL_USE_CUSTOM_CONFIG=y
|
|||
BR2_LINUX_KERNEL_CUSTOM_CONFIG_FILE="$(BR2_EXTERNAL_VENDOR)/board/hi3516ev200/kernel/hi3516ev200.generic-fpv.config"
|
||||
BR2_LINUX_KERNEL_UIMAGE=y
|
||||
BR2_LINUX_KERNEL_XZ=y
|
||||
BR2_PACKAGE_VENDOR_PATCHER=y
|
||||
|
||||
# OpenIPC
|
||||
BR2_OPENIPC_VENDOR="hisilicon"
|
||||
BR2_OPENIPC_FAMILY="hi3516ev200"
|
||||
BR2_OPENIPC_MODEL="hi3516ev200"
|
||||
BR2_OPENIPC_RELEASE="fpv"
|
||||
|
||||
# Filesystem
|
||||
# BR2_TARGET_TZ_INFO is not set
|
||||
|
|
|
@ -29,7 +29,12 @@ BR2_LINUX_KERNEL_USE_CUSTOM_CONFIG=y
|
|||
BR2_LINUX_KERNEL_CUSTOM_CONFIG_FILE="$(BR2_EXTERNAL_VENDOR)/board/hi3516ev200/kernel/hi3516ev200.generic.config"
|
||||
BR2_LINUX_KERNEL_UIMAGE=y
|
||||
BR2_LINUX_KERNEL_XZ=y
|
||||
BR2_PACKAGE_VENDOR_PATCHER=y
|
||||
|
||||
# OpenIPC
|
||||
BR2_OPENIPC_VENDOR="hisilicon"
|
||||
BR2_OPENIPC_FAMILY="hi3516ev200"
|
||||
BR2_OPENIPC_MODEL="hi3516ev200"
|
||||
BR2_OPENIPC_RELEASE="lite"
|
||||
|
||||
# Filesystem
|
||||
# BR2_TARGET_TZ_INFO is not set
|
||||
|
|
|
@ -29,7 +29,12 @@ BR2_LINUX_KERNEL_USE_CUSTOM_CONFIG=y
|
|||
BR2_LINUX_KERNEL_CUSTOM_CONFIG_FILE="$(BR2_EXTERNAL_VENDOR)/board/hi3516ev200/kernel/hi3516ev200.generic-fpv.config"
|
||||
BR2_LINUX_KERNEL_UIMAGE=y
|
||||
BR2_LINUX_KERNEL_XZ=y
|
||||
BR2_PACKAGE_VENDOR_PATCHER=y
|
||||
|
||||
# OpenIPC
|
||||
BR2_OPENIPC_VENDOR="hisilicon"
|
||||
BR2_OPENIPC_FAMILY="hi3516ev200"
|
||||
BR2_OPENIPC_MODEL="hi3516ev200"
|
||||
BR2_OPENIPC_RELEASE="fpv"
|
||||
|
||||
# Filesystem
|
||||
# BR2_TARGET_TZ_INFO is not set
|
||||
|
|
|
@ -29,7 +29,12 @@ BR2_LINUX_KERNEL_USE_CUSTOM_CONFIG=y
|
|||
BR2_LINUX_KERNEL_CUSTOM_CONFIG_FILE="$(BR2_EXTERNAL_VENDOR)/board/hi3516ev200/kernel/hi3516ev200.generic.config"
|
||||
BR2_LINUX_KERNEL_UIMAGE=y
|
||||
BR2_LINUX_KERNEL_XZ=y
|
||||
BR2_PACKAGE_VENDOR_PATCHER=y
|
||||
|
||||
# OpenIPC
|
||||
BR2_OPENIPC_VENDOR="hisilicon"
|
||||
BR2_OPENIPC_FAMILY="hi3516ev200"
|
||||
BR2_OPENIPC_MODEL="hi3516ev200"
|
||||
BR2_OPENIPC_RELEASE="ultimate"
|
||||
|
||||
# Filesystem
|
||||
# BR2_TARGET_TZ_INFO is not set
|
||||
|
|
|
@ -29,7 +29,12 @@ BR2_LINUX_KERNEL_USE_CUSTOM_CONFIG=y
|
|||
BR2_LINUX_KERNEL_CUSTOM_CONFIG_FILE="$(BR2_EXTERNAL_VENDOR)/board/hi3516ev200/kernel/hi3516ev300.generic.config"
|
||||
BR2_LINUX_KERNEL_UIMAGE=y
|
||||
BR2_LINUX_KERNEL_XZ=y
|
||||
BR2_PACKAGE_VENDOR_PATCHER=y
|
||||
|
||||
# OpenIPC
|
||||
BR2_OPENIPC_VENDOR="hisilicon"
|
||||
BR2_OPENIPC_FAMILY="hi3516ev200"
|
||||
BR2_OPENIPC_MODEL="hi3516ev300"
|
||||
BR2_OPENIPC_RELEASE="dev"
|
||||
|
||||
# Filesystem
|
||||
# BR2_TARGET_TZ_INFO is not set
|
||||
|
|
|
@ -29,7 +29,12 @@ BR2_LINUX_KERNEL_USE_CUSTOM_CONFIG=y
|
|||
BR2_LINUX_KERNEL_CUSTOM_CONFIG_FILE="$(BR2_EXTERNAL_VENDOR)/board/hi3516ev200/kernel/hi3516ev300.generic-fpv.config"
|
||||
BR2_LINUX_KERNEL_UIMAGE=y
|
||||
BR2_LINUX_KERNEL_XZ=y
|
||||
BR2_PACKAGE_VENDOR_PATCHER=y
|
||||
|
||||
# OpenIPC
|
||||
BR2_OPENIPC_VENDOR="hisilicon"
|
||||
BR2_OPENIPC_FAMILY="hi3516ev200"
|
||||
BR2_OPENIPC_MODEL="hi3516ev300"
|
||||
BR2_OPENIPC_RELEASE="fpv"
|
||||
|
||||
# Filesystem
|
||||
# BR2_TARGET_TZ_INFO is not set
|
||||
|
|
|
@ -32,7 +32,12 @@ BR2_LINUX_KERNEL_USE_CUSTOM_CONFIG=y
|
|||
BR2_LINUX_KERNEL_CUSTOM_CONFIG_FILE="$(BR2_EXTERNAL_VENDOR)/board/hi3516ev200/kernel/hi3516ev300.generic.config"
|
||||
BR2_LINUX_KERNEL_UIMAGE=y
|
||||
BR2_LINUX_KERNEL_XZ=y
|
||||
BR2_PACKAGE_VENDOR_PATCHER=y
|
||||
|
||||
# OpenIPC
|
||||
BR2_OPENIPC_VENDOR="hisilicon"
|
||||
BR2_OPENIPC_FAMILY="hi3516ev200"
|
||||
BR2_OPENIPC_MODEL="hi3516ev300"
|
||||
BR2_OPENIPC_RELEASE="glibc"
|
||||
|
||||
# Filesystem
|
||||
# BR2_TARGET_TZ_INFO is not set
|
||||
|
|
|
@ -29,7 +29,12 @@ BR2_LINUX_KERNEL_USE_CUSTOM_CONFIG=y
|
|||
BR2_LINUX_KERNEL_CUSTOM_CONFIG_FILE="$(BR2_EXTERNAL_VENDOR)/board/hi3516ev200/kernel/hi3516ev300.generic.config"
|
||||
BR2_LINUX_KERNEL_UIMAGE=y
|
||||
BR2_LINUX_KERNEL_XZ=y
|
||||
BR2_PACKAGE_VENDOR_PATCHER=y
|
||||
|
||||
# OpenIPC
|
||||
BR2_OPENIPC_VENDOR="hisilicon"
|
||||
BR2_OPENIPC_FAMILY="hi3516ev200"
|
||||
BR2_OPENIPC_MODEL="hi3516ev300"
|
||||
BR2_OPENIPC_RELEASE="lite"
|
||||
|
||||
# Filesystem
|
||||
# BR2_TARGET_TZ_INFO is not set
|
||||
|
|
|
@ -29,7 +29,12 @@ BR2_LINUX_KERNEL_USE_CUSTOM_CONFIG=y
|
|||
BR2_LINUX_KERNEL_CUSTOM_CONFIG_FILE="$(BR2_EXTERNAL_VENDOR)/board/hi3516ev200/kernel/hi3516ev300.generic-fpv.config"
|
||||
BR2_LINUX_KERNEL_UIMAGE=y
|
||||
BR2_LINUX_KERNEL_XZ=y
|
||||
BR2_PACKAGE_VENDOR_PATCHER=y
|
||||
|
||||
# OpenIPC
|
||||
BR2_OPENIPC_VENDOR="hisilicon"
|
||||
BR2_OPENIPC_FAMILY="hi3516ev200"
|
||||
BR2_OPENIPC_MODEL="hi3516ev300"
|
||||
BR2_OPENIPC_RELEASE="fpv"
|
||||
|
||||
# Filesystem
|
||||
# BR2_TARGET_TZ_INFO is not set
|
||||
|
|
|
@ -29,7 +29,12 @@ BR2_LINUX_KERNEL_USE_CUSTOM_CONFIG=y
|
|||
BR2_LINUX_KERNEL_CUSTOM_CONFIG_FILE="$(BR2_EXTERNAL_VENDOR)/board/hi3516ev200/kernel/hi3516ev300.generic.config"
|
||||
BR2_LINUX_KERNEL_UIMAGE=y
|
||||
BR2_LINUX_KERNEL_XZ=y
|
||||
BR2_PACKAGE_VENDOR_PATCHER=y
|
||||
|
||||
# OpenIPC
|
||||
BR2_OPENIPC_VENDOR="hisilicon"
|
||||
BR2_OPENIPC_FAMILY="hi3516ev200"
|
||||
BR2_OPENIPC_MODEL="hi3516ev300"
|
||||
BR2_OPENIPC_RELEASE="ultimate"
|
||||
|
||||
# Filesystem
|
||||
# BR2_TARGET_TZ_INFO is not set
|
||||
|
|
|
@ -27,7 +27,12 @@ BR2_LINUX_KERNEL_USE_CUSTOM_CONFIG=y
|
|||
BR2_LINUX_KERNEL_CUSTOM_CONFIG_FILE="$(BR2_EXTERNAL_VENDOR)/board/hi3516cv100/kernel/hi3518cv100.generic.config"
|
||||
BR2_LINUX_KERNEL_UIMAGE=y
|
||||
BR2_LINUX_KERNEL_XZ=y
|
||||
BR2_PACKAGE_VENDOR_PATCHER=y
|
||||
|
||||
# OpenIPC
|
||||
BR2_OPENIPC_VENDOR="hisilicon"
|
||||
BR2_OPENIPC_FAMILY="hi3516cv100"
|
||||
BR2_OPENIPC_MODEL="hi3518cv100"
|
||||
BR2_OPENIPC_RELEASE="lite"
|
||||
|
||||
# Filesystem
|
||||
# BR2_TARGET_TZ_INFO is not set
|
||||
|
|
|
@ -27,7 +27,12 @@ BR2_LINUX_KERNEL_USE_CUSTOM_CONFIG=y
|
|||
BR2_LINUX_KERNEL_CUSTOM_CONFIG_FILE="$(BR2_EXTERNAL_VENDOR)/board/hi3516cv100/kernel/hi3518ev100.generic.config"
|
||||
BR2_LINUX_KERNEL_UIMAGE=y
|
||||
BR2_LINUX_KERNEL_XZ=y
|
||||
BR2_PACKAGE_VENDOR_PATCHER=y
|
||||
|
||||
# OpenIPC
|
||||
BR2_OPENIPC_VENDOR="hisilicon"
|
||||
BR2_OPENIPC_FAMILY="hi3516cv100"
|
||||
BR2_OPENIPC_MODEL="hi3518ev100"
|
||||
BR2_OPENIPC_RELEASE="lite"
|
||||
|
||||
# Filesystem
|
||||
# BR2_TARGET_TZ_INFO is not set
|
||||
|
|
|
@ -28,7 +28,12 @@ BR2_LINUX_KERNEL_USE_CUSTOM_CONFIG=y
|
|||
BR2_LINUX_KERNEL_CUSTOM_CONFIG_FILE="$(BR2_EXTERNAL_VENDOR)/board/hi3516cv200/kernel/hi3518ev200.generic.config"
|
||||
BR2_LINUX_KERNEL_UIMAGE=y
|
||||
BR2_LINUX_KERNEL_XZ=y
|
||||
BR2_PACKAGE_VENDOR_PATCHER=y
|
||||
|
||||
# OpenIPC
|
||||
BR2_OPENIPC_VENDOR="hisilicon"
|
||||
BR2_OPENIPC_FAMILY="hi3516cv200"
|
||||
BR2_OPENIPC_MODEL="hi3518ev200"
|
||||
BR2_OPENIPC_RELEASE="lite"
|
||||
|
||||
# Filesystem
|
||||
# BR2_TARGET_TZ_INFO is not set
|
||||
|
|
|
@ -28,7 +28,12 @@ BR2_LINUX_KERNEL_USE_CUSTOM_CONFIG=y
|
|||
BR2_LINUX_KERNEL_CUSTOM_CONFIG_FILE="$(BR2_EXTERNAL_VENDOR)/board/hi3516cv200/kernel/hi3518ev200.generic.config"
|
||||
BR2_LINUX_KERNEL_UIMAGE=y
|
||||
BR2_LINUX_KERNEL_XZ=y
|
||||
BR2_PACKAGE_VENDOR_PATCHER=y
|
||||
|
||||
# OpenIPC
|
||||
BR2_OPENIPC_VENDOR="hisilicon"
|
||||
BR2_OPENIPC_FAMILY="hi3516cv200"
|
||||
BR2_OPENIPC_MODEL="hi3518ev200"
|
||||
BR2_OPENIPC_RELEASE="mini"
|
||||
|
||||
# Filesystem
|
||||
# BR2_TARGET_TZ_INFO is not set
|
||||
|
|
|
@ -28,7 +28,12 @@ BR2_LINUX_KERNEL_USE_CUSTOM_CONFIG=y
|
|||
BR2_LINUX_KERNEL_CUSTOM_CONFIG_FILE="$(BR2_EXTERNAL_VENDOR)/board/hi3516cv200/kernel/hi3518ev200.generic.config"
|
||||
BR2_LINUX_KERNEL_UIMAGE=y
|
||||
BR2_LINUX_KERNEL_XZ=y
|
||||
BR2_PACKAGE_VENDOR_PATCHER=y
|
||||
|
||||
# OpenIPC
|
||||
BR2_OPENIPC_VENDOR="hisilicon"
|
||||
BR2_OPENIPC_FAMILY="hi3516cv200"
|
||||
BR2_OPENIPC_MODEL="hi3518ev200"
|
||||
BR2_OPENIPC_RELEASE="ultimate"
|
||||
|
||||
# Filesystem
|
||||
# BR2_TARGET_TZ_INFO is not set
|
||||
|
|
|
@ -28,7 +28,12 @@ BR2_LINUX_KERNEL_USE_CUSTOM_CONFIG=y
|
|||
BR2_LINUX_KERNEL_CUSTOM_CONFIG_FILE="$(BR2_EXTERNAL_VENDOR)/board/hi3516cv200/kernel/hi3518ev201.generic.config"
|
||||
BR2_LINUX_KERNEL_UIMAGE=y
|
||||
BR2_LINUX_KERNEL_XZ=y
|
||||
BR2_PACKAGE_VENDOR_PATCHER=y
|
||||
|
||||
# OpenIPC
|
||||
BR2_OPENIPC_VENDOR="hisilicon"
|
||||
BR2_OPENIPC_FAMILY="hi3516cv200"
|
||||
BR2_OPENIPC_MODEL="hi3518ev201"
|
||||
BR2_OPENIPC_RELEASE="lite"
|
||||
|
||||
# Filesystem
|
||||
# BR2_TARGET_TZ_INFO is not set
|
||||
|
|
|
@ -29,7 +29,12 @@ BR2_LINUX_KERNEL_USE_CUSTOM_CONFIG=y
|
|||
BR2_LINUX_KERNEL_CUSTOM_CONFIG_FILE="$(BR2_EXTERNAL_VENDOR)/board/hi3516ev200/kernel/hi3518ev300.generic.config"
|
||||
BR2_LINUX_KERNEL_UIMAGE=y
|
||||
BR2_LINUX_KERNEL_XZ=y
|
||||
BR2_PACKAGE_VENDOR_PATCHER=y
|
||||
|
||||
# OpenIPC
|
||||
BR2_OPENIPC_VENDOR="hisilicon"
|
||||
BR2_OPENIPC_FAMILY="hi3516ev200"
|
||||
BR2_OPENIPC_MODEL="hi3518ev300"
|
||||
BR2_OPENIPC_RELEASE="lite"
|
||||
|
||||
# Filesystem
|
||||
# BR2_TARGET_TZ_INFO is not set
|
||||
|
|
|
@ -29,7 +29,12 @@ BR2_LINUX_KERNEL_USE_CUSTOM_CONFIG=y
|
|||
BR2_LINUX_KERNEL_CUSTOM_CONFIG_FILE="$(BR2_EXTERNAL_VENDOR)/board/hi3516ev200/kernel/hi3518ev300.generic.config"
|
||||
BR2_LINUX_KERNEL_UIMAGE=y
|
||||
BR2_LINUX_KERNEL_XZ=y
|
||||
BR2_PACKAGE_VENDOR_PATCHER=y
|
||||
|
||||
# OpenIPC
|
||||
BR2_OPENIPC_VENDOR="hisilicon"
|
||||
BR2_OPENIPC_FAMILY="hi3516ev200"
|
||||
BR2_OPENIPC_MODEL="hi3518ev300"
|
||||
BR2_OPENIPC_RELEASE="ultimate"
|
||||
|
||||
# Filesystem
|
||||
# BR2_TARGET_TZ_INFO is not set
|
||||
|
|
|
@ -29,7 +29,12 @@ BR2_LINUX_KERNEL_USE_CUSTOM_CONFIG=y
|
|||
BR2_LINUX_KERNEL_CUSTOM_CONFIG_FILE="$(BR2_EXTERNAL_VENDOR)/board/hi3519v101/kernel/hi3519v101.generic.config"
|
||||
BR2_LINUX_KERNEL_UIMAGE=y
|
||||
BR2_LINUX_KERNEL_XZ=y
|
||||
BR2_PACKAGE_VENDOR_PATCHER=y
|
||||
|
||||
# OpenIPC
|
||||
BR2_OPENIPC_VENDOR="hisilicon"
|
||||
BR2_OPENIPC_FAMILY="hi3519v101"
|
||||
BR2_OPENIPC_MODEL="hi3519v101"
|
||||
BR2_OPENIPC_RELEASE="lite"
|
||||
|
||||
# Filesystem
|
||||
# BR2_TARGET_TZ_INFO is not set
|
||||
|
|
|
@ -30,7 +30,12 @@ BR2_LINUX_KERNEL_CUSTOM_CONFIG_FILE="$(BR2_EXTERNAL_VENDOR)/board/hi3520dv200/ke
|
|||
BR2_LINUX_KERNEL_UIMAGE=y
|
||||
BR2_LINUX_KERNEL_UIMAGE_LOADADDR="0x80008000"
|
||||
BR2_LINUX_KERNEL_XZ=y
|
||||
BR2_PACKAGE_VENDOR_PATCHER=y
|
||||
|
||||
# OpenIPC
|
||||
BR2_OPENIPC_VENDOR="hisilicon"
|
||||
BR2_OPENIPC_FAMILY="hi3520dv200"
|
||||
BR2_OPENIPC_MODEL="hi3520dv200"
|
||||
BR2_OPENIPC_RELEASE="lite"
|
||||
|
||||
# Filesystem
|
||||
# BR2_TARGET_TZ_INFO is not set
|
||||
|
|
|
@ -30,7 +30,12 @@ BR2_LINUX_KERNEL_CUSTOM_CONFIG_FILE="$(BR2_EXTERNAL_VENDOR)/board/hi3536cv100/ke
|
|||
BR2_LINUX_KERNEL_UIMAGE=y
|
||||
BR2_LINUX_KERNEL_UIMAGE_LOADADDR="0x80008000"
|
||||
BR2_LINUX_KERNEL_XZ=y
|
||||
BR2_PACKAGE_VENDOR_PATCHER=y
|
||||
|
||||
# OpenIPC
|
||||
BR2_OPENIPC_VENDOR="hisilicon"
|
||||
BR2_OPENIPC_FAMILY="hi3536cv100"
|
||||
BR2_OPENIPC_MODEL="hi3536cv100"
|
||||
BR2_OPENIPC_RELEASE="lite"
|
||||
|
||||
# Filesystem
|
||||
# BR2_TARGET_TZ_INFO is not set
|
||||
|
|
|
@ -37,7 +37,12 @@ BR2_LINUX_KERNEL_CUSTOM_CONFIG_FILE="$(BR2_EXTERNAL_VENDOR)/board/hi3536dv100/ke
|
|||
BR2_LINUX_KERNEL_UIMAGE=y
|
||||
BR2_LINUX_KERNEL_UIMAGE_LOADADDR="0x80008000"
|
||||
BR2_LINUX_KERNEL_XZ=y
|
||||
BR2_PACKAGE_VENDOR_PATCHER=y
|
||||
|
||||
# OpenIPC
|
||||
BR2_OPENIPC_VENDOR="hisilicon"
|
||||
BR2_OPENIPC_FAMILY="hi3536dv100"
|
||||
BR2_OPENIPC_MODEL="hi3536dv100"
|
||||
BR2_OPENIPC_RELEASE="fpv"
|
||||
|
||||
# Filesystem
|
||||
# BR2_TARGET_TZ_INFO is not set
|
||||
|
|
|
@ -30,7 +30,12 @@ BR2_LINUX_KERNEL_CUSTOM_CONFIG_FILE="$(BR2_EXTERNAL_VENDOR)/board/hi3536dv100/ke
|
|||
BR2_LINUX_KERNEL_UIMAGE=y
|
||||
BR2_LINUX_KERNEL_UIMAGE_LOADADDR="0x80008000"
|
||||
BR2_LINUX_KERNEL_XZ=y
|
||||
BR2_PACKAGE_VENDOR_PATCHER=y
|
||||
|
||||
# OpenIPC
|
||||
BR2_OPENIPC_VENDOR="hisilicon"
|
||||
BR2_OPENIPC_FAMILY="hi3536dv100"
|
||||
BR2_OPENIPC_MODEL="hi3536dv100"
|
||||
BR2_OPENIPC_RELEASE="lite"
|
||||
|
||||
# Filesystem
|
||||
# BR2_TARGET_TZ_INFO is not set
|
||||
|
|
|
@ -0,0 +1 @@
|
|||
t31
|
|
@ -29,10 +29,15 @@ BR2_LINUX_KERNEL=y
|
|||
BR2_LINUX_KERNEL_CUSTOM_VERSION=y
|
||||
BR2_LINUX_KERNEL_CUSTOM_VERSION_VALUE="3.10.14"
|
||||
BR2_LINUX_KERNEL_USE_CUSTOM_CONFIG=y
|
||||
BR2_LINUX_KERNEL_CUSTOM_CONFIG_FILE="$(BR2_EXTERNAL_VENDOR)/board/t31/kernel/t10.generic.config"
|
||||
BR2_LINUX_KERNEL_CUSTOM_CONFIG_FILE="$(BR2_EXTERNAL_VENDOR)/board/t21/kernel/t10.generic.config"
|
||||
BR2_LINUX_KERNEL_UIMAGE=y
|
||||
BR2_LINUX_KERNEL_LZMA=y
|
||||
BR2_PACKAGE_VENDOR_PATCHER=y
|
||||
|
||||
# OpenIPC
|
||||
BR2_OPENIPC_VENDOR="ingenic"
|
||||
BR2_OPENIPC_FAMILY="t21"
|
||||
BR2_OPENIPC_MODEL="t10"
|
||||
BR2_OPENIPC_RELEASE="lite"
|
||||
|
||||
# Filesystem
|
||||
# BR2_TARGET_TZ_INFO is not set
|
||||
|
|
|
@ -29,10 +29,15 @@ BR2_LINUX_KERNEL=y
|
|||
BR2_LINUX_KERNEL_CUSTOM_VERSION=y
|
||||
BR2_LINUX_KERNEL_CUSTOM_VERSION_VALUE="3.10.14"
|
||||
BR2_LINUX_KERNEL_USE_CUSTOM_CONFIG=y
|
||||
BR2_LINUX_KERNEL_CUSTOM_CONFIG_FILE="$(BR2_EXTERNAL_VENDOR)/board/t31/kernel/t20.generic.config"
|
||||
BR2_LINUX_KERNEL_CUSTOM_CONFIG_FILE="$(BR2_EXTERNAL_VENDOR)/board/t21/kernel/t20.generic.config"
|
||||
BR2_LINUX_KERNEL_UIMAGE=y
|
||||
BR2_LINUX_KERNEL_LZMA=y
|
||||
BR2_PACKAGE_VENDOR_PATCHER=y
|
||||
|
||||
# OpenIPC
|
||||
BR2_OPENIPC_VENDOR="ingenic"
|
||||
BR2_OPENIPC_FAMILY="t21"
|
||||
BR2_OPENIPC_MODEL="t20"
|
||||
BR2_OPENIPC_RELEASE="lite"
|
||||
|
||||
# Filesystem
|
||||
# BR2_TARGET_TZ_INFO is not set
|
||||
|
|
|
@ -29,10 +29,15 @@ BR2_LINUX_KERNEL=y
|
|||
BR2_LINUX_KERNEL_CUSTOM_VERSION=y
|
||||
BR2_LINUX_KERNEL_CUSTOM_VERSION_VALUE="3.10.14"
|
||||
BR2_LINUX_KERNEL_USE_CUSTOM_CONFIG=y
|
||||
BR2_LINUX_KERNEL_CUSTOM_CONFIG_FILE="$(BR2_EXTERNAL_VENDOR)/board/t31/kernel/t21.generic.config"
|
||||
BR2_LINUX_KERNEL_CUSTOM_CONFIG_FILE="$(BR2_EXTERNAL_VENDOR)/board/t21/kernel/t21.generic.config"
|
||||
BR2_LINUX_KERNEL_UIMAGE=y
|
||||
BR2_LINUX_KERNEL_LZMA=y
|
||||
BR2_PACKAGE_VENDOR_PATCHER=y
|
||||
|
||||
# OpenIPC
|
||||
BR2_OPENIPC_VENDOR="ingenic"
|
||||
BR2_OPENIPC_FAMILY="t21"
|
||||
BR2_OPENIPC_MODEL="t21"
|
||||
BR2_OPENIPC_RELEASE="lite"
|
||||
|
||||
# Filesystem
|
||||
# BR2_TARGET_TZ_INFO is not set
|
||||
|
|
|
@ -29,10 +29,15 @@ BR2_LINUX_KERNEL=y
|
|||
BR2_LINUX_KERNEL_CUSTOM_VERSION=y
|
||||
BR2_LINUX_KERNEL_CUSTOM_VERSION_VALUE="3.10.14"
|
||||
BR2_LINUX_KERNEL_USE_CUSTOM_CONFIG=y
|
||||
BR2_LINUX_KERNEL_CUSTOM_CONFIG_FILE="$(BR2_EXTERNAL_VENDOR)/board/t31/kernel/t30.generic.config"
|
||||
BR2_LINUX_KERNEL_CUSTOM_CONFIG_FILE="$(BR2_EXTERNAL_VENDOR)/board/t21/kernel/t30.generic.config"
|
||||
BR2_LINUX_KERNEL_UIMAGE=y
|
||||
BR2_LINUX_KERNEL_LZMA=y
|
||||
BR2_PACKAGE_VENDOR_PATCHER=y
|
||||
|
||||
# OpenIPC
|
||||
BR2_OPENIPC_VENDOR="ingenic"
|
||||
BR2_OPENIPC_FAMILY="t21"
|
||||
BR2_OPENIPC_MODEL="t30"
|
||||
BR2_OPENIPC_RELEASE="lite"
|
||||
|
||||
# Filesystem
|
||||
# BR2_TARGET_TZ_INFO is not set
|
||||
|
|
|
@ -32,7 +32,12 @@ BR2_LINUX_KERNEL_USE_CUSTOM_CONFIG=y
|
|||
BR2_LINUX_KERNEL_CUSTOM_CONFIG_FILE="$(BR2_EXTERNAL_VENDOR)/board/t31/kernel/t31.generic-fpv.config"
|
||||
BR2_LINUX_KERNEL_UIMAGE=y
|
||||
BR2_LINUX_KERNEL_LZMA=y
|
||||
BR2_PACKAGE_VENDOR_PATCHER=y
|
||||
|
||||
# OpenIPC
|
||||
BR2_OPENIPC_VENDOR="ingenic"
|
||||
BR2_OPENIPC_FAMILY="t31"
|
||||
BR2_OPENIPC_MODEL="t31"
|
||||
BR2_OPENIPC_RELEASE="fpv"
|
||||
|
||||
# Filesystem
|
||||
# BR2_TARGET_TZ_INFO is not set
|
||||
|
|
|
@ -32,7 +32,12 @@ BR2_LINUX_KERNEL_USE_CUSTOM_CONFIG=y
|
|||
BR2_LINUX_KERNEL_CUSTOM_CONFIG_FILE="$(BR2_EXTERNAL_VENDOR)/board/t31/kernel/t31.generic.config"
|
||||
BR2_LINUX_KERNEL_UIMAGE=y
|
||||
BR2_LINUX_KERNEL_LZMA=y
|
||||
BR2_PACKAGE_VENDOR_PATCHER=y
|
||||
|
||||
# OpenIPC
|
||||
BR2_OPENIPC_VENDOR="ingenic"
|
||||
BR2_OPENIPC_FAMILY="t31"
|
||||
BR2_OPENIPC_MODEL="t31"
|
||||
BR2_OPENIPC_RELEASE="lite"
|
||||
|
||||
# Filesystem
|
||||
# BR2_TARGET_TZ_INFO is not set
|
||||
|
|
|
@ -32,7 +32,12 @@ BR2_LINUX_KERNEL_USE_CUSTOM_CONFIG=y
|
|||
BR2_LINUX_KERNEL_CUSTOM_CONFIG_FILE="$(BR2_EXTERNAL_VENDOR)/board/t31/kernel/t31.generic.config"
|
||||
BR2_LINUX_KERNEL_UIMAGE=y
|
||||
BR2_LINUX_KERNEL_LZMA=y
|
||||
BR2_PACKAGE_VENDOR_PATCHER=y
|
||||
|
||||
# OpenIPC
|
||||
BR2_OPENIPC_VENDOR="ingenic"
|
||||
BR2_OPENIPC_FAMILY="t31"
|
||||
BR2_OPENIPC_MODEL="t31"
|
||||
BR2_OPENIPC_RELEASE="ultimate"
|
||||
|
||||
# Filesystem
|
||||
# BR2_TARGET_TZ_INFO is not set
|
||||
|
|
|
@ -32,7 +32,12 @@ BR2_LINUX_KERNEL_USE_CUSTOM_CONFIG=y
|
|||
BR2_LINUX_KERNEL_CUSTOM_CONFIG_FILE="$(BR2_EXTERNAL_VENDOR)/board/t40/kernel/t40.generic.config"
|
||||
BR2_LINUX_KERNEL_UIMAGE=y
|
||||
BR2_LINUX_KERNEL_LZMA=y
|
||||
BR2_PACKAGE_VENDOR_PATCHER=y
|
||||
|
||||
# OpenIPC
|
||||
BR2_OPENIPC_VENDOR="ingenic"
|
||||
BR2_OPENIPC_FAMILY="t40"
|
||||
BR2_OPENIPC_MODEL="t40"
|
||||
BR2_OPENIPC_RELEASE="lite"
|
||||
|
||||
# Filesystem
|
||||
# BR2_TARGET_TZ_INFO is not set
|
||||
|
|
|
@ -32,7 +32,12 @@ BR2_LINUX_KERNEL_USE_CUSTOM_CONFIG=y
|
|||
BR2_LINUX_KERNEL_CUSTOM_CONFIG_FILE="$(BR2_EXTERNAL_VENDOR)/board/t40/kernel/t40.generic.config"
|
||||
BR2_LINUX_KERNEL_UIMAGE=y
|
||||
BR2_LINUX_KERNEL_LZMA=y
|
||||
BR2_PACKAGE_VENDOR_PATCHER=y
|
||||
|
||||
# OpenIPC
|
||||
BR2_OPENIPC_VENDOR="ingenic"
|
||||
BR2_OPENIPC_FAMILY="t40"
|
||||
BR2_OPENIPC_MODEL="t40"
|
||||
BR2_OPENIPC_RELEASE="ultimate"
|
||||
|
||||
# Filesystem
|
||||
# BR2_TARGET_TZ_INFO is not set
|
||||
|
|
|
@ -32,7 +32,12 @@ BR2_LINUX_KERNEL_USE_CUSTOM_CONFIG=y
|
|||
BR2_LINUX_KERNEL_CUSTOM_CONFIG_FILE="$(BR2_EXTERNAL_VENDOR)/board/nt9856x/kernel/nt98562.generic.config"
|
||||
BR2_LINUX_KERNEL_UIMAGE=y
|
||||
BR2_LINUX_KERNEL_XZ=y
|
||||
BR2_PACKAGE_VENDOR_PATCHER=y
|
||||
|
||||
# OpenIPC
|
||||
BR2_OPENIPC_VENDOR="novatek"
|
||||
BR2_OPENIPC_FAMILY="nt9856x"
|
||||
BR2_OPENIPC_MODEL="nt98562"
|
||||
BR2_OPENIPC_RELEASE="lite"
|
||||
|
||||
# Filesystem
|
||||
# BR2_TARGET_TZ_INFO is not set
|
||||
|
|
|
@ -31,7 +31,12 @@ BR2_LINUX_KERNEL_USE_CUSTOM_CONFIG=y
|
|||
BR2_LINUX_KERNEL_CUSTOM_CONFIG_FILE="$(BR2_EXTERNAL_VENDOR)/board/nt9856x/kernel/nt98566.generic.config"
|
||||
BR2_LINUX_KERNEL_UIMAGE=y
|
||||
BR2_LINUX_KERNEL_XZ=y
|
||||
BR2_PACKAGE_VENDOR_PATCHER=y
|
||||
|
||||
# OpenIPC
|
||||
BR2_OPENIPC_VENDOR="novatek"
|
||||
BR2_OPENIPC_FAMILY="nt9856x"
|
||||
BR2_OPENIPC_MODEL="nt98566"
|
||||
BR2_OPENIPC_RELEASE="lite"
|
||||
|
||||
# Filesystem
|
||||
# BR2_TARGET_TZ_INFO is not set
|
||||
|
|
|
@ -38,7 +38,12 @@ BR2_LINUX_KERNEL_IMAGE_TARGET_NAME="rv1109-38x38-v10-spi-nand-imx307.img"
|
|||
#BR2_LINUX_KERNEL_IMAGE_TARGET_NAME="rv1109-38x38-v10-spi-nand-imx335.img"
|
||||
BR2_LINUX_KERNEL_IMAGE_NAME="zboot.img"
|
||||
BR2_LINUX_KERNEL_XZ=y
|
||||
BR2_PACKAGE_VENDOR_PATCHER=y
|
||||
|
||||
# OpenIPC
|
||||
BR2_OPENIPC_VENDOR="rockchip"
|
||||
BR2_OPENIPC_FAMILY="rv11xx"
|
||||
BR2_OPENIPC_MODEL="rv1109"
|
||||
BR2_OPENIPC_RELEASE="lite"
|
||||
|
||||
# Filesystem
|
||||
# BR2_TARGET_TZ_INFO is not set
|
||||
|
|
|
@ -37,7 +37,12 @@ BR2_LINUX_KERNEL_IMAGE_TARGET_CUSTOM=y
|
|||
BR2_LINUX_KERNEL_IMAGE_TARGET_NAME="rv1126-ai-cam-ddr3-v1.img"
|
||||
BR2_LINUX_KERNEL_IMAGE_NAME="zboot.img"
|
||||
BR2_LINUX_KERNEL_XZ=y
|
||||
BR2_PACKAGE_VENDOR_PATCHER=y
|
||||
|
||||
# OpenIPC
|
||||
BR2_OPENIPC_VENDOR="rockchip"
|
||||
BR2_OPENIPC_FAMILY="rv11xx"
|
||||
BR2_OPENIPC_MODEL="rv1126"
|
||||
BR2_OPENIPC_RELEASE="lite"
|
||||
|
||||
# Filesystem
|
||||
# BR2_TARGET_TZ_INFO is not set
|
||||
|
|
|
@ -29,7 +29,12 @@ BR2_LINUX_KERNEL_USE_CUSTOM_CONFIG=y
|
|||
BR2_LINUX_KERNEL_CUSTOM_CONFIG_FILE="$(BR2_EXTERNAL_VENDOR)/board/infinity3/kernel/msc313e.generic.config"
|
||||
BR2_LINUX_KERNEL_UIMAGE=y
|
||||
BR2_LINUX_KERNEL_XZ=y
|
||||
BR2_PACKAGE_VENDOR_PATCHER=y
|
||||
|
||||
# OpenIPC
|
||||
BR2_OPENIPC_VENDOR="sigmastar"
|
||||
BR2_OPENIPC_FAMILY="infinity3"
|
||||
BR2_OPENIPC_MODEL="msc313e"
|
||||
BR2_OPENIPC_RELEASE="lite"
|
||||
|
||||
# Filesystem
|
||||
# BR2_TARGET_TZ_INFO is not set
|
||||
|
|
|
@ -32,7 +32,12 @@ BR2_LINUX_KERNEL_USE_CUSTOM_CONFIG=y
|
|||
BR2_LINUX_KERNEL_CUSTOM_CONFIG_FILE="$(BR2_EXTERNAL_VENDOR)/board/infinity3/kernel/msc316dc.generic.config"
|
||||
BR2_LINUX_KERNEL_UIMAGE=y
|
||||
BR2_LINUX_KERNEL_XZ=y
|
||||
BR2_PACKAGE_VENDOR_PATCHER=y
|
||||
|
||||
# OpenIPC
|
||||
BR2_OPENIPC_VENDOR="sigmastar"
|
||||
BR2_OPENIPC_FAMILY="infinity3"
|
||||
BR2_OPENIPC_MODEL="msc316dc"
|
||||
BR2_OPENIPC_RELEASE="lite"
|
||||
|
||||
# Filesystem
|
||||
# BR2_TARGET_TZ_INFO is not set
|
||||
|
|
|
@ -29,7 +29,12 @@ BR2_LINUX_KERNEL_USE_CUSTOM_CONFIG=y
|
|||
BR2_LINUX_KERNEL_CUSTOM_CONFIG_FILE="$(BR2_EXTERNAL_VENDOR)/board/infinity3/kernel/msc316dm.generic.config"
|
||||
BR2_LINUX_KERNEL_UIMAGE=y
|
||||
BR2_LINUX_KERNEL_XZ=y
|
||||
BR2_PACKAGE_VENDOR_PATCHER=y
|
||||
|
||||
# OpenIPC
|
||||
BR2_OPENIPC_VENDOR="sigmastar"
|
||||
BR2_OPENIPC_FAMILY="infinity3"
|
||||
BR2_OPENIPC_MODEL="msc316dm"
|
||||
BR2_OPENIPC_RELEASE="lite"
|
||||
|
||||
# Filesystem
|
||||
# BR2_TARGET_TZ_INFO is not set
|
||||
|
|
|
@ -29,7 +29,12 @@ BR2_LINUX_KERNEL_USE_CUSTOM_CONFIG=y
|
|||
BR2_LINUX_KERNEL_CUSTOM_CONFIG_FILE="$(BR2_EXTERNAL_VENDOR)/board/infinity6b0/kernel/ssc325.generic.config"
|
||||
BR2_LINUX_KERNEL_UIMAGE=y
|
||||
BR2_LINUX_KERNEL_XZ=y
|
||||
BR2_PACKAGE_VENDOR_PATCHER=y
|
||||
|
||||
# OpenIPC
|
||||
BR2_OPENIPC_VENDOR="sigmastar"
|
||||
BR2_OPENIPC_FAMILY="infinity6b0"
|
||||
BR2_OPENIPC_MODEL="ssc325"
|
||||
BR2_OPENIPC_RELEASE="lite"
|
||||
|
||||
# Filesystem
|
||||
# BR2_TARGET_TZ_INFO is not set
|
||||
|
|
|
@ -29,7 +29,12 @@ BR2_LINUX_KERNEL_USE_CUSTOM_CONFIG=y
|
|||
BR2_LINUX_KERNEL_CUSTOM_CONFIG_FILE="$(BR2_EXTERNAL_VENDOR)/board/infinity6b0/kernel/ssc333.generic.config"
|
||||
BR2_LINUX_KERNEL_UIMAGE=y
|
||||
BR2_LINUX_KERNEL_XZ=y
|
||||
BR2_PACKAGE_VENDOR_PATCHER=y
|
||||
|
||||
# OpenIPC
|
||||
BR2_OPENIPC_VENDOR="sigmastar"
|
||||
BR2_OPENIPC_FAMILY="infinity6b0"
|
||||
BR2_OPENIPC_MODEL="ssc333"
|
||||
BR2_OPENIPC_RELEASE="lite"
|
||||
|
||||
# Filesystem
|
||||
# BR2_TARGET_TZ_INFO is not set
|
||||
|
|
|
@ -25,7 +25,12 @@ BR2_LINUX_KERNEL_USE_CUSTOM_CONFIG=y
|
|||
BR2_LINUX_KERNEL_CUSTOM_CONFIG_FILE="$(BR2_EXTERNAL_VENDOR)/board/infinity6b0/kernel/ssc335.initramfs.config"
|
||||
BR2_LINUX_KERNEL_UIMAGE=y
|
||||
BR2_LINUX_KERNEL_XZ=y
|
||||
BR2_PACKAGE_VENDOR_PATCHER=y
|
||||
|
||||
# OpenIPC
|
||||
BR2_OPENIPC_VENDOR="sigmastar"
|
||||
BR2_OPENIPC_FAMILY="infinity6b0"
|
||||
BR2_OPENIPC_MODEL="ssc335"
|
||||
BR2_OPENIPC_RELEASE="initramfs"
|
||||
|
||||
# Filesystem
|
||||
BR2_TARGET_ROOTFS_INITRAMFS=y
|
||||
|
|
|
@ -29,7 +29,12 @@ BR2_LINUX_KERNEL_USE_CUSTOM_CONFIG=y
|
|||
BR2_LINUX_KERNEL_CUSTOM_CONFIG_FILE="$(BR2_EXTERNAL_VENDOR)/board/infinity6b0/kernel/ssc335.generic.config"
|
||||
BR2_LINUX_KERNEL_UIMAGE=y
|
||||
BR2_LINUX_KERNEL_XZ=y
|
||||
BR2_PACKAGE_VENDOR_PATCHER=y
|
||||
|
||||
# OpenIPC
|
||||
BR2_OPENIPC_VENDOR="sigmastar"
|
||||
BR2_OPENIPC_FAMILY="infinity6b0"
|
||||
BR2_OPENIPC_MODEL="ssc335"
|
||||
BR2_OPENIPC_RELEASE="lite"
|
||||
|
||||
# Filesystem
|
||||
# BR2_TARGET_TZ_INFO is not set
|
||||
|
|
|
@ -29,7 +29,12 @@ BR2_LINUX_KERNEL_USE_CUSTOM_CONFIG=y
|
|||
BR2_LINUX_KERNEL_CUSTOM_CONFIG_FILE="$(BR2_EXTERNAL_VENDOR)/board/infinity6b0/kernel/ssc335de.generic.config"
|
||||
BR2_LINUX_KERNEL_UIMAGE=y
|
||||
BR2_LINUX_KERNEL_XZ=y
|
||||
BR2_PACKAGE_VENDOR_PATCHER=y
|
||||
|
||||
# OpenIPC
|
||||
BR2_OPENIPC_VENDOR="sigmastar"
|
||||
BR2_OPENIPC_FAMILY="infinity6b0"
|
||||
BR2_OPENIPC_MODEL="ssc335de"
|
||||
BR2_OPENIPC_RELEASE="lite"
|
||||
|
||||
# Filesystem
|
||||
# BR2_TARGET_TZ_INFO is not set
|
||||
|
|
|
@ -29,7 +29,12 @@ BR2_LINUX_KERNEL_USE_CUSTOM_CONFIG=y
|
|||
BR2_LINUX_KERNEL_CUSTOM_CONFIG_FILE="$(BR2_EXTERNAL_VENDOR)/board/infinity6b0/kernel/ssc337.generic.config"
|
||||
BR2_LINUX_KERNEL_UIMAGE=y
|
||||
BR2_LINUX_KERNEL_XZ=y
|
||||
BR2_PACKAGE_VENDOR_PATCHER=y
|
||||
|
||||
# OpenIPC
|
||||
BR2_OPENIPC_VENDOR="sigmastar"
|
||||
BR2_OPENIPC_FAMILY="infinity6b0"
|
||||
BR2_OPENIPC_MODEL="ssc337"
|
||||
BR2_OPENIPC_RELEASE="lite"
|
||||
|
||||
# Filesystem
|
||||
# BR2_TARGET_TZ_INFO is not set
|
||||
|
|
|
@ -29,7 +29,12 @@ BR2_LINUX_KERNEL_USE_CUSTOM_CONFIG=y
|
|||
BR2_LINUX_KERNEL_CUSTOM_CONFIG_FILE="$(BR2_EXTERNAL_VENDOR)/board/infinity6b0/kernel/ssc337de.generic.config"
|
||||
BR2_LINUX_KERNEL_UIMAGE=y
|
||||
BR2_LINUX_KERNEL_XZ=y
|
||||
BR2_PACKAGE_VENDOR_PATCHER=y
|
||||
|
||||
# OpenIPC
|
||||
BR2_OPENIPC_VENDOR="sigmastar"
|
||||
BR2_OPENIPC_FAMILY="infinity6b0"
|
||||
BR2_OPENIPC_MODEL="ssc337de"
|
||||
BR2_OPENIPC_RELEASE="lite"
|
||||
|
||||
# Filesystem
|
||||
# BR2_TARGET_TZ_INFO is not set
|
||||
|
|
|
@ -26,7 +26,12 @@ BR2_LINUX_KERNEL_USE_CUSTOM_CONFIG=y
|
|||
BR2_LINUX_KERNEL_CUSTOM_CONFIG_FILE="$(BR2_EXTERNAL_VENDOR)/board/infinity6e/kernel/ssc338q.generic.config"
|
||||
BR2_LINUX_KERNEL_UIMAGE=y
|
||||
BR2_LINUX_KERNEL_XZ=y
|
||||
BR2_PACKAGE_VENDOR_PATCHER=y
|
||||
|
||||
# OpenIPC
|
||||
BR2_OPENIPC_VENDOR="sigmastar"
|
||||
BR2_OPENIPC_FAMILY="infinity6e"
|
||||
BR2_OPENIPC_MODEL="ssc338q"
|
||||
BR2_OPENIPC_RELEASE="initramfs"
|
||||
|
||||
# Filesystem
|
||||
# BR2_TARGET_TZ_INFO is not set
|
||||
|
|
|
@ -26,7 +26,12 @@ BR2_LINUX_KERNEL_USE_CUSTOM_CONFIG=y
|
|||
BR2_LINUX_KERNEL_CUSTOM_CONFIG_FILE="$(BR2_EXTERNAL_VENDOR)/board/infinity6e/kernel/ssc338q.generic.config"
|
||||
BR2_LINUX_KERNEL_UIMAGE=y
|
||||
BR2_LINUX_KERNEL_XZ=y
|
||||
BR2_PACKAGE_VENDOR_PATCHER=y
|
||||
|
||||
# OpenIPC
|
||||
BR2_OPENIPC_VENDOR="sigmastar"
|
||||
BR2_OPENIPC_FAMILY="infinity6e"
|
||||
BR2_OPENIPC_MODEL="ssc338q"
|
||||
BR2_OPENIPC_RELEASE="lite"
|
||||
|
||||
# Filesystem
|
||||
# BR2_TARGET_TZ_INFO is not set
|
||||
|
|
|
@ -29,7 +29,12 @@ BR2_LINUX_KERNEL_USE_CUSTOM_CONFIG=y
|
|||
BR2_LINUX_KERNEL_CUSTOM_CONFIG_FILE="$(BR2_EXTERNAL_VENDOR)/board/dm36x/kernel/dm36x.generic.config"
|
||||
BR2_LINUX_KERNEL_UIMAGE=y
|
||||
BR2_LINUX_KERNEL_LZMA=y
|
||||
BR2_PACKAGE_VENDOR_PATCHER=y
|
||||
|
||||
# OpenIPC
|
||||
BR2_OPENIPC_VENDOR="ti"
|
||||
BR2_OPENIPC_FAMILY="dm36x"
|
||||
BR2_OPENIPC_MODEL="dm36x"
|
||||
BR2_OPENIPC_RELEASE="lite"
|
||||
|
||||
# Filesystem
|
||||
# BR2_TARGET_TZ_INFO is not set
|
||||
|
|
|
@ -27,7 +27,12 @@ BR2_LINUX_KERNEL_USE_CUSTOM_CONFIG=y
|
|||
BR2_LINUX_KERNEL_CUSTOM_CONFIG_FILE="$(BR2_EXTERNAL_VENDOR)/board/xm510/kernel/xm510.generic.config"
|
||||
BR2_LINUX_KERNEL_UIMAGE=y
|
||||
BR2_LINUX_KERNEL_XZ=y
|
||||
BR2_PACKAGE_VENDOR_PATCHER=y
|
||||
|
||||
# OpenIPC
|
||||
BR2_OPENIPC_VENDOR="xiongmai"
|
||||
BR2_OPENIPC_FAMILY="xm510"
|
||||
BR2_OPENIPC_MODEL="xm510"
|
||||
BR2_OPENIPC_RELEASE="lite"
|
||||
|
||||
# Filesystem
|
||||
# BR2_TARGET_TZ_INFO is not set
|
||||
|
|
|
@ -27,7 +27,12 @@ BR2_LINUX_KERNEL_USE_CUSTOM_CONFIG=y
|
|||
BR2_LINUX_KERNEL_CUSTOM_CONFIG_FILE="$(BR2_EXTERNAL_VENDOR)/board/xm530/kernel/xm530.generic.config"
|
||||
BR2_LINUX_KERNEL_UIMAGE=y
|
||||
BR2_LINUX_KERNEL_XZ=y
|
||||
BR2_PACKAGE_VENDOR_PATCHER=y
|
||||
|
||||
# OpenIPC
|
||||
BR2_OPENIPC_VENDOR="xiongmai"
|
||||
BR2_OPENIPC_FAMILY="xm530"
|
||||
BR2_OPENIPC_MODEL="xm530"
|
||||
BR2_OPENIPC_RELEASE="lite"
|
||||
|
||||
# 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