mirror of https://github.com/OpenIPC/firmware.git
Merge branch 'OpenIPC:master' into master
commit
795e0e1675
|
@ -0,0 +1,121 @@
|
||||||
|
name: "Hi3516Ev200 (fpv)"
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches:
|
||||||
|
- production
|
||||||
|
tags:
|
||||||
|
- "v*"
|
||||||
|
schedule:
|
||||||
|
- cron: "00 03 * * *"
|
||||||
|
workflow_dispatch:
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
build_core:
|
||||||
|
name: OpenIPC firmware for Hi3516Ev200 (fpv)
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
|
steps:
|
||||||
|
|
||||||
|
- name: Checkout
|
||||||
|
id: checkout
|
||||||
|
uses: actions/checkout@v2
|
||||||
|
|
||||||
|
- name: Install build dependencies
|
||||||
|
id: install
|
||||||
|
run: |
|
||||||
|
make install-deps
|
||||||
|
mkdir -p tmp
|
||||||
|
|
||||||
|
- name: Free disk space
|
||||||
|
id: freshing
|
||||||
|
run: |
|
||||||
|
sudo swapoff -a
|
||||||
|
sudo rm -f /swapfile
|
||||||
|
sudo apt clean
|
||||||
|
docker rmi $(docker image ls -aq)
|
||||||
|
df -h
|
||||||
|
|
||||||
|
- name: Prepare buildroot
|
||||||
|
id: prepare
|
||||||
|
run: |
|
||||||
|
HEAD_TAG=$(git tag --points-at HEAD)
|
||||||
|
GIT_HASH=$(git rev-parse --short $GITHUB_SHA)
|
||||||
|
BRANCH_NAME=$(echo $GITHUB_REF | cut -d'/' -f 3)
|
||||||
|
if [ -z "$HEAD_TAG" ]; then
|
||||||
|
TAG_NAME="latest"
|
||||||
|
RELEASE_NAME="Development Build"
|
||||||
|
PRERELEASE=true
|
||||||
|
else
|
||||||
|
TAG_NAME=${{ github.ref }}
|
||||||
|
RELEASE_NAME="Release ${{ github.ref }}"
|
||||||
|
PRERELEASE=false
|
||||||
|
fi
|
||||||
|
echo "GIT_HASH=$GIT_HASH" >> $GITHUB_ENV
|
||||||
|
echo "TAG_NAME=$TAG_NAME" >> $GITHUB_ENV
|
||||||
|
echo "RELEASE_NAME=$RELEASE_NAME" >> $GITHUB_ENV
|
||||||
|
echo "PRERELEASE=$PRERELEASE" >> $GITHUB_ENV
|
||||||
|
echo "BRANCH_NAME=$BRANCH_NAME" >> $GITHUB_ENV
|
||||||
|
echo "BOARD=hi3516ev200" >> $GITHUB_ENV
|
||||||
|
cd $GITHUB_WORKSPACE
|
||||||
|
make prepare
|
||||||
|
|
||||||
|
- name: Build Hi3516Ev200 (fpv) firmware
|
||||||
|
id: build-hi3516ev200-fpv-firmware
|
||||||
|
continue-on-error: true
|
||||||
|
run: |
|
||||||
|
ARCHIVE_FW="${GITHUB_WORKSPACE}/output/images/openipc.${BOARD}-fpv-br.tgz"
|
||||||
|
echo "ARCHIVE_FW=$ARCHIVE_FW" >> $GITHUB_ENV
|
||||||
|
cd $GITHUB_WORKSPACE
|
||||||
|
make PLATFORM=hisilicon BOARD=unknown_unknown_${BOARD}_fpv all
|
||||||
|
[[ $(stat --printf="%s" ${GITHUB_WORKSPACE}/output/images/uImage) -gt 3145728 ]] && echo "TG_NOTIFY=Warning, kernel size exceeded : $(stat --printf="%s" ${GITHUB_WORKSPACE}/output/images/uImage) ... ${BOARD} (fpv)" >> $GITHUB_ENV && exit 1
|
||||||
|
[[ $(stat --printf="%s" ${GITHUB_WORKSPACE}/output/images/rootfs.squashfs) -gt 10485760 ]] && echo "TG_NOTIFY=Warning, rootfs size exceeded - $(stat --printf="%s" ${GITHUB_WORKSPACE}/output/images/rootfs.squashfs) vs 10485760... ${BOARD} (fpv)" >> $GITHUB_ENV && exit 1
|
||||||
|
cd ${GITHUB_WORKSPACE}/output/images
|
||||||
|
mv uImage uImage.${BOARD}
|
||||||
|
mv rootfs.squashfs rootfs.squashfs.${BOARD}
|
||||||
|
md5sum rootfs.squashfs.${BOARD} > rootfs.squashfs.${BOARD}.md5sum
|
||||||
|
md5sum uImage.${BOARD} > uImage.${BOARD}.md5sum
|
||||||
|
tar -cvzf $ARCHIVE_FW uImage* *rootfs.squashfs.${BOARD}*
|
||||||
|
|
||||||
|
- name: Send warning message to telegram channel
|
||||||
|
env:
|
||||||
|
TG_TOKEN: ${{ secrets.TELEGRAM_TOKEN_BOT_OPENIPC }}
|
||||||
|
TG_CHANNEL: ${{ secrets.TELEGRAM_CHANNEL_OPENIPC_DEV }}
|
||||||
|
if: steps.build-hi3516ev200-fpv-firmware.outcome != 'success'
|
||||||
|
run: |
|
||||||
|
TG_OPTIONS="-s --connect-timeout 30 --max-time 30"
|
||||||
|
TG_NOTIFY="${TG_NOTIFY:=Warning, Buildroot compiling error... ${BOARD} (fpv)}"
|
||||||
|
TG_HEADER=$(echo -e "\r\n$TG_NOTIFY \r\n\r\nCommit: $GIT_HASH \r\nBranch: $BRANCH_NAME \r\nTag: $TAG_NAME \r\n\r\n\xE2\x9A\xA0 GitHub Actions")
|
||||||
|
curl $TG_OPTIONS -H "Content-Type: multipart/form-data" -X POST https://api.telegram.org/bot$TG_TOKEN/sendMessage \
|
||||||
|
-F chat_id=$TG_CHANNEL -F text="$TG_HEADER"
|
||||||
|
|
||||||
|
- name: Create release
|
||||||
|
uses: actions/create-release@v1
|
||||||
|
continue-on-error: true
|
||||||
|
env:
|
||||||
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
with:
|
||||||
|
tag_name: ${{ env.TAG_NAME }}
|
||||||
|
release_name: ${{ env.RELEASE_NAME }}
|
||||||
|
draft: false
|
||||||
|
prerelease: ${{ env.PRERELEASE }}
|
||||||
|
|
||||||
|
- name: Upload FW to release
|
||||||
|
uses: svenstaro/upload-release-action@v2
|
||||||
|
continue-on-error: true
|
||||||
|
with:
|
||||||
|
repo_token: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
file: ${{ env.ARCHIVE_FW }}
|
||||||
|
asset_name: openipc.${{ env.BOARD }}-fpv-br.tgz
|
||||||
|
tag: ${{ env.TAG_NAME }}
|
||||||
|
overwrite: true
|
||||||
|
|
||||||
|
- name: Send binary file to telegram channel
|
||||||
|
env:
|
||||||
|
TG_TOKEN: ${{ secrets.TELEGRAM_TOKEN_BOT_OPENIPC }}
|
||||||
|
TG_CHANNEL: ${{ secrets.TELEGRAM_CHANNEL_OPENIPC_DEV }}
|
||||||
|
run: |
|
||||||
|
TG_OPTIONS="-s --connect-timeout 30 --max-time 30"
|
||||||
|
TG_HEADER=$(echo -e "\r\nCommit: $GIT_HASH \r\nBranch: $BRANCH_NAME \r\nTag: $TAG_NAME \r\n\r\n\xE2\x9C\x85 GitHub Actions")
|
||||||
|
curl $TG_OPTIONS -H "Content-Type: multipart/form-data" -X POST https://api.telegram.org/bot$TG_TOKEN/sendDocument \
|
||||||
|
-F chat_id=$TG_CHANNEL -F document="@$ARCHIVE_FW" -F caption="$TG_HEADER"
|
|
@ -0,0 +1,139 @@
|
||||||
|
name: "SSC335DE "
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches:
|
||||||
|
- production
|
||||||
|
tags:
|
||||||
|
- "v*"
|
||||||
|
schedule:
|
||||||
|
- cron: "00 01 * * *"
|
||||||
|
workflow_dispatch:
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
build_core:
|
||||||
|
name: OpenIPC firmware for SSC335DE
|
||||||
|
runs-on: ubuntu-18.04
|
||||||
|
|
||||||
|
steps:
|
||||||
|
|
||||||
|
- name: Checkout
|
||||||
|
id: checkout
|
||||||
|
uses: actions/checkout@v2
|
||||||
|
|
||||||
|
- name: Install build dependencies
|
||||||
|
id: install
|
||||||
|
run: |
|
||||||
|
make install-deps
|
||||||
|
mkdir -p tmp
|
||||||
|
|
||||||
|
- name: Free disk space
|
||||||
|
id: freshing
|
||||||
|
run: |
|
||||||
|
sudo swapoff -a
|
||||||
|
sudo rm -f /swapfile
|
||||||
|
sudo apt clean
|
||||||
|
docker rmi $(docker image ls -aq)
|
||||||
|
df -h
|
||||||
|
|
||||||
|
- name: Prepare buildroot
|
||||||
|
id: prepare
|
||||||
|
run: |
|
||||||
|
HEAD_TAG=$(git tag --points-at HEAD)
|
||||||
|
GIT_HASH=$(git rev-parse --short $GITHUB_SHA)
|
||||||
|
BRANCH_NAME=$(echo $GITHUB_REF | cut -d'/' -f 3)
|
||||||
|
if [ -z "$HEAD_TAG" ]; then
|
||||||
|
TAG_NAME="latest"
|
||||||
|
RELEASE_NAME="Development Build"
|
||||||
|
PRERELEASE=true
|
||||||
|
else
|
||||||
|
TAG_NAME=${{ github.ref }}
|
||||||
|
RELEASE_NAME="Release ${{ github.ref }}"
|
||||||
|
PRERELEASE=false
|
||||||
|
fi
|
||||||
|
echo "GIT_HASH=$GIT_HASH" >> $GITHUB_ENV
|
||||||
|
echo "TAG_NAME=$TAG_NAME" >> $GITHUB_ENV
|
||||||
|
echo "RELEASE_NAME=$RELEASE_NAME" >> $GITHUB_ENV
|
||||||
|
echo "PRERELEASE=$PRERELEASE" >> $GITHUB_ENV
|
||||||
|
echo "BRANCH_NAME=$BRANCH_NAME" >> $GITHUB_ENV
|
||||||
|
cd $GITHUB_WORKSPACE
|
||||||
|
make prepare
|
||||||
|
|
||||||
|
- name: Build SSC335DE firmware
|
||||||
|
id: build-ssc335de-firmware
|
||||||
|
continue-on-error: true
|
||||||
|
run: |
|
||||||
|
ARCHIVE_FW="${GITHUB_WORKSPACE}/output/images/openipc.ssc335de-br.tgz"
|
||||||
|
echo "ARCHIVE_FW=$ARCHIVE_FW" >> $GITHUB_ENV
|
||||||
|
cd $GITHUB_WORKSPACE
|
||||||
|
make PLATFORM=sigmastar BOARD=unknown_unknown_ssc335de_openipc all
|
||||||
|
[[ $(stat --printf="%s" ${GITHUB_WORKSPACE}/output/images/uImage) -gt 2097152 ]] && echo "TG_NOTIFY=Warning, kernel size exceeded : $(stat --printf="%s" ${GITHUB_WORKSPACE}/output/images/uImage) vs 2097152... SSC335DE" >> $GITHUB_ENV && exit 1
|
||||||
|
[[ $(stat --printf="%s" ${GITHUB_WORKSPACE}/output/images/rootfs.squashfs) -gt 5242880 ]] && echo "TG_NOTIFY=Warning, rootfs size exceeded - $(stat --printf="%s" ${GITHUB_WORKSPACE}/output/images/rootfs.squashfs) vs 5242880... SSC335DE" >> $GITHUB_ENV && exit 1
|
||||||
|
cd ${GITHUB_WORKSPACE}/output/images
|
||||||
|
mv uImage uImage.ssc335de
|
||||||
|
mv rootfs.squashfs rootfs.squashfs.ssc335de
|
||||||
|
md5sum rootfs.squashfs.ssc335de > rootfs.squashfs.ssc335de.md5sum
|
||||||
|
md5sum uImage.ssc335de > uImage.ssc335de.md5sum
|
||||||
|
tar -cvzf $ARCHIVE_FW *ssc335de*
|
||||||
|
|
||||||
|
- name: Build SSC335DE SDK
|
||||||
|
id: build-ssc335de-sdk
|
||||||
|
continue-on-error: true
|
||||||
|
run: |
|
||||||
|
ARCHIVE_SDK="${GITHUB_WORKSPACE}/output/images/arm-openipc-linux-musleabihf_sdk-buildroot.tar.gz"
|
||||||
|
echo "ARCHIVE_SDK=$ARCHIVE_SDK" >> $GITHUB_ENV
|
||||||
|
cd $GITHUB_WORKSPACE/output
|
||||||
|
make sdk
|
||||||
|
|
||||||
|
- name: Send warning message to telegram channel
|
||||||
|
env:
|
||||||
|
TG_TOKEN: ${{ secrets.TELEGRAM_TOKEN_BOT_OPENIPC }}
|
||||||
|
TG_CHANNEL: ${{ secrets.TELEGRAM_CHANNEL_OPENIPC_DEV }}
|
||||||
|
if: steps.build-ssc335de-firmware.outcome != 'success' || steps.build-ssc335de-sdk.outcome != 'success'
|
||||||
|
run: |
|
||||||
|
TG_OPTIONS="-s --connect-timeout 30 --max-time 30"
|
||||||
|
TG_NOTIFY="${TG_NOTIFY:=Warning, Buildroot compiling error... SSC335DE}"
|
||||||
|
TG_HEADER=$(echo -e "\r\n$TG_NOTIFY \r\n\r\nCommit: $GIT_HASH \r\nBranch: $BRANCH_NAME \r\nTag: $TAG_NAME \r\n\r\n\xE2\x9A\xA0 GitHub Actions")
|
||||||
|
curl $TG_OPTIONS -H "Content-Type: multipart/form-data" -X POST https://api.telegram.org/bot$TG_TOKEN/sendMessage \
|
||||||
|
-F chat_id=$TG_CHANNEL -F text="$TG_HEADER"
|
||||||
|
|
||||||
|
- name: Create release
|
||||||
|
uses: actions/create-release@v1
|
||||||
|
continue-on-error: true
|
||||||
|
env:
|
||||||
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
with:
|
||||||
|
tag_name: ${{ env.TAG_NAME }}
|
||||||
|
release_name: ${{ env.RELEASE_NAME }}
|
||||||
|
draft: false
|
||||||
|
prerelease: ${{ env.PRERELEASE }}
|
||||||
|
|
||||||
|
- name: Upload FW to release
|
||||||
|
uses: svenstaro/upload-release-action@v2
|
||||||
|
continue-on-error: true
|
||||||
|
with:
|
||||||
|
repo_token: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
file: ${{ env.ARCHIVE_FW }}
|
||||||
|
asset_name: "openipc.ssc335de-br.tgz"
|
||||||
|
tag: ${{ env.TAG_NAME }}
|
||||||
|
overwrite: true
|
||||||
|
|
||||||
|
- name: Upload SDK to release
|
||||||
|
uses: svenstaro/upload-release-action@v2
|
||||||
|
continue-on-error: true
|
||||||
|
with:
|
||||||
|
repo_token: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
file: ${{ env.ARCHIVE_SDK }}
|
||||||
|
asset_name: "arm-openipc-ssc335de-linux-musleabihf_sdk-buildroot.tar.gz"
|
||||||
|
tag: ${{ env.TAG_NAME }}
|
||||||
|
overwrite: true
|
||||||
|
|
||||||
|
- name: Send binary file to telegram channel
|
||||||
|
env:
|
||||||
|
TG_TOKEN: ${{ secrets.TELEGRAM_TOKEN_BOT_OPENIPC }}
|
||||||
|
TG_CHANNEL: ${{ secrets.TELEGRAM_CHANNEL_OPENIPC_DEV }}
|
||||||
|
run: |
|
||||||
|
TG_OPTIONS="-s --connect-timeout 30 --max-time 30"
|
||||||
|
TG_HEADER=$(echo -e "\r\nCommit: $GIT_HASH \r\nBranch: $BRANCH_NAME \r\nTag: $TAG_NAME \r\n\r\n\xE2\x9C\x85 GitHub Actions")
|
||||||
|
curl $TG_OPTIONS -H "Content-Type: multipart/form-data" -X POST https://api.telegram.org/bot$TG_TOKEN/sendDocument \
|
||||||
|
-F chat_id=$TG_CHANNEL -F document="@$ARCHIVE_FW" -F caption="$TG_HEADER"
|
|
@ -649,7 +649,7 @@ CONFIG_IPV6=y
|
||||||
# CONFIG_TIPC is not set
|
# CONFIG_TIPC is not set
|
||||||
# CONFIG_ATM is not set
|
# CONFIG_ATM is not set
|
||||||
# CONFIG_L2TP is not set
|
# CONFIG_L2TP is not set
|
||||||
# CONFIG_BRIDGE is not set
|
CONFIG_BRIDGE=y
|
||||||
CONFIG_HAVE_NET_DSA=y
|
CONFIG_HAVE_NET_DSA=y
|
||||||
# CONFIG_VLAN_8021Q is not set
|
# CONFIG_VLAN_8021Q is not set
|
||||||
# CONFIG_DECNET is not set
|
# CONFIG_DECNET is not set
|
||||||
|
|
|
@ -456,7 +456,7 @@ CONFIG_NET_ACTIVITY_STATS=y
|
||||||
# CONFIG_NETFILTER is not set
|
# CONFIG_NETFILTER is not set
|
||||||
# CONFIG_ATM is not set
|
# CONFIG_ATM is not set
|
||||||
# CONFIG_L2TP is not set
|
# CONFIG_L2TP is not set
|
||||||
# CONFIG_BRIDGE is not set
|
CONFIG_BRIDGE=y
|
||||||
# CONFIG_VLAN_8021Q is not set
|
# CONFIG_VLAN_8021Q is not set
|
||||||
# CONFIG_DECNET is not set
|
# CONFIG_DECNET is not set
|
||||||
# CONFIG_LLC2 is not set
|
# CONFIG_LLC2 is not set
|
||||||
|
|
|
@ -404,7 +404,7 @@ CONFIG_NET_ACTIVITY_STATS=y
|
||||||
# CONFIG_NETFILTER is not set
|
# CONFIG_NETFILTER is not set
|
||||||
# CONFIG_ATM is not set
|
# CONFIG_ATM is not set
|
||||||
# CONFIG_L2TP is not set
|
# CONFIG_L2TP is not set
|
||||||
# CONFIG_BRIDGE is not set
|
CONFIG_BRIDGE=y
|
||||||
# CONFIG_VLAN_8021Q is not set
|
# CONFIG_VLAN_8021Q is not set
|
||||||
# CONFIG_DECNET is not set
|
# CONFIG_DECNET is not set
|
||||||
# CONFIG_LLC2 is not set
|
# CONFIG_LLC2 is not set
|
||||||
|
|
|
@ -404,7 +404,7 @@ CONFIG_NET_ACTIVITY_STATS=y
|
||||||
# CONFIG_NETFILTER is not set
|
# CONFIG_NETFILTER is not set
|
||||||
# CONFIG_ATM is not set
|
# CONFIG_ATM is not set
|
||||||
# CONFIG_L2TP is not set
|
# CONFIG_L2TP is not set
|
||||||
# CONFIG_BRIDGE is not set
|
CONFIG_BRIDGE=y
|
||||||
# CONFIG_VLAN_8021Q is not set
|
# CONFIG_VLAN_8021Q is not set
|
||||||
# CONFIG_DECNET is not set
|
# CONFIG_DECNET is not set
|
||||||
# CONFIG_LLC2 is not set
|
# CONFIG_LLC2 is not set
|
||||||
|
|
|
@ -455,7 +455,7 @@ CONFIG_IPV6=y
|
||||||
# CONFIG_TIPC is not set
|
# CONFIG_TIPC is not set
|
||||||
# CONFIG_ATM is not set
|
# CONFIG_ATM is not set
|
||||||
# CONFIG_L2TP is not set
|
# CONFIG_L2TP is not set
|
||||||
# CONFIG_BRIDGE is not set
|
CONFIG_BRIDGE=y
|
||||||
# CONFIG_NET_DSA is not set
|
# CONFIG_NET_DSA is not set
|
||||||
# CONFIG_VLAN_8021Q is not set
|
# CONFIG_VLAN_8021Q is not set
|
||||||
# CONFIG_DECNET is not set
|
# CONFIG_DECNET is not set
|
||||||
|
|
|
@ -461,7 +461,7 @@ CONFIG_IPV6=y
|
||||||
# CONFIG_TIPC is not set
|
# CONFIG_TIPC is not set
|
||||||
# CONFIG_ATM is not set
|
# CONFIG_ATM is not set
|
||||||
# CONFIG_L2TP is not set
|
# CONFIG_L2TP is not set
|
||||||
# CONFIG_BRIDGE is not set
|
CONFIG_BRIDGE=y
|
||||||
# CONFIG_NET_DSA is not set
|
# CONFIG_NET_DSA is not set
|
||||||
# CONFIG_VLAN_8021Q is not set
|
# CONFIG_VLAN_8021Q is not set
|
||||||
# CONFIG_DECNET is not set
|
# CONFIG_DECNET is not set
|
||||||
|
|
|
@ -461,7 +461,7 @@ CONFIG_IPV6=y
|
||||||
# CONFIG_TIPC is not set
|
# CONFIG_TIPC is not set
|
||||||
# CONFIG_ATM is not set
|
# CONFIG_ATM is not set
|
||||||
# CONFIG_L2TP is not set
|
# CONFIG_L2TP is not set
|
||||||
# CONFIG_BRIDGE is not set
|
CONFIG_BRIDGE=y
|
||||||
# CONFIG_NET_DSA is not set
|
# CONFIG_NET_DSA is not set
|
||||||
# CONFIG_VLAN_8021Q is not set
|
# CONFIG_VLAN_8021Q is not set
|
||||||
# CONFIG_DECNET is not set
|
# CONFIG_DECNET is not set
|
||||||
|
|
|
@ -534,7 +534,7 @@ CONFIG_IPV6_FOU=y
|
||||||
# CONFIG_TIPC is not set
|
# CONFIG_TIPC is not set
|
||||||
# CONFIG_ATM is not set
|
# CONFIG_ATM is not set
|
||||||
# CONFIG_L2TP is not set
|
# CONFIG_L2TP is not set
|
||||||
# CONFIG_BRIDGE is not set
|
CONFIG_BRIDGE=y
|
||||||
CONFIG_HAVE_NET_DSA=y
|
CONFIG_HAVE_NET_DSA=y
|
||||||
# CONFIG_NET_DSA is not set
|
# CONFIG_NET_DSA is not set
|
||||||
# CONFIG_VLAN_8021Q is not set
|
# CONFIG_VLAN_8021Q is not set
|
||||||
|
|
|
@ -534,7 +534,7 @@ CONFIG_IPV6_FOU=y
|
||||||
# CONFIG_TIPC is not set
|
# CONFIG_TIPC is not set
|
||||||
# CONFIG_ATM is not set
|
# CONFIG_ATM is not set
|
||||||
# CONFIG_L2TP is not set
|
# CONFIG_L2TP is not set
|
||||||
# CONFIG_BRIDGE is not set
|
CONFIG_BRIDGE=y
|
||||||
CONFIG_HAVE_NET_DSA=y
|
CONFIG_HAVE_NET_DSA=y
|
||||||
# CONFIG_NET_DSA is not set
|
# CONFIG_NET_DSA is not set
|
||||||
# CONFIG_VLAN_8021Q is not set
|
# CONFIG_VLAN_8021Q is not set
|
||||||
|
|
|
@ -534,7 +534,7 @@ CONFIG_IPV6_FOU=y
|
||||||
# CONFIG_TIPC is not set
|
# CONFIG_TIPC is not set
|
||||||
# CONFIG_ATM is not set
|
# CONFIG_ATM is not set
|
||||||
# CONFIG_L2TP is not set
|
# CONFIG_L2TP is not set
|
||||||
# CONFIG_BRIDGE is not set
|
CONFIG_BRIDGE=y
|
||||||
CONFIG_HAVE_NET_DSA=y
|
CONFIG_HAVE_NET_DSA=y
|
||||||
# CONFIG_NET_DSA is not set
|
# CONFIG_NET_DSA is not set
|
||||||
# CONFIG_VLAN_8021Q is not set
|
# CONFIG_VLAN_8021Q is not set
|
||||||
|
|
|
@ -534,7 +534,7 @@ CONFIG_IPV6_FOU=y
|
||||||
# CONFIG_TIPC is not set
|
# CONFIG_TIPC is not set
|
||||||
# CONFIG_ATM is not set
|
# CONFIG_ATM is not set
|
||||||
# CONFIG_L2TP is not set
|
# CONFIG_L2TP is not set
|
||||||
# CONFIG_BRIDGE is not set
|
CONFIG_BRIDGE=y
|
||||||
CONFIG_HAVE_NET_DSA=y
|
CONFIG_HAVE_NET_DSA=y
|
||||||
# CONFIG_NET_DSA is not set
|
# CONFIG_NET_DSA is not set
|
||||||
# CONFIG_VLAN_8021Q is not set
|
# CONFIG_VLAN_8021Q is not set
|
||||||
|
|
|
@ -534,7 +534,7 @@ CONFIG_IPV6_FOU=y
|
||||||
# CONFIG_TIPC is not set
|
# CONFIG_TIPC is not set
|
||||||
# CONFIG_ATM is not set
|
# CONFIG_ATM is not set
|
||||||
# CONFIG_L2TP is not set
|
# CONFIG_L2TP is not set
|
||||||
# CONFIG_BRIDGE is not set
|
CONFIG_BRIDGE=y
|
||||||
CONFIG_HAVE_NET_DSA=y
|
CONFIG_HAVE_NET_DSA=y
|
||||||
# CONFIG_NET_DSA is not set
|
# CONFIG_NET_DSA is not set
|
||||||
# CONFIG_VLAN_8021Q is not set
|
# CONFIG_VLAN_8021Q is not set
|
||||||
|
|
|
@ -534,7 +534,7 @@ CONFIG_IPV6_FOU=y
|
||||||
# CONFIG_TIPC is not set
|
# CONFIG_TIPC is not set
|
||||||
# CONFIG_ATM is not set
|
# CONFIG_ATM is not set
|
||||||
# CONFIG_L2TP is not set
|
# CONFIG_L2TP is not set
|
||||||
# CONFIG_BRIDGE is not set
|
CONFIG_BRIDGE=y
|
||||||
CONFIG_HAVE_NET_DSA=y
|
CONFIG_HAVE_NET_DSA=y
|
||||||
# CONFIG_NET_DSA is not set
|
# CONFIG_NET_DSA is not set
|
||||||
# CONFIG_VLAN_8021Q is not set
|
# CONFIG_VLAN_8021Q is not set
|
||||||
|
|
|
@ -21,6 +21,7 @@ source "$BR2_EXTERNAL_GOKE_PATH/package/libwebsockets-openipc/Config.in"
|
||||||
source "$BR2_EXTERNAL_GOKE_PATH/package/linux-firmware-openipc/Config.in"
|
source "$BR2_EXTERNAL_GOKE_PATH/package/linux-firmware-openipc/Config.in"
|
||||||
source "$BR2_EXTERNAL_GOKE_PATH/package/majestic-fonts/Config.in"
|
source "$BR2_EXTERNAL_GOKE_PATH/package/majestic-fonts/Config.in"
|
||||||
source "$BR2_EXTERNAL_GOKE_PATH/package/majestic-gk7205v200/Config.in"
|
source "$BR2_EXTERNAL_GOKE_PATH/package/majestic-gk7205v200/Config.in"
|
||||||
|
source "$BR2_EXTERNAL_GOKE_PATH/package/mavlink-router/Config.in"
|
||||||
source "$BR2_EXTERNAL_GOKE_PATH/package/mbedtls-openipc/Config.in"
|
source "$BR2_EXTERNAL_GOKE_PATH/package/mbedtls-openipc/Config.in"
|
||||||
source "$BR2_EXTERNAL_GOKE_PATH/package/microbe-web/Config.in"
|
source "$BR2_EXTERNAL_GOKE_PATH/package/microbe-web/Config.in"
|
||||||
source "$BR2_EXTERNAL_GOKE_PATH/package/motors/Config.in"
|
source "$BR2_EXTERNAL_GOKE_PATH/package/motors/Config.in"
|
||||||
|
|
|
@ -589,7 +589,7 @@ CONFIG_IPV6=y
|
||||||
# CONFIG_TIPC is not set
|
# CONFIG_TIPC is not set
|
||||||
# CONFIG_ATM is not set
|
# CONFIG_ATM is not set
|
||||||
# CONFIG_L2TP is not set
|
# CONFIG_L2TP is not set
|
||||||
# CONFIG_BRIDGE is not set
|
CONFIG_BRIDGE=y
|
||||||
# CONFIG_NET_DSA is not set
|
# CONFIG_NET_DSA is not set
|
||||||
# CONFIG_VLAN_8021Q is not set
|
# CONFIG_VLAN_8021Q is not set
|
||||||
# CONFIG_DECNET is not set
|
# CONFIG_DECNET is not set
|
||||||
|
|
|
@ -590,7 +590,7 @@ CONFIG_IPV6=y
|
||||||
# CONFIG_TIPC is not set
|
# CONFIG_TIPC is not set
|
||||||
# CONFIG_ATM is not set
|
# CONFIG_ATM is not set
|
||||||
# CONFIG_L2TP is not set
|
# CONFIG_L2TP is not set
|
||||||
# CONFIG_BRIDGE is not set
|
CONFIG_BRIDGE=y
|
||||||
# CONFIG_NET_DSA is not set
|
# CONFIG_NET_DSA is not set
|
||||||
# CONFIG_VLAN_8021Q is not set
|
# CONFIG_VLAN_8021Q is not set
|
||||||
# CONFIG_DECNET is not set
|
# CONFIG_DECNET is not set
|
||||||
|
|
|
@ -664,7 +664,7 @@ CONFIG_TCP_MD5SIG=y
|
||||||
# CONFIG_TIPC is not set
|
# CONFIG_TIPC is not set
|
||||||
# CONFIG_ATM is not set
|
# CONFIG_ATM is not set
|
||||||
# CONFIG_L2TP is not set
|
# CONFIG_L2TP is not set
|
||||||
# CONFIG_BRIDGE is not set
|
CONFIG_BRIDGE=y
|
||||||
CONFIG_HAVE_NET_DSA=y
|
CONFIG_HAVE_NET_DSA=y
|
||||||
# CONFIG_VLAN_8021Q is not set
|
# CONFIG_VLAN_8021Q is not set
|
||||||
# CONFIG_DECNET is not set
|
# CONFIG_DECNET is not set
|
||||||
|
|
|
@ -664,7 +664,7 @@ CONFIG_TCP_MD5SIG=y
|
||||||
# CONFIG_TIPC is not set
|
# CONFIG_TIPC is not set
|
||||||
# CONFIG_ATM is not set
|
# CONFIG_ATM is not set
|
||||||
# CONFIG_L2TP is not set
|
# CONFIG_L2TP is not set
|
||||||
# CONFIG_BRIDGE is not set
|
CONFIG_BRIDGE=y
|
||||||
CONFIG_HAVE_NET_DSA=y
|
CONFIG_HAVE_NET_DSA=y
|
||||||
# CONFIG_VLAN_8021Q is not set
|
# CONFIG_VLAN_8021Q is not set
|
||||||
# CONFIG_DECNET is not set
|
# CONFIG_DECNET is not set
|
||||||
|
|
|
@ -664,7 +664,7 @@ CONFIG_TCP_MD5SIG=y
|
||||||
# CONFIG_TIPC is not set
|
# CONFIG_TIPC is not set
|
||||||
# CONFIG_ATM is not set
|
# CONFIG_ATM is not set
|
||||||
# CONFIG_L2TP is not set
|
# CONFIG_L2TP is not set
|
||||||
# CONFIG_BRIDGE is not set
|
CONFIG_BRIDGE=y
|
||||||
CONFIG_HAVE_NET_DSA=y
|
CONFIG_HAVE_NET_DSA=y
|
||||||
# CONFIG_VLAN_8021Q is not set
|
# CONFIG_VLAN_8021Q is not set
|
||||||
# CONFIG_DECNET is not set
|
# CONFIG_DECNET is not set
|
||||||
|
|
|
@ -664,7 +664,7 @@ CONFIG_TCP_MD5SIG=y
|
||||||
# CONFIG_TIPC is not set
|
# CONFIG_TIPC is not set
|
||||||
# CONFIG_ATM is not set
|
# CONFIG_ATM is not set
|
||||||
# CONFIG_L2TP is not set
|
# CONFIG_L2TP is not set
|
||||||
# CONFIG_BRIDGE is not set
|
CONFIG_BRIDGE=y
|
||||||
CONFIG_HAVE_NET_DSA=y
|
CONFIG_HAVE_NET_DSA=y
|
||||||
# CONFIG_VLAN_8021Q is not set
|
# CONFIG_VLAN_8021Q is not set
|
||||||
# CONFIG_DECNET is not set
|
# CONFIG_DECNET is not set
|
||||||
|
|
|
@ -664,7 +664,7 @@ CONFIG_TCP_MD5SIG=y
|
||||||
# CONFIG_TIPC is not set
|
# CONFIG_TIPC is not set
|
||||||
# CONFIG_ATM is not set
|
# CONFIG_ATM is not set
|
||||||
# CONFIG_L2TP is not set
|
# CONFIG_L2TP is not set
|
||||||
# CONFIG_BRIDGE is not set
|
CONFIG_BRIDGE=y
|
||||||
CONFIG_HAVE_NET_DSA=y
|
CONFIG_HAVE_NET_DSA=y
|
||||||
# CONFIG_VLAN_8021Q is not set
|
# CONFIG_VLAN_8021Q is not set
|
||||||
# CONFIG_DECNET is not set
|
# CONFIG_DECNET is not set
|
||||||
|
|
|
@ -664,7 +664,7 @@ CONFIG_TCP_MD5SIG=y
|
||||||
# CONFIG_TIPC is not set
|
# CONFIG_TIPC is not set
|
||||||
# CONFIG_ATM is not set
|
# CONFIG_ATM is not set
|
||||||
# CONFIG_L2TP is not set
|
# CONFIG_L2TP is not set
|
||||||
# CONFIG_BRIDGE is not set
|
CONFIG_BRIDGE=y
|
||||||
CONFIG_HAVE_NET_DSA=y
|
CONFIG_HAVE_NET_DSA=y
|
||||||
# CONFIG_VLAN_8021Q is not set
|
# CONFIG_VLAN_8021Q is not set
|
||||||
# CONFIG_DECNET is not set
|
# CONFIG_DECNET is not set
|
||||||
|
|
|
@ -104,3 +104,4 @@ BR2_PACKAGE_RTL8812AU_OPENIPC=y
|
||||||
|
|
||||||
# FPV
|
# FPV
|
||||||
BR2_PACKAGE_WIFIBROADCAST=y
|
BR2_PACKAGE_WIFIBROADCAST=y
|
||||||
|
BR2_PACKAGE_MAVLINK_ROUTER=y
|
||||||
|
|
|
@ -99,5 +99,12 @@ BR2_PACKAGE_LINUX_FIRMWARE_OPENIPC_MT7601U=y
|
||||||
BR2_PACKAGE_WIREGUARD_LINUX_COMPAT=y
|
BR2_PACKAGE_WIREGUARD_LINUX_COMPAT=y
|
||||||
BR2_PACKAGE_WIREGUARD_TOOLS=y
|
BR2_PACKAGE_WIREGUARD_TOOLS=y
|
||||||
|
|
||||||
|
# IPTABLES
|
||||||
|
BR2_PACKAGE_IPTABLES=y
|
||||||
|
|
||||||
|
# MQTT
|
||||||
|
BR2_PACKAGE_MOSQUITTO=y
|
||||||
|
# BR2_PACKAGE_MOSQUITTO_BROKER is not set
|
||||||
|
|
||||||
# ZEROTIER
|
# ZEROTIER
|
||||||
BR2_PACKAGE_ZEROTIER_ONE=y
|
BR2_PACKAGE_ZEROTIER_ONE=y
|
||||||
|
|
|
@ -104,3 +104,4 @@ BR2_PACKAGE_RTL8812AU_OPENIPC=y
|
||||||
|
|
||||||
# FPV
|
# FPV
|
||||||
BR2_PACKAGE_WIFIBROADCAST=y
|
BR2_PACKAGE_WIFIBROADCAST=y
|
||||||
|
BR2_PACKAGE_MAVLINK_ROUTER=y
|
||||||
|
|
|
@ -99,5 +99,12 @@ BR2_PACKAGE_LINUX_FIRMWARE_OPENIPC_MT7601U=y
|
||||||
BR2_PACKAGE_WIREGUARD_LINUX_COMPAT=y
|
BR2_PACKAGE_WIREGUARD_LINUX_COMPAT=y
|
||||||
BR2_PACKAGE_WIREGUARD_TOOLS=y
|
BR2_PACKAGE_WIREGUARD_TOOLS=y
|
||||||
|
|
||||||
|
# IPTABLES
|
||||||
|
BR2_PACKAGE_IPTABLES=y
|
||||||
|
|
||||||
|
# MQTT
|
||||||
|
BR2_PACKAGE_MOSQUITTO=y
|
||||||
|
# BR2_PACKAGE_MOSQUITTO_BROKER is not set
|
||||||
|
|
||||||
# ZEROTIER
|
# ZEROTIER
|
||||||
BR2_PACKAGE_ZEROTIER_ONE=y
|
BR2_PACKAGE_ZEROTIER_ONE=y
|
||||||
|
|
|
@ -21,6 +21,7 @@ include $(BR2_EXTERNAL_GOKE_PATH)/package/libwebsockets-openipc/libwebsockets-op
|
||||||
include $(BR2_EXTERNAL_GOKE_PATH)/package/linux-firmware-openipc/linux-firmware-openipc.mk
|
include $(BR2_EXTERNAL_GOKE_PATH)/package/linux-firmware-openipc/linux-firmware-openipc.mk
|
||||||
include $(BR2_EXTERNAL_GOKE_PATH)/package/majestic-fonts/majestic-fonts.mk
|
include $(BR2_EXTERNAL_GOKE_PATH)/package/majestic-fonts/majestic-fonts.mk
|
||||||
include $(BR2_EXTERNAL_GOKE_PATH)/package/majestic-gk7205v200/majestic-gk7205v200.mk
|
include $(BR2_EXTERNAL_GOKE_PATH)/package/majestic-gk7205v200/majestic-gk7205v200.mk
|
||||||
|
include $(BR2_EXTERNAL_GOKE_PATH)/package/mavlink-router/mavlink-router.mk
|
||||||
include $(BR2_EXTERNAL_GOKE_PATH)/package/mbedtls-openipc/mbedtls-openipc.mk
|
include $(BR2_EXTERNAL_GOKE_PATH)/package/mbedtls-openipc/mbedtls-openipc.mk
|
||||||
include $(BR2_EXTERNAL_GOKE_PATH)/package/microbe-web/microbe-web.mk
|
include $(BR2_EXTERNAL_GOKE_PATH)/package/microbe-web/microbe-web.mk
|
||||||
include $(BR2_EXTERNAL_GOKE_PATH)/package/motors/motors.mk
|
include $(BR2_EXTERNAL_GOKE_PATH)/package/motors/motors.mk
|
||||||
|
|
|
@ -0,0 +1 @@
|
||||||
|
../../general/package/mavlink-router
|
|
@ -506,7 +506,7 @@ CONFIG_IPV6=y
|
||||||
# CONFIG_TIPC is not set
|
# CONFIG_TIPC is not set
|
||||||
# CONFIG_ATM is not set
|
# CONFIG_ATM is not set
|
||||||
# CONFIG_L2TP is not set
|
# CONFIG_L2TP is not set
|
||||||
# CONFIG_BRIDGE is not set
|
CONFIG_BRIDGE=y
|
||||||
# CONFIG_NET_DSA is not set
|
# CONFIG_NET_DSA is not set
|
||||||
# CONFIG_VLAN_8021Q is not set
|
# CONFIG_VLAN_8021Q is not set
|
||||||
# CONFIG_DECNET is not set
|
# CONFIG_DECNET is not set
|
||||||
|
|
|
@ -506,7 +506,7 @@ CONFIG_IPV6=y
|
||||||
# CONFIG_TIPC is not set
|
# CONFIG_TIPC is not set
|
||||||
# CONFIG_ATM is not set
|
# CONFIG_ATM is not set
|
||||||
# CONFIG_L2TP is not set
|
# CONFIG_L2TP is not set
|
||||||
# CONFIG_BRIDGE is not set
|
CONFIG_BRIDGE=y
|
||||||
# CONFIG_NET_DSA is not set
|
# CONFIG_NET_DSA is not set
|
||||||
# CONFIG_VLAN_8021Q is not set
|
# CONFIG_VLAN_8021Q is not set
|
||||||
# CONFIG_DECNET is not set
|
# CONFIG_DECNET is not set
|
||||||
|
|
|
@ -36,6 +36,7 @@ source "$BR2_EXTERNAL_HISILICON_PATH/package/majestic-hi3516cv300/Config.in"
|
||||||
source "$BR2_EXTERNAL_HISILICON_PATH/package/majestic-hi3516cv500/Config.in"
|
source "$BR2_EXTERNAL_HISILICON_PATH/package/majestic-hi3516cv500/Config.in"
|
||||||
source "$BR2_EXTERNAL_HISILICON_PATH/package/majestic-hi3516ev300/Config.in"
|
source "$BR2_EXTERNAL_HISILICON_PATH/package/majestic-hi3516ev300/Config.in"
|
||||||
source "$BR2_EXTERNAL_HISILICON_PATH/package/majestic-hi3519v101/Config.in"
|
source "$BR2_EXTERNAL_HISILICON_PATH/package/majestic-hi3519v101/Config.in"
|
||||||
|
source "$BR2_EXTERNAL_HISILICON_PATH/package/mavlink-router/Config.in"
|
||||||
source "$BR2_EXTERNAL_HISILICON_PATH/package/mbedtls-openipc/Config.in"
|
source "$BR2_EXTERNAL_HISILICON_PATH/package/mbedtls-openipc/Config.in"
|
||||||
source "$BR2_EXTERNAL_HISILICON_PATH/package/microbe-web/Config.in"
|
source "$BR2_EXTERNAL_HISILICON_PATH/package/microbe-web/Config.in"
|
||||||
source "$BR2_EXTERNAL_HISILICON_PATH/package/motors/Config.in"
|
source "$BR2_EXTERNAL_HISILICON_PATH/package/motors/Config.in"
|
||||||
|
|
|
@ -700,7 +700,7 @@ CONFIG_IPV6_FOU=y
|
||||||
# CONFIG_TIPC is not set
|
# CONFIG_TIPC is not set
|
||||||
# CONFIG_ATM is not set
|
# CONFIG_ATM is not set
|
||||||
# CONFIG_L2TP is not set
|
# CONFIG_L2TP is not set
|
||||||
# CONFIG_BRIDGE is not set
|
CONFIG_BRIDGE=y
|
||||||
CONFIG_HAVE_NET_DSA=y
|
CONFIG_HAVE_NET_DSA=y
|
||||||
# CONFIG_VLAN_8021Q is not set
|
# CONFIG_VLAN_8021Q is not set
|
||||||
# CONFIG_DECNET is not set
|
# CONFIG_DECNET is not set
|
||||||
|
|
|
@ -700,7 +700,7 @@ CONFIG_IPV6_FOU=y
|
||||||
# CONFIG_TIPC is not set
|
# CONFIG_TIPC is not set
|
||||||
# CONFIG_ATM is not set
|
# CONFIG_ATM is not set
|
||||||
# CONFIG_L2TP is not set
|
# CONFIG_L2TP is not set
|
||||||
# CONFIG_BRIDGE is not set
|
CONFIG_BRIDGE=y
|
||||||
CONFIG_HAVE_NET_DSA=y
|
CONFIG_HAVE_NET_DSA=y
|
||||||
# CONFIG_VLAN_8021Q is not set
|
# CONFIG_VLAN_8021Q is not set
|
||||||
# CONFIG_DECNET is not set
|
# CONFIG_DECNET is not set
|
||||||
|
|
|
@ -502,7 +502,7 @@ CONFIG_IPV6=y
|
||||||
# CONFIG_TIPC is not set
|
# CONFIG_TIPC is not set
|
||||||
# CONFIG_ATM is not set
|
# CONFIG_ATM is not set
|
||||||
# CONFIG_L2TP is not set
|
# CONFIG_L2TP is not set
|
||||||
# CONFIG_BRIDGE is not set
|
CONFIG_BRIDGE=y
|
||||||
# CONFIG_NET_DSA is not set
|
# CONFIG_NET_DSA is not set
|
||||||
# CONFIG_VLAN_8021Q is not set
|
# CONFIG_VLAN_8021Q is not set
|
||||||
# CONFIG_DECNET is not set
|
# CONFIG_DECNET is not set
|
||||||
|
@ -1155,7 +1155,7 @@ CONFIG_USB_WDM=y
|
||||||
#
|
#
|
||||||
# also be needed; see USB_STORAGE Help for more info
|
# also be needed; see USB_STORAGE Help for more info
|
||||||
#
|
#
|
||||||
CONFIG_USB_STORAGE=y
|
CONFIG_USB_STORAGE=m
|
||||||
# CONFIG_USB_STORAGE_DEBUG is not set
|
# CONFIG_USB_STORAGE_DEBUG is not set
|
||||||
# CONFIG_USB_STORAGE_REALTEK is not set
|
# CONFIG_USB_STORAGE_REALTEK is not set
|
||||||
# CONFIG_USB_STORAGE_DATAFAB is not set
|
# CONFIG_USB_STORAGE_DATAFAB is not set
|
||||||
|
|
|
@ -502,7 +502,7 @@ CONFIG_IPV6=y
|
||||||
# CONFIG_TIPC is not set
|
# CONFIG_TIPC is not set
|
||||||
# CONFIG_ATM is not set
|
# CONFIG_ATM is not set
|
||||||
# CONFIG_L2TP is not set
|
# CONFIG_L2TP is not set
|
||||||
# CONFIG_BRIDGE is not set
|
CONFIG_BRIDGE=y
|
||||||
# CONFIG_NET_DSA is not set
|
# CONFIG_NET_DSA is not set
|
||||||
# CONFIG_VLAN_8021Q is not set
|
# CONFIG_VLAN_8021Q is not set
|
||||||
# CONFIG_DECNET is not set
|
# CONFIG_DECNET is not set
|
||||||
|
@ -1155,7 +1155,7 @@ CONFIG_USB_WDM=y
|
||||||
#
|
#
|
||||||
# also be needed; see USB_STORAGE Help for more info
|
# also be needed; see USB_STORAGE Help for more info
|
||||||
#
|
#
|
||||||
CONFIG_USB_STORAGE=y
|
CONFIG_USB_STORAGE=m
|
||||||
# CONFIG_USB_STORAGE_DEBUG is not set
|
# CONFIG_USB_STORAGE_DEBUG is not set
|
||||||
# CONFIG_USB_STORAGE_REALTEK is not set
|
# CONFIG_USB_STORAGE_REALTEK is not set
|
||||||
# CONFIG_USB_STORAGE_DATAFAB is not set
|
# CONFIG_USB_STORAGE_DATAFAB is not set
|
||||||
|
|
|
@ -502,7 +502,7 @@ CONFIG_IPV6=y
|
||||||
# CONFIG_TIPC is not set
|
# CONFIG_TIPC is not set
|
||||||
# CONFIG_ATM is not set
|
# CONFIG_ATM is not set
|
||||||
# CONFIG_L2TP is not set
|
# CONFIG_L2TP is not set
|
||||||
# CONFIG_BRIDGE is not set
|
CONFIG_BRIDGE=y
|
||||||
# CONFIG_NET_DSA is not set
|
# CONFIG_NET_DSA is not set
|
||||||
# CONFIG_VLAN_8021Q is not set
|
# CONFIG_VLAN_8021Q is not set
|
||||||
# CONFIG_DECNET is not set
|
# CONFIG_DECNET is not set
|
||||||
|
@ -1155,7 +1155,7 @@ CONFIG_USB_WDM=y
|
||||||
#
|
#
|
||||||
# also be needed; see USB_STORAGE Help for more info
|
# also be needed; see USB_STORAGE Help for more info
|
||||||
#
|
#
|
||||||
CONFIG_USB_STORAGE=y
|
CONFIG_USB_STORAGE=m
|
||||||
# CONFIG_USB_STORAGE_DEBUG is not set
|
# CONFIG_USB_STORAGE_DEBUG is not set
|
||||||
# CONFIG_USB_STORAGE_REALTEK is not set
|
# CONFIG_USB_STORAGE_REALTEK is not set
|
||||||
# CONFIG_USB_STORAGE_DATAFAB is not set
|
# CONFIG_USB_STORAGE_DATAFAB is not set
|
||||||
|
|
|
@ -602,7 +602,7 @@ CONFIG_IPV6_FOU=y
|
||||||
# CONFIG_TIPC is not set
|
# CONFIG_TIPC is not set
|
||||||
# CONFIG_ATM is not set
|
# CONFIG_ATM is not set
|
||||||
# CONFIG_L2TP is not set
|
# CONFIG_L2TP is not set
|
||||||
# CONFIG_BRIDGE is not set
|
CONFIG_BRIDGE=y
|
||||||
CONFIG_HAVE_NET_DSA=y
|
CONFIG_HAVE_NET_DSA=y
|
||||||
# CONFIG_VLAN_8021Q is not set
|
# CONFIG_VLAN_8021Q is not set
|
||||||
# CONFIG_DECNET is not set
|
# CONFIG_DECNET is not set
|
||||||
|
|
|
@ -602,7 +602,7 @@ CONFIG_IPV6_FOU=y
|
||||||
# CONFIG_TIPC is not set
|
# CONFIG_TIPC is not set
|
||||||
# CONFIG_ATM is not set
|
# CONFIG_ATM is not set
|
||||||
# CONFIG_L2TP is not set
|
# CONFIG_L2TP is not set
|
||||||
# CONFIG_BRIDGE is not set
|
CONFIG_BRIDGE=y
|
||||||
CONFIG_HAVE_NET_DSA=y
|
CONFIG_HAVE_NET_DSA=y
|
||||||
# CONFIG_VLAN_8021Q is not set
|
# CONFIG_VLAN_8021Q is not set
|
||||||
# CONFIG_DECNET is not set
|
# CONFIG_DECNET is not set
|
||||||
|
|
|
@ -602,7 +602,7 @@ CONFIG_IPV6_FOU=y
|
||||||
# CONFIG_TIPC is not set
|
# CONFIG_TIPC is not set
|
||||||
# CONFIG_ATM is not set
|
# CONFIG_ATM is not set
|
||||||
# CONFIG_L2TP is not set
|
# CONFIG_L2TP is not set
|
||||||
# CONFIG_BRIDGE is not set
|
CONFIG_BRIDGE=y
|
||||||
CONFIG_HAVE_NET_DSA=y
|
CONFIG_HAVE_NET_DSA=y
|
||||||
# CONFIG_VLAN_8021Q is not set
|
# CONFIG_VLAN_8021Q is not set
|
||||||
# CONFIG_DECNET is not set
|
# CONFIG_DECNET is not set
|
||||||
|
|
|
@ -644,7 +644,7 @@ CONFIG_NETFILTER_INGRESS=y
|
||||||
# CONFIG_TIPC is not set
|
# CONFIG_TIPC is not set
|
||||||
# CONFIG_ATM is not set
|
# CONFIG_ATM is not set
|
||||||
# CONFIG_L2TP is not set
|
# CONFIG_L2TP is not set
|
||||||
# CONFIG_BRIDGE is not set
|
CONFIG_BRIDGE=y
|
||||||
CONFIG_HAVE_NET_DSA=y
|
CONFIG_HAVE_NET_DSA=y
|
||||||
# CONFIG_VLAN_8021Q is not set
|
# CONFIG_VLAN_8021Q is not set
|
||||||
# CONFIG_DECNET is not set
|
# CONFIG_DECNET is not set
|
||||||
|
|
|
@ -644,7 +644,7 @@ CONFIG_NETFILTER_INGRESS=y
|
||||||
# CONFIG_TIPC is not set
|
# CONFIG_TIPC is not set
|
||||||
# CONFIG_ATM is not set
|
# CONFIG_ATM is not set
|
||||||
# CONFIG_L2TP is not set
|
# CONFIG_L2TP is not set
|
||||||
# CONFIG_BRIDGE is not set
|
CONFIG_BRIDGE=y
|
||||||
CONFIG_HAVE_NET_DSA=y
|
CONFIG_HAVE_NET_DSA=y
|
||||||
# CONFIG_VLAN_8021Q is not set
|
# CONFIG_VLAN_8021Q is not set
|
||||||
# CONFIG_DECNET is not set
|
# CONFIG_DECNET is not set
|
||||||
|
|
|
@ -0,0 +1,576 @@
|
||||||
|
/*
|
||||||
|
* Copyright (c) 2013-2014 Linaro Ltd.
|
||||||
|
* Copyright (c) 2015-2017 HiSilicon Technologies Co., Ltd.
|
||||||
|
*
|
||||||
|
* This program is free software; you can redistribute it and/or modify it
|
||||||
|
* under the terms of the GNU General Public License as published by the
|
||||||
|
* Free Software Foundation; either version 2 of the License, or (at your
|
||||||
|
* option) any later version.
|
||||||
|
*
|
||||||
|
* This program is distributed in the hope that it will be useful,
|
||||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
* GNU General Public License for more details.
|
||||||
|
*
|
||||||
|
* You should have received a copy of the GNU General Public License
|
||||||
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
|
||||||
|
#include <dt-bindings/clock/hi3518ev20x-clock.h>
|
||||||
|
/ {
|
||||||
|
#address-cells = <1>;
|
||||||
|
#size-cells = <1>;
|
||||||
|
|
||||||
|
cpus {
|
||||||
|
#address-cells = <1>;
|
||||||
|
#size-cells = <0>;
|
||||||
|
|
||||||
|
cpu@0 {
|
||||||
|
device_type = "cpu";
|
||||||
|
compatible = "arm,arm926ej-s";
|
||||||
|
reg = <0>;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
vic: interrupt-controller@100d0000 {
|
||||||
|
compatible = "arm,pl190-vic";
|
||||||
|
interrupt-controller;
|
||||||
|
#interrupt-cells = <1>;
|
||||||
|
reg = <0x100d0000 0x1000>;
|
||||||
|
};
|
||||||
|
|
||||||
|
soc {
|
||||||
|
#address-cells = <1>;
|
||||||
|
#size-cells = <1>;
|
||||||
|
compatible = "simple-bus";
|
||||||
|
interrupt-parent = <&vic>;
|
||||||
|
ranges;
|
||||||
|
|
||||||
|
clock: clock@20030000 {
|
||||||
|
compatible = "hisilicon,hi3518ev20x-clock";
|
||||||
|
reg = <0x20030000 0x1000>;
|
||||||
|
#clock-cells = <1>;
|
||||||
|
#reset-cells = <2>;
|
||||||
|
};
|
||||||
|
|
||||||
|
sysctrl: system-controller@20050000 {
|
||||||
|
compatible = "hisilicon,hi3518ev20x-sysctrl",
|
||||||
|
"syscon";
|
||||||
|
reg = <0x20050000 0x1000>;
|
||||||
|
#clock-cells = <1>;
|
||||||
|
};
|
||||||
|
|
||||||
|
reboot {
|
||||||
|
compatible = "syscon-reboot";
|
||||||
|
regmap = <&sysctrl>;
|
||||||
|
offset = <0x4>;
|
||||||
|
mask = <0xdeadbeef>;
|
||||||
|
};
|
||||||
|
|
||||||
|
dual_timer0: dual_timer@20000000 {
|
||||||
|
compatible = "arm,sp804", "arm,primecell";
|
||||||
|
/* timer0 & timer1 */
|
||||||
|
interrupts = <3>;
|
||||||
|
reg = <0x20000000 0x1000>;
|
||||||
|
clocks = <&sysctrl HI3518EV20X_TIME0_0_CLK>,
|
||||||
|
<&sysctrl HI3518EV20X_TIME0_1_CLK>,
|
||||||
|
<&clock HI3518EV20X_SYSAPB_CLK>;
|
||||||
|
clock-names = "timer0", "timer1", "apb_pclk";
|
||||||
|
status = "disabled";
|
||||||
|
};
|
||||||
|
|
||||||
|
dual_timer1: dual_timer@20010000 {
|
||||||
|
compatible = "arm,sp804", "arm,primecell";
|
||||||
|
/* timer2 & timer3 */
|
||||||
|
interrupts = <4>;
|
||||||
|
reg = <0x20010000 0x1000>;
|
||||||
|
clocks = <&sysctrl HI3518EV20X_TIME1_2_CLK>,
|
||||||
|
<&sysctrl HI3518EV20X_TIME1_3_CLK>,
|
||||||
|
<&clock HI3518EV20X_SYSAPB_CLK>;
|
||||||
|
clock-names = "timer2", "timer3", "apb_pclk";
|
||||||
|
status = "disabled";
|
||||||
|
};
|
||||||
|
|
||||||
|
uart0: uart@20080000 {
|
||||||
|
compatible = "arm,pl011", "arm,primecell";
|
||||||
|
reg = <0x20080000 0x1000>;
|
||||||
|
interrupts = <5>;
|
||||||
|
clocks = <&clock HI3518EV20X_UART0_CLK>;
|
||||||
|
clock-names = "apb_pclk";
|
||||||
|
status = "disabled";
|
||||||
|
};
|
||||||
|
|
||||||
|
uart1: uart@20090000 {
|
||||||
|
compatible = "arm,pl011", "arm,primecell";
|
||||||
|
reg = <0x20090000 0x1000>;
|
||||||
|
interrupts = <30>;
|
||||||
|
clocks = <&clock HI3518EV20X_UART1_CLK>;
|
||||||
|
clock-names = "apb_pclk";
|
||||||
|
status = "disabled";
|
||||||
|
};
|
||||||
|
|
||||||
|
uart2: uart@200a0000 {
|
||||||
|
compatible = "arm,pl011", "arm,primecell";
|
||||||
|
reg = <0x200a0000 0x1000>;
|
||||||
|
interrupts = <25>;
|
||||||
|
clocks = <&clock HI3518EV20X_UART2_CLK>;
|
||||||
|
clock-names = "apb_pclk";
|
||||||
|
status = "disabled";
|
||||||
|
};
|
||||||
|
|
||||||
|
usb_phy: phy {
|
||||||
|
compatible = "hisilicon,hisi-usb-phy";
|
||||||
|
reg = <0x20030000 0x10000>, <0x20120000 0x10000>,
|
||||||
|
<0x20050000 0x10000>;
|
||||||
|
#phy-cells = <0>;
|
||||||
|
};
|
||||||
|
|
||||||
|
ehci@0x100b0000 {
|
||||||
|
compatible = "generic-ehci";
|
||||||
|
reg = <0x100b0000 0x10000>;
|
||||||
|
interrupts = <15>;
|
||||||
|
|
||||||
|
clocks = <&clock HI3518EV20X_USB2_CTRL_UTMI0_REQ>,
|
||||||
|
<&clock HI3518EV20X_USB2_HRST_REQ>;
|
||||||
|
clock-names = "usb2_cttl_utmi0_req", "usb2_hrst_req";
|
||||||
|
};
|
||||||
|
|
||||||
|
ohci@0x100a0000 {
|
||||||
|
compatible = "generic-ohci";
|
||||||
|
reg = <0x100a0000 0x10000>;
|
||||||
|
interrupts = <16>;
|
||||||
|
|
||||||
|
clocks = <&clock HI3518EV20X_USB2_CTRL_UTMI0_REQ>,
|
||||||
|
<&clock HI3518EV20X_USB2_HRST_REQ>;
|
||||||
|
clock-names = "usb2_cttl_utmi0_req", "usb2_hrst_req";
|
||||||
|
};
|
||||||
|
|
||||||
|
hiudc@0x10080000 {
|
||||||
|
compatible = "hiudc";
|
||||||
|
reg = <0x10080000 0x10000>;
|
||||||
|
interrupts = <10>;
|
||||||
|
|
||||||
|
clocks = <&clock HI3518EV20X_USB2_HRST_REQ>;
|
||||||
|
clock-names = "clk";
|
||||||
|
};
|
||||||
|
|
||||||
|
i2c_bus0: i2c@200d0000 {
|
||||||
|
compatible = "hisilicon,hisi-i2c-hisilicon";
|
||||||
|
reg = <0x200d0000 0x100>;
|
||||||
|
interrupts = <20>;
|
||||||
|
clocks = <&clock HI3518EV20X_SYSAPB_CLK>;
|
||||||
|
clock-frequency = <100000>;
|
||||||
|
io-size = <0x1000>;
|
||||||
|
id = <0>;
|
||||||
|
status = "disabled";
|
||||||
|
};
|
||||||
|
|
||||||
|
i2c_bus1: i2c@20240000 {
|
||||||
|
compatible = "hisilicon,hisi-i2c-hisilicon";
|
||||||
|
reg = <0x20240000 0x100>;
|
||||||
|
interrupts = <20>;
|
||||||
|
clocks = <&clock HI3518EV20X_SYSAPB_CLK>;
|
||||||
|
clock-frequency = <100000>;
|
||||||
|
io-size = <0x1000>;
|
||||||
|
id = <1>;
|
||||||
|
status = "disabled";
|
||||||
|
};
|
||||||
|
|
||||||
|
i2c_bus2: i2c@20250000 {
|
||||||
|
compatible = "hisilicon,hisi-i2c-hisilicon";
|
||||||
|
reg = <0x20250000 0x100>;
|
||||||
|
interrupts = <20>;
|
||||||
|
clocks = <&clock HI3518EV20X_SYSAPB_CLK>;
|
||||||
|
clock-frequency = <100000>;
|
||||||
|
io-size = <0x1000>;
|
||||||
|
id = <2>;
|
||||||
|
status = "disabled";
|
||||||
|
};
|
||||||
|
|
||||||
|
spi_bus0: spi@200c0000 {
|
||||||
|
compatible = "arm,pl022", "arm,primecell";
|
||||||
|
arm,primecell-periphid = <0x00800022>;
|
||||||
|
reg = <0x200c0000 0x1000>;
|
||||||
|
interrupts = <6>;
|
||||||
|
clocks = <&clock HI3518EV20X_SPI0_CLK>;
|
||||||
|
clock-names = "apb_pclk";
|
||||||
|
status = "disabled";
|
||||||
|
#address-cells = <1>;
|
||||||
|
#size-cells = <0>;
|
||||||
|
};
|
||||||
|
|
||||||
|
spi_bus1: spi@200e0000 {
|
||||||
|
compatible = "arm,pl022", "arm,primecell";
|
||||||
|
arm,primecell-periphid = <0x00800022>;
|
||||||
|
reg = <0x200e0000 0x1000>, <0x20120004 0x4>;
|
||||||
|
interrupts = <7>;
|
||||||
|
clocks = <&clock HI3518EV20X_SPI1_CLK>;
|
||||||
|
clock-names = "apb_pclk";
|
||||||
|
status = "disabled";
|
||||||
|
#address-cells = <1>;
|
||||||
|
#size-cells = <0>;
|
||||||
|
hisi,spi_cs_sb = <26>;
|
||||||
|
hisi,spi_cs_mask_bit = <0x0c000000>;
|
||||||
|
};
|
||||||
|
|
||||||
|
fmc: flash-memory-controller@10010000 {
|
||||||
|
compatible = "hisilicon,hisi-fmc";
|
||||||
|
reg = <0x10010000 0x1000>, <0x58000000 0x10000>;
|
||||||
|
reg-names = "control", "memory";
|
||||||
|
clocks = <&clock HI3518EV20X_FMC_CLK>;
|
||||||
|
#address-cells = <1>;
|
||||||
|
#size-cells = <0>;
|
||||||
|
|
||||||
|
hisfc:spi-nor@0 {
|
||||||
|
compatible = "hisilicon,fmc-spi-nor";
|
||||||
|
assigned-clocks = <&clock HI3518EV20X_FMC_CLK>;
|
||||||
|
assigned-clock-rates = <24000000>;
|
||||||
|
#address-cells = <1>;
|
||||||
|
#size-cells = <0>;
|
||||||
|
};
|
||||||
|
|
||||||
|
hisnfc:spi-nand@0 {
|
||||||
|
compatible = "hisilicon,fmc-spi-nand";
|
||||||
|
assigned-clocks = <&clock HI3518EV20X_FMC_CLK>;
|
||||||
|
assigned-clock-rates = <24000000>;
|
||||||
|
#address-cells = <1>;
|
||||||
|
#size-cells = <0>;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
mdio: mdio@10091100 {
|
||||||
|
compatible = "hisilicon,hisi-femac-mdio";
|
||||||
|
reg = <0x10091100 0x10>;
|
||||||
|
clocks = <&clock HI3518EV20X_ETH_CLK>;
|
||||||
|
clock-names = "mdio";
|
||||||
|
assigned-clocks = <&clock HI3518EV20X_ETH_CLK>;
|
||||||
|
assigned-clock-rates = <54000000>;
|
||||||
|
resets = <&clock 0xec 3>;
|
||||||
|
reset-names = "external-phy";
|
||||||
|
#address-cells = <1>;
|
||||||
|
#size-cells = <0>;
|
||||||
|
};
|
||||||
|
|
||||||
|
hisi_femac: ethernet@10090000 {
|
||||||
|
compatible = "hisilicon,hi3518ev20x-femac",
|
||||||
|
"hisilicon,hisi-femac-v2";
|
||||||
|
reg = <0x10090000 0x1000>,<0x10091300 0x200>;
|
||||||
|
interrupts = <12>;
|
||||||
|
clocks = <&clock HI3518EV20X_ETH_CLK>;
|
||||||
|
resets = <&clock 0xec 0>;
|
||||||
|
reset-names = "mac";
|
||||||
|
};
|
||||||
|
|
||||||
|
mmc0_emmc: himciv200.MMC@0x10020000{
|
||||||
|
compatible = "hisilicon,hi3518ev20x-himci";
|
||||||
|
reg = <0x10020000 0x1000>;
|
||||||
|
interrupts = <18>;
|
||||||
|
clocks = <&clock HI3518EV20X_MMC0_CLK>;
|
||||||
|
clock-names = "mmc_clk";
|
||||||
|
max-frequency = <99000000>;
|
||||||
|
resets = <&clock 0xc4 8>;
|
||||||
|
reset-names = "mmc_reset";
|
||||||
|
bus-width = <8>;
|
||||||
|
cap-mmc-highspeed;
|
||||||
|
cap-mmc-hw-reset;
|
||||||
|
mmc-hs200-1_8v;
|
||||||
|
full-pwr-cycle;
|
||||||
|
devid = <0>;
|
||||||
|
status = "disabled";
|
||||||
|
};
|
||||||
|
|
||||||
|
mmc0_sd: himciv200.SD@0x10020000{
|
||||||
|
compatible = "hisilicon,hi3518ev20x-himci";
|
||||||
|
reg = <0x10020000 0x1000>;
|
||||||
|
interrupts = <18>;
|
||||||
|
clocks = <&clock HI3518EV20X_MMC0_CLK>;
|
||||||
|
clock-names = "mmc_clk";
|
||||||
|
max-frequency = <49500000>;
|
||||||
|
resets = <&clock 0xc4 8>;
|
||||||
|
reset-names = "mmc_reset";
|
||||||
|
bus-width = <4>;
|
||||||
|
cap-sd-highspeed;
|
||||||
|
devid = <0>;
|
||||||
|
status = "disabled";
|
||||||
|
};
|
||||||
|
|
||||||
|
mmc1_sd: himciv200.SD@0x10030000{
|
||||||
|
compatible = "hisilicon,hi3518ev20x-himci";
|
||||||
|
reg = <0x10030000 0x1000>;
|
||||||
|
interrupts = <8>;
|
||||||
|
clocks = <&clock HI3518EV20X_MMC1_CLK>;
|
||||||
|
clock-names = "mmc_clk";
|
||||||
|
max-frequency = <49500000>;
|
||||||
|
resets = <&clock 0xc4 0>;
|
||||||
|
reset-names = "mmc_reset";
|
||||||
|
bus-width = <4>;
|
||||||
|
cap-sd-highspeed;
|
||||||
|
sd-uhs-sdr12;
|
||||||
|
sd-uhs-sdr25;
|
||||||
|
sd-uhs-sdr50;
|
||||||
|
sd-uhs-sdr104;
|
||||||
|
devid = <1>;
|
||||||
|
status = "disabled";
|
||||||
|
};
|
||||||
|
|
||||||
|
pmux: pinmux@200f0000 {
|
||||||
|
compatible = "pinctrl-single";
|
||||||
|
reg = <0x200f0000 0x108>;
|
||||||
|
#address-cells = <1>;
|
||||||
|
#size-cells = <1>;
|
||||||
|
#gpio-range-cells = <3>;
|
||||||
|
ranges;
|
||||||
|
|
||||||
|
pinctrl-single,register-width = <32>;
|
||||||
|
pinctrl-single,function-mask = <7>;
|
||||||
|
/* pin base, nr pins & gpio function */
|
||||||
|
pinctrl-single,gpio-range = <&range 0 5 0
|
||||||
|
&range 6 38 0 &range 44 1 2
|
||||||
|
&range 45 13 0 &range 58 8 1>;
|
||||||
|
|
||||||
|
range: gpio-range {
|
||||||
|
#pinctrl-single,gpio-range-cells = <3>;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
pconf: pinconf@200f0800 {
|
||||||
|
compatible = "pinconf-single";
|
||||||
|
reg = <0x200f0800 0x130>;
|
||||||
|
#address-cells = <1>;
|
||||||
|
#size-cells = <1>;
|
||||||
|
ranges;
|
||||||
|
|
||||||
|
pinctrl-single,register-width = <32>;
|
||||||
|
};
|
||||||
|
|
||||||
|
gpio_chip0: gpio_chip@20140000 {
|
||||||
|
compatible = "arm,pl061", "arm,primecell";
|
||||||
|
reg = <0x20140000 0x10000>;
|
||||||
|
interrupts = <31>;
|
||||||
|
clocks = <&clock HI3518EV20X_SYSAPB_CLK>;
|
||||||
|
clock-names = "apb_pclk";
|
||||||
|
#gpio-cells = <2>;
|
||||||
|
gpio-ranges = <&pmux 0 28 3>, <&pmux 3 12 1>,
|
||||||
|
<&pmux 4 0 4>;
|
||||||
|
status = "disabled";
|
||||||
|
};
|
||||||
|
|
||||||
|
gpio_chip1: gpio_chip@20150000 {
|
||||||
|
compatible = "arm,pl061", "arm,primecell";
|
||||||
|
reg = <0x20150000 0x10000>;
|
||||||
|
interrupts = <31>;
|
||||||
|
clocks = <&clock HI3518EV20X_SYSAPB_CLK>;
|
||||||
|
clock-names = "apb_pclk";
|
||||||
|
#gpio-cells = <2>;
|
||||||
|
gpio-ranges = <&pmux 0 31 8>;
|
||||||
|
status = "disabled";
|
||||||
|
};
|
||||||
|
|
||||||
|
gpio_chip2: gpio_chip@20160000 {
|
||||||
|
compatible = "arm,pl061", "arm,primecell";
|
||||||
|
reg = <0x20160000 0x10000>;
|
||||||
|
interrupts = <31>;
|
||||||
|
clocks = <&clock HI3518EV20X_SYSAPB_CLK>;
|
||||||
|
clock-names = "apb_pclk";
|
||||||
|
#gpio-cells = <2>;
|
||||||
|
gpio-ranges = <&pmux 0 4 8>;
|
||||||
|
status = "disabled";
|
||||||
|
};
|
||||||
|
|
||||||
|
gpio_chip3: gpio_chip@20170000 {
|
||||||
|
compatible = "arm,pl061", "arm,primecell";
|
||||||
|
reg = <0x20170000 0x10000>;
|
||||||
|
interrupts = <31>;
|
||||||
|
clocks = <&clock HI3518EV20X_SYSAPB_CLK>;
|
||||||
|
clock-names = "apb_pclk";
|
||||||
|
#gpio-cells = <2>;
|
||||||
|
gpio-ranges = <&pmux 0 13 8>;
|
||||||
|
status = "disabled";
|
||||||
|
};
|
||||||
|
|
||||||
|
gpio_chip4: gpio_chip@20180000 {
|
||||||
|
compatible = "arm,pl061", "arm,primecell";
|
||||||
|
reg = <0x20180000 0x10000>;
|
||||||
|
interrupts = <31>;
|
||||||
|
clocks = <&clock HI3518EV20X_SYSAPB_CLK>;
|
||||||
|
clock-names = "apb_pclk";
|
||||||
|
#gpio-cells = <2>;
|
||||||
|
gpio-ranges = <&pmux 0 21 7>, <&pmux 7 39 1>;
|
||||||
|
status = "disabled";
|
||||||
|
};
|
||||||
|
|
||||||
|
gpio_chip5: gpio_chip@20190000 {
|
||||||
|
compatible = "arm,pl061", "arm,primecell";
|
||||||
|
reg = <0x20190000 0x10000>;
|
||||||
|
interrupts = <31>;
|
||||||
|
clocks = <&clock HI3518EV20X_SYSAPB_CLK>;
|
||||||
|
clock-names = "apb_pclk";
|
||||||
|
#gpio-cells = <2>;
|
||||||
|
gpio-ranges = <&pmux 0 40 8>;
|
||||||
|
status = "disabled";
|
||||||
|
};
|
||||||
|
|
||||||
|
gpio_chip6: gpio_chip@201a0000 {
|
||||||
|
compatible = "arm,pl061", "arm,primecell";
|
||||||
|
reg = <0x201a0000 0x10000>;
|
||||||
|
interrupts = <31>;
|
||||||
|
clocks = <&clock HI3518EV20X_SYSAPB_CLK>;
|
||||||
|
clock-names = "apb_pclk";
|
||||||
|
#gpio-cells = <2>;
|
||||||
|
gpio-ranges = <&pmux 0 48 8>;
|
||||||
|
status = "disabled";
|
||||||
|
};
|
||||||
|
|
||||||
|
gpio_chip7: gpio_chip@201b0000 {
|
||||||
|
compatible = "arm,pl061", "arm,primecell";
|
||||||
|
reg = <0x201b0000 0x10000>;
|
||||||
|
interrupts = <31>;
|
||||||
|
clocks = <&clock HI3518EV20X_SYSAPB_CLK>;
|
||||||
|
clock-names = "apb_pclk";
|
||||||
|
#gpio-cells = <2>;
|
||||||
|
gpio-ranges = <&pmux 0 56 8>;
|
||||||
|
status = "disabled";
|
||||||
|
};
|
||||||
|
|
||||||
|
gpio_chip8: gpio_chip@201c0000 {
|
||||||
|
compatible = "arm,pl061", "arm,primecell";
|
||||||
|
reg = <0x201c0000 0x10000>;
|
||||||
|
interrupts = <31>;
|
||||||
|
clocks = <&clock HI3518EV20X_SYSAPB_CLK>;
|
||||||
|
clock-names = "apb_pclk";
|
||||||
|
#gpio-cells = <2>;
|
||||||
|
gpio-ranges = <&pmux 0 64 2>;
|
||||||
|
status = "disabled";
|
||||||
|
};
|
||||||
|
|
||||||
|
hidmac: hidma-controller@10060000 {
|
||||||
|
compatible = "hisilicon,hisi-dmac";
|
||||||
|
reg = <0x10060000 0x1000>;
|
||||||
|
interrupts = <14>;
|
||||||
|
clocks = <&clock HI3518EV20X_DMAC_CLK>;
|
||||||
|
clock-names = "dmac_clk";
|
||||||
|
resets = <&clock 0xd8 4>;
|
||||||
|
reset-names = "dma-reset";
|
||||||
|
#dma-cells = <2>;
|
||||||
|
status = "disabled";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
media {
|
||||||
|
#address-cells = <1>;
|
||||||
|
#size-cells = <1>;
|
||||||
|
compatible = "simple-bus";
|
||||||
|
interrupt-parent = <&vic>;
|
||||||
|
ranges;
|
||||||
|
|
||||||
|
sys_config {
|
||||||
|
compatible = "hisilicon,sys_config";
|
||||||
|
};
|
||||||
|
|
||||||
|
sys: sys@20030000 {
|
||||||
|
compatible = "hisilicon,hi35xx_sys";
|
||||||
|
reg = <0x20030000 0x10000>, <0x20050000 0x10000>,
|
||||||
|
<0x20110000 0x10000>, <0x20120000 0x10000>;
|
||||||
|
reg-names = "crg", "sys", "ddr", "misc";
|
||||||
|
};
|
||||||
|
|
||||||
|
audio: audio@20650000 {
|
||||||
|
compatible = "hisilicon,hi35xx_aiao";
|
||||||
|
interrupts = <9>;
|
||||||
|
reg = <0x20650000 0x10000>;
|
||||||
|
reg-names = "aiao";
|
||||||
|
};
|
||||||
|
|
||||||
|
ive: ive@206a0000 {
|
||||||
|
compatible = "hisilicon,hi35xx_ive";
|
||||||
|
interrupts = <21>;
|
||||||
|
reg = <0x206a0000 0x10000>;
|
||||||
|
};
|
||||||
|
|
||||||
|
mipi: mipi@20680000 {
|
||||||
|
compatible = "hisilicon,hi35xx_mipi";
|
||||||
|
interrupts = <28>;
|
||||||
|
reg = <0x20680000 0x10000>;
|
||||||
|
};
|
||||||
|
|
||||||
|
isp: isp@20580000 {
|
||||||
|
compatible = "hisilicon,hi35xx_isp";
|
||||||
|
interrupts = <22>;
|
||||||
|
reg = <0x20580000 0x10000>, <0x205a0000 0x20000>;
|
||||||
|
reg-names = "reg_vicap_base_va", "reg_isp_base_va";
|
||||||
|
};
|
||||||
|
|
||||||
|
viu: viu@20580000 {
|
||||||
|
compatible = "hisilicon,hi35xx_viu";
|
||||||
|
interrupts = <22>;
|
||||||
|
reg = <0x20580000 0x40000>;
|
||||||
|
};
|
||||||
|
|
||||||
|
vou: vou@205c0000 {
|
||||||
|
compatible = "hisilicon,hi35xx_vou";
|
||||||
|
interrupts = <23>;
|
||||||
|
reg = <0x205c0000 0x10000>;
|
||||||
|
};
|
||||||
|
|
||||||
|
vgs: vgs@20630000 {
|
||||||
|
compatible = "hisilicon,hi35xx_vgs";
|
||||||
|
interrupts = <29>;
|
||||||
|
reg = <0x20630000 0x10000>;
|
||||||
|
};
|
||||||
|
|
||||||
|
vpss: vpss@20600000 {
|
||||||
|
compatible = "hisilicon,hi35xx_vpss";
|
||||||
|
interrupts = <17>;
|
||||||
|
reg = <0x20600000 0x10000>;
|
||||||
|
};
|
||||||
|
|
||||||
|
avc: avc@20620000 {
|
||||||
|
compatible = "hisilicon,hi35xx_avc";
|
||||||
|
interrupts = <24>;
|
||||||
|
reg = <0x20620000 0x10000>;
|
||||||
|
};
|
||||||
|
|
||||||
|
jpege: jpege@20660000 {
|
||||||
|
compatible = "hisilicon,hi35xx_jpege";
|
||||||
|
interrupts = <26>;
|
||||||
|
reg = <0x20660000 0x10000>;
|
||||||
|
};
|
||||||
|
|
||||||
|
tde: tde@20610000 {
|
||||||
|
compatible = "hisilicon,hi35xx_tde";
|
||||||
|
interrupts = <27>;
|
||||||
|
reg = <0x20610000 0x10000>;
|
||||||
|
};
|
||||||
|
|
||||||
|
pwm: pwm@20130000 {
|
||||||
|
compatible = "hisilicon,hi3516cv300-pwm";
|
||||||
|
reg = <0x20130000 0x10000>;
|
||||||
|
};
|
||||||
|
|
||||||
|
wtdg: wtdg@20040000 {
|
||||||
|
compatible = "hisilicon,hi_wdg";
|
||||||
|
reg = <0x20040000 0x10000>;
|
||||||
|
reg-names = "wtdg";
|
||||||
|
};
|
||||||
|
|
||||||
|
rtc: rtc@20060000 {
|
||||||
|
compatible = "hisilicon,hi_rtc";
|
||||||
|
interrupts = <2>, <2>;
|
||||||
|
interrupt-names = "rtc", "rtc_temp";
|
||||||
|
reg = <0x20060000 0x10000>;
|
||||||
|
};
|
||||||
|
|
||||||
|
ir: ir@20070000{
|
||||||
|
compatible = "hisilicon,hi_ir";
|
||||||
|
interrupts = <19>;
|
||||||
|
reg = <0x20070000 0x10000>;
|
||||||
|
};
|
||||||
|
|
||||||
|
cipher: cipher@100c0000{
|
||||||
|
compatible = "hisilicon,hi_cipher";
|
||||||
|
interrupts = <13>;
|
||||||
|
reg = <0x100c0000 0x10000>;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
|
@ -598,7 +598,7 @@ CONFIG_NETFILTER_ADVANCED=y
|
||||||
# CONFIG_TIPC is not set
|
# CONFIG_TIPC is not set
|
||||||
# CONFIG_ATM is not set
|
# CONFIG_ATM is not set
|
||||||
# CONFIG_L2TP is not set
|
# CONFIG_L2TP is not set
|
||||||
# CONFIG_BRIDGE is not set
|
CONFIG_BRIDGE=y
|
||||||
CONFIG_HAVE_NET_DSA=y
|
CONFIG_HAVE_NET_DSA=y
|
||||||
# CONFIG_VLAN_8021Q is not set
|
# CONFIG_VLAN_8021Q is not set
|
||||||
# CONFIG_DECNET is not set
|
# CONFIG_DECNET is not set
|
||||||
|
|
|
@ -598,7 +598,7 @@ CONFIG_NETFILTER_ADVANCED=y
|
||||||
# CONFIG_TIPC is not set
|
# CONFIG_TIPC is not set
|
||||||
# CONFIG_ATM is not set
|
# CONFIG_ATM is not set
|
||||||
# CONFIG_L2TP is not set
|
# CONFIG_L2TP is not set
|
||||||
# CONFIG_BRIDGE is not set
|
CONFIG_BRIDGE=y
|
||||||
CONFIG_HAVE_NET_DSA=y
|
CONFIG_HAVE_NET_DSA=y
|
||||||
# CONFIG_VLAN_8021Q is not set
|
# CONFIG_VLAN_8021Q is not set
|
||||||
# CONFIG_DECNET is not set
|
# CONFIG_DECNET is not set
|
||||||
|
|
|
@ -600,7 +600,7 @@ CONFIG_NETFILTER_ADVANCED=y
|
||||||
# CONFIG_TIPC is not set
|
# CONFIG_TIPC is not set
|
||||||
# CONFIG_ATM is not set
|
# CONFIG_ATM is not set
|
||||||
# CONFIG_L2TP is not set
|
# CONFIG_L2TP is not set
|
||||||
# CONFIG_BRIDGE is not set
|
CONFIG_BRIDGE=y
|
||||||
CONFIG_HAVE_NET_DSA=y
|
CONFIG_HAVE_NET_DSA=y
|
||||||
# CONFIG_VLAN_8021Q is not set
|
# CONFIG_VLAN_8021Q is not set
|
||||||
# CONFIG_DECNET is not set
|
# CONFIG_DECNET is not set
|
||||||
|
|
|
@ -598,7 +598,7 @@ CONFIG_NETFILTER_ADVANCED=y
|
||||||
# CONFIG_TIPC is not set
|
# CONFIG_TIPC is not set
|
||||||
# CONFIG_ATM is not set
|
# CONFIG_ATM is not set
|
||||||
# CONFIG_L2TP is not set
|
# CONFIG_L2TP is not set
|
||||||
# CONFIG_BRIDGE is not set
|
CONFIG_BRIDGE=y
|
||||||
CONFIG_HAVE_NET_DSA=y
|
CONFIG_HAVE_NET_DSA=y
|
||||||
# CONFIG_VLAN_8021Q is not set
|
# CONFIG_VLAN_8021Q is not set
|
||||||
# CONFIG_DECNET is not set
|
# CONFIG_DECNET is not set
|
||||||
|
|
|
@ -686,7 +686,7 @@ CONFIG_IPV6_FOU=y
|
||||||
# CONFIG_TIPC is not set
|
# CONFIG_TIPC is not set
|
||||||
# CONFIG_ATM is not set
|
# CONFIG_ATM is not set
|
||||||
# CONFIG_L2TP is not set
|
# CONFIG_L2TP is not set
|
||||||
# CONFIG_BRIDGE is not set
|
CONFIG_BRIDGE=y
|
||||||
CONFIG_HAVE_NET_DSA=y
|
CONFIG_HAVE_NET_DSA=y
|
||||||
# CONFIG_VLAN_8021Q is not set
|
# CONFIG_VLAN_8021Q is not set
|
||||||
# CONFIG_DECNET is not set
|
# CONFIG_DECNET is not set
|
||||||
|
|
|
@ -686,7 +686,7 @@ CONFIG_IPV6_FOU=y
|
||||||
# CONFIG_TIPC is not set
|
# CONFIG_TIPC is not set
|
||||||
# CONFIG_ATM is not set
|
# CONFIG_ATM is not set
|
||||||
# CONFIG_L2TP is not set
|
# CONFIG_L2TP is not set
|
||||||
# CONFIG_BRIDGE is not set
|
CONFIG_BRIDGE=y
|
||||||
CONFIG_HAVE_NET_DSA=y
|
CONFIG_HAVE_NET_DSA=y
|
||||||
# CONFIG_VLAN_8021Q is not set
|
# CONFIG_VLAN_8021Q is not set
|
||||||
# CONFIG_DECNET is not set
|
# CONFIG_DECNET is not set
|
||||||
|
|
|
@ -686,7 +686,7 @@ CONFIG_IPV6_FOU=y
|
||||||
# CONFIG_TIPC is not set
|
# CONFIG_TIPC is not set
|
||||||
# CONFIG_ATM is not set
|
# CONFIG_ATM is not set
|
||||||
# CONFIG_L2TP is not set
|
# CONFIG_L2TP is not set
|
||||||
# CONFIG_BRIDGE is not set
|
CONFIG_BRIDGE=y
|
||||||
CONFIG_HAVE_NET_DSA=y
|
CONFIG_HAVE_NET_DSA=y
|
||||||
# CONFIG_VLAN_8021Q is not set
|
# CONFIG_VLAN_8021Q is not set
|
||||||
# CONFIG_DECNET is not set
|
# CONFIG_DECNET is not set
|
||||||
|
|
|
@ -680,7 +680,7 @@ CONFIG_IPV6_SIT=n
|
||||||
# CONFIG_TIPC is not set
|
# CONFIG_TIPC is not set
|
||||||
# CONFIG_ATM is not set
|
# CONFIG_ATM is not set
|
||||||
# CONFIG_L2TP is not set
|
# CONFIG_L2TP is not set
|
||||||
# CONFIG_BRIDGE is not set
|
CONFIG_BRIDGE=y
|
||||||
CONFIG_HAVE_NET_DSA=y
|
CONFIG_HAVE_NET_DSA=y
|
||||||
# CONFIG_VLAN_8021Q is not set
|
# CONFIG_VLAN_8021Q is not set
|
||||||
# CONFIG_DECNET is not set
|
# CONFIG_DECNET is not set
|
||||||
|
|
File diff suppressed because it is too large
Load Diff
|
@ -680,7 +680,7 @@ CONFIG_IPV6_SIT=n
|
||||||
# CONFIG_TIPC is not set
|
# CONFIG_TIPC is not set
|
||||||
# CONFIG_ATM is not set
|
# CONFIG_ATM is not set
|
||||||
# CONFIG_L2TP is not set
|
# CONFIG_L2TP is not set
|
||||||
# CONFIG_BRIDGE is not set
|
CONFIG_BRIDGE=y
|
||||||
CONFIG_HAVE_NET_DSA=y
|
CONFIG_HAVE_NET_DSA=y
|
||||||
# CONFIG_VLAN_8021Q is not set
|
# CONFIG_VLAN_8021Q is not set
|
||||||
# CONFIG_DECNET is not set
|
# CONFIG_DECNET is not set
|
||||||
|
|
|
@ -680,7 +680,7 @@ CONFIG_IPV6_SIT=n
|
||||||
# CONFIG_TIPC is not set
|
# CONFIG_TIPC is not set
|
||||||
# CONFIG_ATM is not set
|
# CONFIG_ATM is not set
|
||||||
# CONFIG_L2TP is not set
|
# CONFIG_L2TP is not set
|
||||||
# CONFIG_BRIDGE is not set
|
CONFIG_BRIDGE=y
|
||||||
CONFIG_HAVE_NET_DSA=y
|
CONFIG_HAVE_NET_DSA=y
|
||||||
# CONFIG_VLAN_8021Q is not set
|
# CONFIG_VLAN_8021Q is not set
|
||||||
# CONFIG_DECNET is not set
|
# CONFIG_DECNET is not set
|
||||||
|
|
|
@ -680,7 +680,7 @@ CONFIG_IPV6_SIT=n
|
||||||
# CONFIG_TIPC is not set
|
# CONFIG_TIPC is not set
|
||||||
# CONFIG_ATM is not set
|
# CONFIG_ATM is not set
|
||||||
# CONFIG_L2TP is not set
|
# CONFIG_L2TP is not set
|
||||||
# CONFIG_BRIDGE is not set
|
CONFIG_BRIDGE=y
|
||||||
CONFIG_HAVE_NET_DSA=y
|
CONFIG_HAVE_NET_DSA=y
|
||||||
# CONFIG_VLAN_8021Q is not set
|
# CONFIG_VLAN_8021Q is not set
|
||||||
# CONFIG_DECNET is not set
|
# CONFIG_DECNET is not set
|
||||||
|
|
|
@ -680,7 +680,7 @@ CONFIG_IPV6_SIT=n
|
||||||
# CONFIG_TIPC is not set
|
# CONFIG_TIPC is not set
|
||||||
# CONFIG_ATM is not set
|
# CONFIG_ATM is not set
|
||||||
# CONFIG_L2TP is not set
|
# CONFIG_L2TP is not set
|
||||||
# CONFIG_BRIDGE is not set
|
CONFIG_BRIDGE=y
|
||||||
CONFIG_HAVE_NET_DSA=y
|
CONFIG_HAVE_NET_DSA=y
|
||||||
# CONFIG_VLAN_8021Q is not set
|
# CONFIG_VLAN_8021Q is not set
|
||||||
# CONFIG_DECNET is not set
|
# CONFIG_DECNET is not set
|
||||||
|
|
|
@ -703,7 +703,7 @@ CONFIG_NET_ACTIVITY_STATS=y
|
||||||
# CONFIG_TIPC is not set
|
# CONFIG_TIPC is not set
|
||||||
# CONFIG_ATM is not set
|
# CONFIG_ATM is not set
|
||||||
# CONFIG_L2TP is not set
|
# CONFIG_L2TP is not set
|
||||||
# CONFIG_BRIDGE is not set
|
CONFIG_BRIDGE=y
|
||||||
CONFIG_HAVE_NET_DSA=y
|
CONFIG_HAVE_NET_DSA=y
|
||||||
# CONFIG_VLAN_8021Q is not set
|
# CONFIG_VLAN_8021Q is not set
|
||||||
# CONFIG_DECNET is not set
|
# CONFIG_DECNET is not set
|
||||||
|
|
|
@ -703,7 +703,7 @@ CONFIG_NET_ACTIVITY_STATS=y
|
||||||
# CONFIG_TIPC is not set
|
# CONFIG_TIPC is not set
|
||||||
# CONFIG_ATM is not set
|
# CONFIG_ATM is not set
|
||||||
# CONFIG_L2TP is not set
|
# CONFIG_L2TP is not set
|
||||||
# CONFIG_BRIDGE is not set
|
CONFIG_BRIDGE=y
|
||||||
CONFIG_HAVE_NET_DSA=y
|
CONFIG_HAVE_NET_DSA=y
|
||||||
# CONFIG_VLAN_8021Q is not set
|
# CONFIG_VLAN_8021Q is not set
|
||||||
# CONFIG_DECNET is not set
|
# CONFIG_DECNET is not set
|
||||||
|
|
|
@ -653,7 +653,7 @@ CONFIG_NET_ACTIVITY_STATS=y
|
||||||
# CONFIG_TIPC is not set
|
# CONFIG_TIPC is not set
|
||||||
# CONFIG_ATM is not set
|
# CONFIG_ATM is not set
|
||||||
# CONFIG_L2TP is not set
|
# CONFIG_L2TP is not set
|
||||||
# CONFIG_BRIDGE is not set
|
CONFIG_BRIDGE=y
|
||||||
CONFIG_HAVE_NET_DSA=y
|
CONFIG_HAVE_NET_DSA=y
|
||||||
# CONFIG_VLAN_8021Q is not set
|
# CONFIG_VLAN_8021Q is not set
|
||||||
# CONFIG_DECNET is not set
|
# CONFIG_DECNET is not set
|
||||||
|
|
|
@ -707,7 +707,7 @@ CONFIG_NETFILTER_ADVANCED=y
|
||||||
# CONFIG_TIPC is not set
|
# CONFIG_TIPC is not set
|
||||||
# CONFIG_ATM is not set
|
# CONFIG_ATM is not set
|
||||||
# CONFIG_L2TP is not set
|
# CONFIG_L2TP is not set
|
||||||
# CONFIG_BRIDGE is not set
|
CONFIG_BRIDGE=y
|
||||||
CONFIG_HAVE_NET_DSA=y
|
CONFIG_HAVE_NET_DSA=y
|
||||||
# CONFIG_VLAN_8021Q is not set
|
# CONFIG_VLAN_8021Q is not set
|
||||||
# CONFIG_DECNET is not set
|
# CONFIG_DECNET is not set
|
||||||
|
|
|
@ -676,7 +676,7 @@ CONFIG_IPV6_FOU=m
|
||||||
# CONFIG_TIPC is not set
|
# CONFIG_TIPC is not set
|
||||||
# CONFIG_ATM is not set
|
# CONFIG_ATM is not set
|
||||||
# CONFIG_L2TP is not set
|
# CONFIG_L2TP is not set
|
||||||
# CONFIG_BRIDGE is not set
|
CONFIG_BRIDGE=y
|
||||||
CONFIG_HAVE_NET_DSA=y
|
CONFIG_HAVE_NET_DSA=y
|
||||||
# CONFIG_VLAN_8021Q is not set
|
# CONFIG_VLAN_8021Q is not set
|
||||||
# CONFIG_DECNET is not set
|
# CONFIG_DECNET is not set
|
||||||
|
|
|
@ -668,7 +668,7 @@ CONFIG_TCP_MD5SIG=y
|
||||||
# CONFIG_TIPC is not set
|
# CONFIG_TIPC is not set
|
||||||
# CONFIG_ATM is not set
|
# CONFIG_ATM is not set
|
||||||
# CONFIG_L2TP is not set
|
# CONFIG_L2TP is not set
|
||||||
# CONFIG_BRIDGE is not set
|
CONFIG_BRIDGE=y
|
||||||
CONFIG_HAVE_NET_DSA=y
|
CONFIG_HAVE_NET_DSA=y
|
||||||
# CONFIG_VLAN_8021Q is not set
|
# CONFIG_VLAN_8021Q is not set
|
||||||
# CONFIG_DECNET is not set
|
# CONFIG_DECNET is not set
|
||||||
|
|
|
@ -104,5 +104,12 @@ BR2_PACKAGE_LINUX_FIRMWARE_OPENIPC_MT7601U=y
|
||||||
BR2_PACKAGE_WIREGUARD_LINUX_COMPAT=y
|
BR2_PACKAGE_WIREGUARD_LINUX_COMPAT=y
|
||||||
BR2_PACKAGE_WIREGUARD_TOOLS=y
|
BR2_PACKAGE_WIREGUARD_TOOLS=y
|
||||||
|
|
||||||
|
# IPTABLES
|
||||||
|
BR2_PACKAGE_IPTABLES=y
|
||||||
|
|
||||||
|
# MQTT
|
||||||
|
BR2_PACKAGE_MOSQUITTO=y
|
||||||
|
# BR2_PACKAGE_MOSQUITTO_BROKER is not set
|
||||||
|
|
||||||
# ZEROTIER
|
# ZEROTIER
|
||||||
BR2_PACKAGE_ZEROTIER_ONE=y
|
BR2_PACKAGE_ZEROTIER_ONE=y
|
||||||
|
|
|
@ -105,5 +105,12 @@ BR2_PACKAGE_LINUX_FIRMWARE_OPENIPC_MT7601U=y
|
||||||
BR2_PACKAGE_WIREGUARD_LINUX_COMPAT=y
|
BR2_PACKAGE_WIREGUARD_LINUX_COMPAT=y
|
||||||
BR2_PACKAGE_WIREGUARD_TOOLS=y
|
BR2_PACKAGE_WIREGUARD_TOOLS=y
|
||||||
|
|
||||||
|
# IPTABLES
|
||||||
|
BR2_PACKAGE_IPTABLES=y
|
||||||
|
|
||||||
|
# MQTT
|
||||||
|
BR2_PACKAGE_MOSQUITTO=y
|
||||||
|
# BR2_PACKAGE_MOSQUITTO_BROKER is not set
|
||||||
|
|
||||||
# ZEROTIER
|
# ZEROTIER
|
||||||
BR2_PACKAGE_ZEROTIER_ONE=y
|
BR2_PACKAGE_ZEROTIER_ONE=y
|
||||||
|
|
|
@ -84,13 +84,13 @@ BR2_PACKAGE_VTUND_OPENIPC=y
|
||||||
BR2_PACKAGE_YAML_CLI=y
|
BR2_PACKAGE_YAML_CLI=y
|
||||||
|
|
||||||
# WiFi
|
# WiFi
|
||||||
BR2_PACKAGE_WIRELESS_TOOLS=y
|
# BR2_PACKAGE_WIRELESS_TOOLS is not set
|
||||||
BR2_PACKAGE_WPA_SUPPLICANT=y
|
# BR2_PACKAGE_WPA_SUPPLICANT is not set
|
||||||
BR2_PACKAGE_WPA_SUPPLICANT_CLI=y
|
# BR2_PACKAGE_WPA_SUPPLICANT_CLI is not set
|
||||||
BR2_PACKAGE_WPA_SUPPLICANT_NL80211=y
|
# BR2_PACKAGE_WPA_SUPPLICANT_NL80211 is not set
|
||||||
BR2_PACKAGE_WPA_SUPPLICANT_PASSPHRASE=y
|
# BR2_PACKAGE_WPA_SUPPLICANT_PASSPHRASE is not set
|
||||||
BR2_PACKAGE_LINUX_FIRMWARE_OPENIPC=y
|
# BR2_PACKAGE_LINUX_FIRMWARE_OPENIPC is not set
|
||||||
BR2_PACKAGE_LINUX_FIRMWARE_OPENIPC_MT7601U=y
|
# BR2_PACKAGE_LINUX_FIRMWARE_OPENIPC_MT7601U is not set
|
||||||
# BR2_PACKAGE_RTL8188EU is not set
|
# BR2_PACKAGE_RTL8188EU is not set
|
||||||
|
|
||||||
# WIREGUARD
|
# WIREGUARD
|
||||||
|
|
|
@ -103,5 +103,12 @@ BR2_PACKAGE_LINUX_FIRMWARE_OPENIPC_MT7601U=y
|
||||||
BR2_PACKAGE_WIREGUARD_LINUX_COMPAT=y
|
BR2_PACKAGE_WIREGUARD_LINUX_COMPAT=y
|
||||||
BR2_PACKAGE_WIREGUARD_TOOLS=y
|
BR2_PACKAGE_WIREGUARD_TOOLS=y
|
||||||
|
|
||||||
|
# IPTABLES
|
||||||
|
BR2_PACKAGE_IPTABLES=y
|
||||||
|
|
||||||
|
# MQTT
|
||||||
|
BR2_PACKAGE_MOSQUITTO=y
|
||||||
|
# BR2_PACKAGE_MOSQUITTO_BROKER is not set
|
||||||
|
|
||||||
# ZEROTIER
|
# ZEROTIER
|
||||||
BR2_PACKAGE_ZEROTIER_ONE=y
|
BR2_PACKAGE_ZEROTIER_ONE=y
|
||||||
|
|
|
@ -85,13 +85,13 @@ BR2_PACKAGE_VTUND_OPENIPC=y
|
||||||
BR2_PACKAGE_YAML_CLI=y
|
BR2_PACKAGE_YAML_CLI=y
|
||||||
|
|
||||||
# WiFi
|
# WiFi
|
||||||
BR2_PACKAGE_WIRELESS_TOOLS=y
|
# BR2_PACKAGE_WIRELESS_TOOLS is not set
|
||||||
BR2_PACKAGE_WPA_SUPPLICANT=y
|
# BR2_PACKAGE_WPA_SUPPLICANT is not set
|
||||||
BR2_PACKAGE_WPA_SUPPLICANT_CLI=y
|
# BR2_PACKAGE_WPA_SUPPLICANT_CLI is not set
|
||||||
BR2_PACKAGE_WPA_SUPPLICANT_NL80211=y
|
# BR2_PACKAGE_WPA_SUPPLICANT_NL80211 is not set
|
||||||
BR2_PACKAGE_WPA_SUPPLICANT_PASSPHRASE=y
|
# BR2_PACKAGE_WPA_SUPPLICANT_PASSPHRASE is not set
|
||||||
BR2_PACKAGE_LINUX_FIRMWARE_OPENIPC=y
|
# BR2_PACKAGE_LINUX_FIRMWARE_OPENIPC is not set
|
||||||
BR2_PACKAGE_LINUX_FIRMWARE_OPENIPC_MT7601U=y
|
# BR2_PACKAGE_LINUX_FIRMWARE_OPENIPC_MT7601U is not set
|
||||||
# BR2_PACKAGE_RTL8188EU is not set
|
# BR2_PACKAGE_RTL8188EU is not set
|
||||||
|
|
||||||
# WIREGUARD
|
# WIREGUARD
|
||||||
|
|
|
@ -84,13 +84,13 @@ BR2_PACKAGE_VTUND_OPENIPC=y
|
||||||
BR2_PACKAGE_YAML_CLI=y
|
BR2_PACKAGE_YAML_CLI=y
|
||||||
|
|
||||||
# WiFi
|
# WiFi
|
||||||
BR2_PACKAGE_WIRELESS_TOOLS=y
|
# BR2_PACKAGE_WIRELESS_TOOLS is not set
|
||||||
BR2_PACKAGE_WPA_SUPPLICANT=y
|
# BR2_PACKAGE_WPA_SUPPLICANT is not set
|
||||||
BR2_PACKAGE_WPA_SUPPLICANT_CLI=y
|
# BR2_PACKAGE_WPA_SUPPLICANT_CLI is not set
|
||||||
BR2_PACKAGE_WPA_SUPPLICANT_NL80211=y
|
# BR2_PACKAGE_WPA_SUPPLICANT_NL80211 is not set
|
||||||
BR2_PACKAGE_WPA_SUPPLICANT_PASSPHRASE=y
|
# BR2_PACKAGE_WPA_SUPPLICANT_PASSPHRASE is not set
|
||||||
BR2_PACKAGE_LINUX_FIRMWARE_OPENIPC=y
|
# BR2_PACKAGE_LINUX_FIRMWARE_OPENIPC is not set
|
||||||
BR2_PACKAGE_LINUX_FIRMWARE_OPENIPC_MT7601U=y
|
# BR2_PACKAGE_LINUX_FIRMWARE_OPENIPC_MT7601U is not set
|
||||||
# BR2_PACKAGE_RTL8188EU is not set
|
# BR2_PACKAGE_RTL8188EU is not set
|
||||||
|
|
||||||
# WIREGUARD
|
# WIREGUARD
|
||||||
|
|
|
@ -12,11 +12,11 @@ BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_4_9=y
|
||||||
BR2_PER_PACKAGE_DIRECTORIES=y
|
BR2_PER_PACKAGE_DIRECTORIES=y
|
||||||
BR2_GCC_VERSION_7_X=y
|
BR2_GCC_VERSION_7_X=y
|
||||||
# BR2_TOOLCHAIN_USES_UCLIBC is not set
|
# BR2_TOOLCHAIN_USES_UCLIBC is not set
|
||||||
BR2_TOOLCHAIN_BUILDROOT_UCLIBC=y
|
# BR2_TOOLCHAIN_BUILDROOT_UCLIBC is not set
|
||||||
BR2_TOOLCHAIN_BUILDROOT_LIBC="uclibc"
|
# BR2_TOOLCHAIN_BUILDROOT_LIBC="uclibc"
|
||||||
# BR2_TOOLCHAIN_USES_MUSL is not set
|
BR2_TOOLCHAIN_USES_MUSL=y
|
||||||
# BR2_TOOLCHAIN_BUILDROOT_MUSL=y
|
BR2_TOOLCHAIN_BUILDROOT_MUSL=y
|
||||||
BR2_TOOLCHAIN_BUILDROOT_LIBC="uclibc"
|
BR2_TOOLCHAIN_BUILDROOT_LIBC="musl"
|
||||||
BR2_TOOLCHAIN_BUILDROOT_CXX=y
|
BR2_TOOLCHAIN_BUILDROOT_CXX=y
|
||||||
BR2_TOOLCHAIN_BUILDROOT_LOCALE=y
|
BR2_TOOLCHAIN_BUILDROOT_LOCALE=y
|
||||||
BR2_TOOLCHAIN_BUILDROOT_USE_SSP=y
|
BR2_TOOLCHAIN_BUILDROOT_USE_SSP=y
|
||||||
|
@ -26,11 +26,11 @@ BR2_LINUX_KERNEL=y
|
||||||
BR2_LINUX_KERNEL_CUSTOM_VERSION=y
|
BR2_LINUX_KERNEL_CUSTOM_VERSION=y
|
||||||
BR2_LINUX_KERNEL_CUSTOM_VERSION_VALUE="4.9.37"
|
BR2_LINUX_KERNEL_CUSTOM_VERSION_VALUE="4.9.37"
|
||||||
BR2_LINUX_KERNEL_USE_CUSTOM_CONFIG=y
|
BR2_LINUX_KERNEL_USE_CUSTOM_CONFIG=y
|
||||||
BR2_LINUX_KERNEL_CUSTOM_CONFIG_FILE="$(BR2_EXTERNAL_GOKE_PATH)/board/gk7205v200/kernel/gk7205v200.generic.config"
|
BR2_LINUX_KERNEL_CUSTOM_CONFIG_FILE="$(BR2_EXTERNAL_HISILICON_PATH)/board/hi3516ev200/kernel/hi3516ev200.generic-fpv.config"
|
||||||
BR2_LINUX_KERNEL_UIMAGE=y
|
BR2_LINUX_KERNEL_UIMAGE=y
|
||||||
BR2_LINUX_KERNEL_XZ=y
|
BR2_LINUX_KERNEL_XZ=y
|
||||||
BR2_LINUX_KERNEL_EXT_GOKE_PATCHER=y
|
BR2_LINUX_KERNEL_EXT_HISI_PATCHER=y
|
||||||
BR2_LINUX_KERNEL_EXT_GOKE_PATCHER_LIST="$(BR2_EXTERNAL_GOKE_PATH)/board/gk7205v200/kernel/patches/ $(BR2_EXTERNAL_GOKE_PATH)/board/gk7205v200/kernel/overlay"
|
BR2_LINUX_KERNEL_EXT_HISI_PATCHER_LIST="$(BR2_EXTERNAL_HISILICON_PATH)/board/hi3516ev200/kernel/patches/ $(BR2_EXTERNAL_HISILICON_PATH)/board/hi3516ev200/kernel/overlay"
|
||||||
|
|
||||||
# Filesystem
|
# Filesystem
|
||||||
# BR2_TARGET_TZ_INFO is not set
|
# BR2_TARGET_TZ_INFO is not set
|
||||||
|
@ -43,7 +43,7 @@ BR2_ROOTFS_POST_BUILD_SCRIPT="$(TOPDIR)/../scripts/executing_commands_for_$(BR2_
|
||||||
# OpenIPC configuration
|
# OpenIPC configuration
|
||||||
BR2_TOOLCHAIN_BUILDROOT_VENDOR="openipc"
|
BR2_TOOLCHAIN_BUILDROOT_VENDOR="openipc"
|
||||||
BR2_TARGET_GENERIC_ISSUE="Welcome to OpenIPC v2.2"
|
BR2_TARGET_GENERIC_ISSUE="Welcome to OpenIPC v2.2"
|
||||||
BR2_TARGET_GENERIC_HOSTNAME="openipc-gk7205v200"
|
BR2_TARGET_GENERIC_HOSTNAME="openipc-hi3516ev200"
|
||||||
BR2_GLOBAL_PATCH_DIR="$(TOPDIR)/../general/package/all-patches"
|
BR2_GLOBAL_PATCH_DIR="$(TOPDIR)/../general/package/all-patches"
|
||||||
|
|
||||||
# OpenIPC packages
|
# OpenIPC packages
|
||||||
|
@ -51,7 +51,7 @@ BR2_PACKAGE_BUSYBOX_CONFIG="$(TOPDIR)/../general/package/busybox/busybox.config"
|
||||||
BR2_PACKAGE_DROPBEAR_OPENIPC=y
|
BR2_PACKAGE_DROPBEAR_OPENIPC=y
|
||||||
# BR2_PACKAGE_FDK_AAC_OPENIPC is not set
|
# BR2_PACKAGE_FDK_AAC_OPENIPC is not set
|
||||||
BR2_PACKAGE_FWPRINTENV_OPENIPC=y
|
BR2_PACKAGE_FWPRINTENV_OPENIPC=y
|
||||||
BR2_PACKAGE_GOKE_OSDRV_GK7205V200=y
|
BR2_PACKAGE_HISILICON_OSDRV_HI3516EV300=y
|
||||||
BR2_PACKAGE_HASERL=y
|
BR2_PACKAGE_HASERL=y
|
||||||
BR2_PACKAGE_HISI_GPIO is not set
|
BR2_PACKAGE_HISI_GPIO is not set
|
||||||
BR2_PACKAGE_IPCTOOL=y
|
BR2_PACKAGE_IPCTOOL=y
|
||||||
|
@ -70,30 +70,38 @@ BR2_PACKAGE_LIBOGG_OPENIPC=y
|
||||||
BR2_PACKAGE_LIBWEBSOCKETS_OPENIPC=y
|
BR2_PACKAGE_LIBWEBSOCKETS_OPENIPC=y
|
||||||
BR2_PACKAGE_LIBYAML=y
|
BR2_PACKAGE_LIBYAML=y
|
||||||
BR2_PACKAGE_MAJESTIC_FONTS=y
|
BR2_PACKAGE_MAJESTIC_FONTS=y
|
||||||
BR2_PACKAGE_MAJESTIC_GK7205V200=y
|
BR2_PACKAGE_MAJESTIC_HI3516EV300=y
|
||||||
|
# BR2_PACKAGE_MAJESTIC_FPV is not set
|
||||||
BR2_PACKAGE_MBEDTLS_OPENIPC=y
|
BR2_PACKAGE_MBEDTLS_OPENIPC=y
|
||||||
# BR2_PACKAGE_MBEDTLS_OPENIPC_PROGRAMS is not set
|
# BR2_PACKAGE_MBEDTLS_OPENIPC_PROGRAMS is not set
|
||||||
# BR2_PACKAGE_MBEDTLS_OPENIPC_COMPRESSION is not set
|
# BR2_PACKAGE_MBEDTLS_OPENIPC_COMPRESSION is not set
|
||||||
BR2_PACKAGE_MICROBE_WEB=y
|
BR2_PACKAGE_MICROBE_WEB=y
|
||||||
# BR2_PACKAGE_MINI_SNMPD is not set
|
# BR2_PACKAGE_MINI_SNMPD is not set
|
||||||
BR2_PACKAGE_MOTORS=y
|
# BR2_PACKAGE_MOTORS is not set
|
||||||
BR2_PACKAGE_OPUS_OPENIPC=y
|
BR2_PACKAGE_OPUS_OPENIPC=y
|
||||||
BR2_PACKAGE_OPUS_OPENIPC_FIXED_POINT=y
|
BR2_PACKAGE_OPUS_OPENIPC_FIXED_POINT=y
|
||||||
# BR2_PACKAGE_SSHPASS is not set
|
# BR2_PACKAGE_SSHPASS is not set
|
||||||
BR2_PACKAGE_UACME_OPENIPC=y
|
BR2_PACKAGE_UACME_OPENIPC=y
|
||||||
BR2_PACKAGE_VTUND_OPENIPC=y
|
# BR2_PACKAGE_VTUND_OPENIPC is not set
|
||||||
BR2_PACKAGE_YAML_CLI=y
|
BR2_PACKAGE_YAML_CLI=y
|
||||||
|
|
||||||
# WiFi
|
# WiFi
|
||||||
BR2_PACKAGE_WIRELESS_TOOLS=y
|
BR2_PACKAGE_WIRELESS_TOOLS=y
|
||||||
|
# BR2_PACKAGE_WIRELESS_REGDB is not set
|
||||||
BR2_PACKAGE_WPA_SUPPLICANT=y
|
BR2_PACKAGE_WPA_SUPPLICANT=y
|
||||||
BR2_PACKAGE_WPA_SUPPLICANT_CLI=y
|
BR2_PACKAGE_WPA_SUPPLICANT_CLI=y
|
||||||
BR2_PACKAGE_WPA_SUPPLICANT_NL80211=y
|
BR2_PACKAGE_WPA_SUPPLICANT_NL80211=y
|
||||||
BR2_PACKAGE_WPA_SUPPLICANT_PASSPHRASE=y
|
BR2_PACKAGE_WPA_SUPPLICANT_PASSPHRASE=y
|
||||||
BR2_PACKAGE_LINUX_FIRMWARE_OPENIPC=y
|
BR2_PACKAGE_LINUX_FIRMWARE_OPENIPC=y
|
||||||
BR2_PACKAGE_LINUX_FIRMWARE_OPENIPC_MT7601U=y
|
# BR2_PACKAGE_LINUX_FIRMWARE_OPENIPC_MT7601U is not set
|
||||||
# BR2_PACKAGE_RTL8188EU is not set
|
# BR2_PACKAGE_RTL8188EU is not set
|
||||||
|
BR2_PACKAGE_LINUX_FIRMWARE_OPENIPC_ATHEROS_9271=y
|
||||||
|
BR2_PACKAGE_RTL8812AU_OPENIPC=y
|
||||||
|
|
||||||
# WIREGUARD
|
# WIREGUARD
|
||||||
BR2_PACKAGE_WIREGUARD_LINUX_COMPAT=y
|
# BR2_PACKAGE_WIREGUARD_LINUX_COMPAT is not set
|
||||||
BR2_PACKAGE_WIREGUARD_TOOLS=y
|
# BR2_PACKAGE_WIREGUARD_TOOLS is not set
|
||||||
|
|
||||||
|
# FPV
|
||||||
|
BR2_PACKAGE_WIFIBROADCAST=y
|
||||||
|
BR2_PACKAGE_MAVLINK_ROUTER=y
|
|
@ -85,13 +85,13 @@ BR2_PACKAGE_VTUND_OPENIPC=y
|
||||||
BR2_PACKAGE_YAML_CLI=y
|
BR2_PACKAGE_YAML_CLI=y
|
||||||
|
|
||||||
# WiFi
|
# WiFi
|
||||||
BR2_PACKAGE_WIRELESS_TOOLS=y
|
# BR2_PACKAGE_WIRELESS_TOOLS is not set
|
||||||
BR2_PACKAGE_WPA_SUPPLICANT=y
|
# BR2_PACKAGE_WPA_SUPPLICANT is not set
|
||||||
BR2_PACKAGE_WPA_SUPPLICANT_CLI=y
|
# BR2_PACKAGE_WPA_SUPPLICANT_CLI is not set
|
||||||
BR2_PACKAGE_WPA_SUPPLICANT_NL80211=y
|
# BR2_PACKAGE_WPA_SUPPLICANT_NL80211 is not set
|
||||||
BR2_PACKAGE_WPA_SUPPLICANT_PASSPHRASE=y
|
# BR2_PACKAGE_WPA_SUPPLICANT_PASSPHRASE is not set
|
||||||
BR2_PACKAGE_LINUX_FIRMWARE_OPENIPC=y
|
# BR2_PACKAGE_LINUX_FIRMWARE_OPENIPC is not set
|
||||||
BR2_PACKAGE_LINUX_FIRMWARE_OPENIPC_MT7601U=y
|
# BR2_PACKAGE_LINUX_FIRMWARE_OPENIPC_MT7601U is not set
|
||||||
# BR2_PACKAGE_RTL8188EU is not set
|
# BR2_PACKAGE_RTL8188EU is not set
|
||||||
|
|
||||||
# WIREGUARD
|
# WIREGUARD
|
||||||
|
|
|
@ -104,5 +104,12 @@ BR2_PACKAGE_LINUX_FIRMWARE_OPENIPC_MT7601U=y
|
||||||
BR2_PACKAGE_WIREGUARD_LINUX_COMPAT=y
|
BR2_PACKAGE_WIREGUARD_LINUX_COMPAT=y
|
||||||
BR2_PACKAGE_WIREGUARD_TOOLS=y
|
BR2_PACKAGE_WIREGUARD_TOOLS=y
|
||||||
|
|
||||||
|
# IPTABLES
|
||||||
|
BR2_PACKAGE_IPTABLES=y
|
||||||
|
|
||||||
|
# MQTT
|
||||||
|
BR2_PACKAGE_MOSQUITTO=y
|
||||||
|
# BR2_PACKAGE_MOSQUITTO_BROKER is not set
|
||||||
|
|
||||||
# ZEROTIER
|
# ZEROTIER
|
||||||
BR2_PACKAGE_ZEROTIER_ONE=y
|
BR2_PACKAGE_ZEROTIER_ONE=y
|
||||||
|
|
|
@ -51,9 +51,9 @@ BR2_PACKAGE_BUSYBOX_CONFIG="$(TOPDIR)/../general/package/busybox/busybox.config"
|
||||||
BR2_PACKAGE_DROPBEAR_OPENIPC=y
|
BR2_PACKAGE_DROPBEAR_OPENIPC=y
|
||||||
# BR2_PACKAGE_FDK_AAC_OPENIPC is not set
|
# BR2_PACKAGE_FDK_AAC_OPENIPC is not set
|
||||||
BR2_PACKAGE_FWPRINTENV_OPENIPC=y
|
BR2_PACKAGE_FWPRINTENV_OPENIPC=y
|
||||||
|
BR2_PACKAGE_HISILICON_OSDRV_HI3516EV300=y
|
||||||
BR2_PACKAGE_HASERL=y
|
BR2_PACKAGE_HASERL=y
|
||||||
BR2_PACKAGE_HISI_GPIO is not set
|
BR2_PACKAGE_HISI_GPIO is not set
|
||||||
BR2_PACKAGE_HISILICON_OSDRV_HI3516EV300=y
|
|
||||||
BR2_PACKAGE_IPCTOOL=y
|
BR2_PACKAGE_IPCTOOL=y
|
||||||
BR2_PACKAGE_JSON_C=y
|
BR2_PACKAGE_JSON_C=y
|
||||||
BR2_PACKAGE_LAME_OPENIPC=y
|
BR2_PACKAGE_LAME_OPENIPC=y
|
||||||
|
@ -71,7 +71,7 @@ BR2_PACKAGE_LIBWEBSOCKETS_OPENIPC=y
|
||||||
BR2_PACKAGE_LIBYAML=y
|
BR2_PACKAGE_LIBYAML=y
|
||||||
BR2_PACKAGE_MAJESTIC_FONTS=y
|
BR2_PACKAGE_MAJESTIC_FONTS=y
|
||||||
BR2_PACKAGE_MAJESTIC_HI3516EV300=y
|
BR2_PACKAGE_MAJESTIC_HI3516EV300=y
|
||||||
# BR2_PACKAGE_MAJESTIC_FPV=y
|
# BR2_PACKAGE_MAJESTIC_FPV is not set
|
||||||
BR2_PACKAGE_MBEDTLS_OPENIPC=y
|
BR2_PACKAGE_MBEDTLS_OPENIPC=y
|
||||||
# BR2_PACKAGE_MBEDTLS_OPENIPC_PROGRAMS is not set
|
# BR2_PACKAGE_MBEDTLS_OPENIPC_PROGRAMS is not set
|
||||||
# BR2_PACKAGE_MBEDTLS_OPENIPC_COMPRESSION is not set
|
# BR2_PACKAGE_MBEDTLS_OPENIPC_COMPRESSION is not set
|
||||||
|
@ -104,3 +104,4 @@ BR2_PACKAGE_RTL8812AU_OPENIPC=y
|
||||||
|
|
||||||
# FPV
|
# FPV
|
||||||
BR2_PACKAGE_WIFIBROADCAST=y
|
BR2_PACKAGE_WIFIBROADCAST=y
|
||||||
|
BR2_PACKAGE_MAVLINK_ROUTER=y
|
||||||
|
|
|
@ -85,13 +85,13 @@ BR2_PACKAGE_VTUND_OPENIPC=y
|
||||||
BR2_PACKAGE_YAML_CLI=y
|
BR2_PACKAGE_YAML_CLI=y
|
||||||
|
|
||||||
# WiFi
|
# WiFi
|
||||||
BR2_PACKAGE_WIRELESS_TOOLS=y
|
# BR2_PACKAGE_WIRELESS_TOOLS is not set
|
||||||
BR2_PACKAGE_WPA_SUPPLICANT=y
|
# BR2_PACKAGE_WPA_SUPPLICANT is not set
|
||||||
BR2_PACKAGE_WPA_SUPPLICANT_CLI=y
|
# BR2_PACKAGE_WPA_SUPPLICANT_CLI is not set
|
||||||
BR2_PACKAGE_WPA_SUPPLICANT_NL80211=y
|
# BR2_PACKAGE_WPA_SUPPLICANT_NL80211 is not set
|
||||||
BR2_PACKAGE_WPA_SUPPLICANT_PASSPHRASE=y
|
# BR2_PACKAGE_WPA_SUPPLICANT_PASSPHRASE is not set
|
||||||
BR2_PACKAGE_LINUX_FIRMWARE_OPENIPC=y
|
# BR2_PACKAGE_LINUX_FIRMWARE_OPENIPC is not set
|
||||||
BR2_PACKAGE_LINUX_FIRMWARE_OPENIPC_MT7601U=y
|
# BR2_PACKAGE_LINUX_FIRMWARE_OPENIPC_MT7601U is not set
|
||||||
# BR2_PACKAGE_RTL8188EU is not set
|
# BR2_PACKAGE_RTL8188EU is not set
|
||||||
|
|
||||||
# WIREGUARD
|
# WIREGUARD
|
||||||
|
|
|
@ -104,5 +104,12 @@ BR2_PACKAGE_LINUX_FIRMWARE_OPENIPC_MT7601U=y
|
||||||
BR2_PACKAGE_WIREGUARD_LINUX_COMPAT=y
|
BR2_PACKAGE_WIREGUARD_LINUX_COMPAT=y
|
||||||
BR2_PACKAGE_WIREGUARD_TOOLS=y
|
BR2_PACKAGE_WIREGUARD_TOOLS=y
|
||||||
|
|
||||||
|
# IPTABLES
|
||||||
|
BR2_PACKAGE_IPTABLES=y
|
||||||
|
|
||||||
|
# MQTT
|
||||||
|
BR2_PACKAGE_MOSQUITTO=y
|
||||||
|
# BR2_PACKAGE_MOSQUITTO_BROKER is not set
|
||||||
|
|
||||||
# ZEROTIER
|
# ZEROTIER
|
||||||
BR2_PACKAGE_ZEROTIER_ONE=y
|
BR2_PACKAGE_ZEROTIER_ONE=y
|
||||||
|
|
|
@ -1,9 +1,8 @@
|
||||||
# Architecture
|
# Architecture
|
||||||
BR2_arm=y
|
BR2_arm=y
|
||||||
BR2_cortex_a7=y
|
BR2_arm926t=y
|
||||||
BR2_ARM_EABI=y
|
BR2_ARM_EABI=y
|
||||||
BR2_ARM_FPU_NEON_VFPV4=y
|
# BR2_ARM_INSTRUCTIONS_THUMB is not set
|
||||||
BR2_ARM_INSTRUCTIONS_THUMB2=y
|
|
||||||
BR2_KERNEL_HEADERS_VERSION=y
|
BR2_KERNEL_HEADERS_VERSION=y
|
||||||
BR2_DEFAULT_KERNEL_VERSION="4.9.37"
|
BR2_DEFAULT_KERNEL_VERSION="4.9.37"
|
||||||
BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_4_9=y
|
BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_4_9=y
|
||||||
|
@ -26,24 +25,29 @@ BR2_LINUX_KERNEL=y
|
||||||
BR2_LINUX_KERNEL_CUSTOM_VERSION=y
|
BR2_LINUX_KERNEL_CUSTOM_VERSION=y
|
||||||
BR2_LINUX_KERNEL_CUSTOM_VERSION_VALUE="4.9.37"
|
BR2_LINUX_KERNEL_CUSTOM_VERSION_VALUE="4.9.37"
|
||||||
BR2_LINUX_KERNEL_USE_CUSTOM_CONFIG=y
|
BR2_LINUX_KERNEL_USE_CUSTOM_CONFIG=y
|
||||||
BR2_LINUX_KERNEL_CUSTOM_CONFIG_FILE="$(BR2_EXTERNAL_GOKE_PATH)/board/gk7205v200/kernel/gk7205v200.generic.config"
|
BR2_LINUX_KERNEL_CUSTOM_CONFIG_FILE="$(BR2_EXTERNAL_HISILICON_PATH)/board/hi3516cv200/kernel/hi3518ev200.generic.config"
|
||||||
BR2_LINUX_KERNEL_UIMAGE=y
|
BR2_LINUX_KERNEL_UIMAGE=y
|
||||||
BR2_LINUX_KERNEL_XZ=y
|
BR2_LINUX_KERNEL_XZ=y
|
||||||
BR2_LINUX_KERNEL_EXT_GOKE_PATCHER=y
|
BR2_LINUX_KERNEL_EXT_HISI_PATCHER=y
|
||||||
BR2_LINUX_KERNEL_EXT_GOKE_PATCHER_LIST="$(BR2_EXTERNAL_GOKE_PATH)/board/gk7205v200/kernel/patches/ $(BR2_EXTERNAL_GOKE_PATH)/board/gk7205v200/kernel/overlay"
|
BR2_LINUX_KERNEL_EXT_HISI_PATCHER_LIST="$(BR2_EXTERNAL_HISILICON_PATH)/board/hi3516cv200/kernel/patches/ $(BR2_EXTERNAL_HISILICON_PATH)/board/hi3516cv200/kernel/overlay"
|
||||||
|
|
||||||
# Filesystem
|
# Filesystem
|
||||||
# BR2_TARGET_TZ_INFO is not set
|
# BR2_TARGET_TZ_INFO is not set
|
||||||
BR2_TARGET_ROOTFS_CPIO=y
|
BR2_TARGET_ROOTFS_CPIO=y
|
||||||
BR2_TARGET_ROOTFS_SQUASHFS=y
|
BR2_TARGET_ROOTFS_SQUASHFS=y
|
||||||
BR2_TARGET_ROOTFS_SQUASHFS4_XZ=y
|
BR2_TARGET_ROOTFS_SQUASHFS4_XZ=y
|
||||||
|
BR2_TARGET_ROOTFS_UBI=y
|
||||||
|
BR2_TARGET_ROOTFS_UBI_SUBSIZE=2048
|
||||||
|
BR2_TARGET_ROOTFS_UBI_USE_CUSTOM_CONFIG=y
|
||||||
|
BR2_TARGET_ROOTFS_UBI_CUSTOM_CONFIG_FILE="$(TOPDIR)/../scripts/ubinize.cfg"
|
||||||
|
BR2_TARGET_ROOTFS_UBIFS_LEBSIZE=0x1f000
|
||||||
BR2_ROOTFS_OVERLAY="$(TOPDIR)/../general/overlay"
|
BR2_ROOTFS_OVERLAY="$(TOPDIR)/../general/overlay"
|
||||||
BR2_ROOTFS_POST_BUILD_SCRIPT="$(TOPDIR)/../scripts/executing_commands_for_$(BR2_TOOLCHAIN_BUILDROOT_LIBC).sh"
|
BR2_ROOTFS_POST_BUILD_SCRIPT="$(TOPDIR)/../scripts/executing_commands_for_$(BR2_TOOLCHAIN_BUILDROOT_LIBC).sh"
|
||||||
|
|
||||||
# OpenIPC configuration
|
# OpenIPC configuration
|
||||||
BR2_TOOLCHAIN_BUILDROOT_VENDOR="openipc"
|
BR2_TOOLCHAIN_BUILDROOT_VENDOR="openipc"
|
||||||
BR2_TARGET_GENERIC_ISSUE="Welcome to OpenIPC v2.2"
|
BR2_TARGET_GENERIC_ISSUE="Welcome to OpenIPC v2.2"
|
||||||
BR2_TARGET_GENERIC_HOSTNAME="openipc-gk7205v200-ufanet"
|
BR2_TARGET_GENERIC_HOSTNAME="openipc-hi3518ev200"
|
||||||
BR2_GLOBAL_PATCH_DIR="$(TOPDIR)/../general/package/all-patches"
|
BR2_GLOBAL_PATCH_DIR="$(TOPDIR)/../general/package/all-patches"
|
||||||
|
|
||||||
# OpenIPC packages
|
# OpenIPC packages
|
||||||
|
@ -51,9 +55,9 @@ BR2_PACKAGE_BUSYBOX_CONFIG="$(TOPDIR)/../general/package/busybox/busybox.config"
|
||||||
BR2_PACKAGE_DROPBEAR_OPENIPC=y
|
BR2_PACKAGE_DROPBEAR_OPENIPC=y
|
||||||
# BR2_PACKAGE_FDK_AAC_OPENIPC is not set
|
# BR2_PACKAGE_FDK_AAC_OPENIPC is not set
|
||||||
BR2_PACKAGE_FWPRINTENV_OPENIPC=y
|
BR2_PACKAGE_FWPRINTENV_OPENIPC=y
|
||||||
BR2_PACKAGE_GOKE_OSDRV_GK7205V200=y
|
|
||||||
BR2_PACKAGE_HASERL=y
|
BR2_PACKAGE_HASERL=y
|
||||||
BR2_PACKAGE_HISI_GPIO is not set
|
BR2_PACKAGE_HISI_GPIO is not set
|
||||||
|
BR2_PACKAGE_HISILICON_OSDRV_HI3516CV200=y
|
||||||
BR2_PACKAGE_IPCTOOL=y
|
BR2_PACKAGE_IPCTOOL=y
|
||||||
BR2_PACKAGE_JSON_C=y
|
BR2_PACKAGE_JSON_C=y
|
||||||
BR2_PACKAGE_LAME_OPENIPC=y
|
BR2_PACKAGE_LAME_OPENIPC=y
|
||||||
|
@ -70,7 +74,8 @@ BR2_PACKAGE_LIBOGG_OPENIPC=y
|
||||||
BR2_PACKAGE_LIBWEBSOCKETS_OPENIPC=y
|
BR2_PACKAGE_LIBWEBSOCKETS_OPENIPC=y
|
||||||
BR2_PACKAGE_LIBYAML=y
|
BR2_PACKAGE_LIBYAML=y
|
||||||
BR2_PACKAGE_MAJESTIC_FONTS=y
|
BR2_PACKAGE_MAJESTIC_FONTS=y
|
||||||
BR2_PACKAGE_MAJESTIC_GK7205V200=y
|
BR2_PACKAGE_MAJESTIC_HI3516CV200=y
|
||||||
|
BR2_PACKAGE_MAJESTIC_ULTIMATE=y
|
||||||
BR2_PACKAGE_MBEDTLS_OPENIPC=y
|
BR2_PACKAGE_MBEDTLS_OPENIPC=y
|
||||||
# BR2_PACKAGE_MBEDTLS_OPENIPC_PROGRAMS is not set
|
# BR2_PACKAGE_MBEDTLS_OPENIPC_PROGRAMS is not set
|
||||||
# BR2_PACKAGE_MBEDTLS_OPENIPC_COMPRESSION is not set
|
# BR2_PACKAGE_MBEDTLS_OPENIPC_COMPRESSION is not set
|
||||||
|
@ -92,12 +97,20 @@ BR2_PACKAGE_WPA_SUPPLICANT_NL80211=y
|
||||||
BR2_PACKAGE_WPA_SUPPLICANT_PASSPHRASE=y
|
BR2_PACKAGE_WPA_SUPPLICANT_PASSPHRASE=y
|
||||||
BR2_PACKAGE_LINUX_FIRMWARE_OPENIPC=y
|
BR2_PACKAGE_LINUX_FIRMWARE_OPENIPC=y
|
||||||
BR2_PACKAGE_LINUX_FIRMWARE_OPENIPC_MT7601U=y
|
BR2_PACKAGE_LINUX_FIRMWARE_OPENIPC_MT7601U=y
|
||||||
|
BR2_PACKAGE_LINUX_FIRMWARE_OPENIPC_RTL8188EU=y
|
||||||
# BR2_PACKAGE_RTL8188EU is not set
|
# BR2_PACKAGE_RTL8188EU is not set
|
||||||
|
# BR2_PACKAGE_RTL8188FU_OPENIPC is not set
|
||||||
|
|
||||||
# WIREGUARD
|
# WIREGUARD
|
||||||
BR2_PACKAGE_WIREGUARD_LINUX_COMPAT=y
|
BR2_PACKAGE_WIREGUARD_LINUX_COMPAT=y
|
||||||
BR2_PACKAGE_WIREGUARD_TOOLS=y
|
BR2_PACKAGE_WIREGUARD_TOOLS=y
|
||||||
|
|
||||||
|
# IPTABLES
|
||||||
|
BR2_PACKAGE_IPTABLES=y
|
||||||
|
|
||||||
# MQTT
|
# MQTT
|
||||||
BR2_PACKAGE_MOSQUITTO=y
|
BR2_PACKAGE_MOSQUITTO=y
|
||||||
# BR2_PACKAGE_MOSQUITTO_BROKER is not set
|
# BR2_PACKAGE_MOSQUITTO_BROKER is not set
|
||||||
|
|
||||||
|
# ZEROTIER
|
||||||
|
BR2_PACKAGE_ZEROTIER_ONE=y
|
|
@ -52,7 +52,7 @@ BR2_PACKAGE_DROPBEAR_OPENIPC=y
|
||||||
# BR2_PACKAGE_FDK_AAC_OPENIPC is not set
|
# BR2_PACKAGE_FDK_AAC_OPENIPC is not set
|
||||||
BR2_PACKAGE_FWPRINTENV_OPENIPC=y
|
BR2_PACKAGE_FWPRINTENV_OPENIPC=y
|
||||||
BR2_PACKAGE_HASERL=y
|
BR2_PACKAGE_HASERL=y
|
||||||
BR2_PACKAGE_HISI_GPIO is not set
|
# BR2_PACKAGE_HISI_GPIO is not set
|
||||||
BR2_PACKAGE_HISILICON_OSDRV_HI3516EV300=y
|
BR2_PACKAGE_HISILICON_OSDRV_HI3516EV300=y
|
||||||
BR2_PACKAGE_IPCTOOL=y
|
BR2_PACKAGE_IPCTOOL=y
|
||||||
BR2_PACKAGE_JSON_C=y
|
BR2_PACKAGE_JSON_C=y
|
||||||
|
|
|
@ -0,0 +1,117 @@
|
||||||
|
# Architecture
|
||||||
|
BR2_arm=y
|
||||||
|
BR2_cortex_a7=y
|
||||||
|
BR2_ARM_EABI=y
|
||||||
|
BR2_ARM_FPU_NEON_VFPV4=y
|
||||||
|
BR2_ARM_INSTRUCTIONS_THUMB2=y
|
||||||
|
BR2_KERNEL_HEADERS_VERSION=y
|
||||||
|
BR2_DEFAULT_KERNEL_VERSION="4.9.37"
|
||||||
|
BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_4_9=y
|
||||||
|
|
||||||
|
# Toolchain
|
||||||
|
BR2_PER_PACKAGE_DIRECTORIES=y
|
||||||
|
BR2_GCC_VERSION_7_X=y
|
||||||
|
# BR2_TOOLCHAIN_USES_UCLIBC is not set
|
||||||
|
# BR2_TOOLCHAIN_BUILDROOT_UCLIBC is not set
|
||||||
|
# BR2_TOOLCHAIN_BUILDROOT_LIBC="uclibc"
|
||||||
|
BR2_TOOLCHAIN_USES_MUSL=y
|
||||||
|
BR2_TOOLCHAIN_BUILDROOT_MUSL=y
|
||||||
|
BR2_TOOLCHAIN_BUILDROOT_LIBC="musl"
|
||||||
|
BR2_TOOLCHAIN_BUILDROOT_CXX=y
|
||||||
|
BR2_TOOLCHAIN_BUILDROOT_LOCALE=y
|
||||||
|
BR2_TOOLCHAIN_BUILDROOT_USE_SSP=y
|
||||||
|
|
||||||
|
# Kernel
|
||||||
|
BR2_LINUX_KERNEL=y
|
||||||
|
BR2_LINUX_KERNEL_CUSTOM_VERSION=y
|
||||||
|
BR2_LINUX_KERNEL_CUSTOM_VERSION_VALUE="4.9.37"
|
||||||
|
BR2_LINUX_KERNEL_USE_CUSTOM_CONFIG=y
|
||||||
|
BR2_LINUX_KERNEL_CUSTOM_CONFIG_FILE="$(BR2_EXTERNAL_HISILICON_PATH)/board/hi3516ev200/kernel/hi3518ev300.generic.config"
|
||||||
|
BR2_LINUX_KERNEL_UIMAGE=y
|
||||||
|
BR2_LINUX_KERNEL_XZ=y
|
||||||
|
BR2_LINUX_KERNEL_EXT_HISI_PATCHER=y
|
||||||
|
BR2_LINUX_KERNEL_EXT_HISI_PATCHER_LIST="$(BR2_EXTERNAL_HISILICON_PATH)/board/hi3516ev200/kernel/patches/ $(BR2_EXTERNAL_HISILICON_PATH)/board/hi3516ev200/kernel/overlay"
|
||||||
|
|
||||||
|
# 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_UBI=y
|
||||||
|
BR2_TARGET_ROOTFS_UBI_SUBSIZE=2048
|
||||||
|
BR2_TARGET_ROOTFS_UBI_USE_CUSTOM_CONFIG=y
|
||||||
|
BR2_TARGET_ROOTFS_UBI_CUSTOM_CONFIG_FILE="$(TOPDIR)/../scripts/ubinize.cfg"
|
||||||
|
BR2_TARGET_ROOTFS_UBIFS_LEBSIZE=0x1f000
|
||||||
|
BR2_ROOTFS_OVERLAY="$(TOPDIR)/../general/overlay"
|
||||||
|
BR2_ROOTFS_POST_BUILD_SCRIPT="$(TOPDIR)/../scripts/executing_commands_for_$(BR2_TOOLCHAIN_BUILDROOT_LIBC).sh"
|
||||||
|
|
||||||
|
# OpenIPC configuration
|
||||||
|
BR2_TOOLCHAIN_BUILDROOT_VENDOR="openipc"
|
||||||
|
BR2_TARGET_GENERIC_ISSUE="Welcome to OpenIPC v2.2"
|
||||||
|
BR2_TARGET_GENERIC_HOSTNAME="openipc-hi3518ev300"
|
||||||
|
BR2_GLOBAL_PATCH_DIR="$(TOPDIR)/../general/package/all-patches"
|
||||||
|
|
||||||
|
# OpenIPC packages
|
||||||
|
BR2_PACKAGE_BUSYBOX_CONFIG="$(TOPDIR)/../general/package/busybox/busybox.config"
|
||||||
|
BR2_PACKAGE_DROPBEAR_OPENIPC=y
|
||||||
|
# BR2_PACKAGE_FDK_AAC_OPENIPC is not set
|
||||||
|
BR2_PACKAGE_FWPRINTENV_OPENIPC=y
|
||||||
|
BR2_PACKAGE_HASERL=y
|
||||||
|
# BR2_PACKAGE_HISI_GPIO is not set
|
||||||
|
BR2_PACKAGE_HISILICON_OSDRV_HI3516EV300=y
|
||||||
|
BR2_PACKAGE_IPCTOOL=y
|
||||||
|
BR2_PACKAGE_JSON_C=y
|
||||||
|
BR2_PACKAGE_LAME_OPENIPC=y
|
||||||
|
BR2_PACKAGE_LIBCURL_OPENIPC=y
|
||||||
|
BR2_PACKAGE_LIBCURL_OPENIPC_CURL=y
|
||||||
|
# BR2_PACKAGE_LIBCURL_OPENIPC_VERBOSE is not set
|
||||||
|
# BR2_PACKAGE_LIBCURL_OPENIPC_PROXY_SUPPORT is not set
|
||||||
|
# BR2_PACKAGE_LIBCURL_OPENIPC_COOKIES_SUPPORT is not set
|
||||||
|
# BR2_PACKAGE_LIBCURL_OPENIPC_EXTRA_PROTOCOLS_FEATURES is not set
|
||||||
|
BR2_PACKAGE_LIBCURL_OPENIPC_MBEDTLS=y
|
||||||
|
BR2_PACKAGE_LIBEVENT_OPENIPC=y
|
||||||
|
BR2_PACKAGE_LIBEVENT_OPENIPC_REMOVE_PYSCRIPT=y
|
||||||
|
BR2_PACKAGE_LIBOGG_OPENIPC=y
|
||||||
|
BR2_PACKAGE_LIBWEBSOCKETS_OPENIPC=y
|
||||||
|
BR2_PACKAGE_LIBYAML=y
|
||||||
|
BR2_PACKAGE_MAJESTIC_FONTS=y
|
||||||
|
BR2_PACKAGE_MAJESTIC_HI3516EV300=y
|
||||||
|
BR2_PACKAGE_MAJESTIC_ULTIMATE=y
|
||||||
|
BR2_PACKAGE_MBEDTLS_OPENIPC=y
|
||||||
|
# BR2_PACKAGE_MBEDTLS_OPENIPC_PROGRAMS is not set
|
||||||
|
# BR2_PACKAGE_MBEDTLS_OPENIPC_COMPRESSION is not set
|
||||||
|
BR2_PACKAGE_MICROBE_WEB=y
|
||||||
|
# BR2_PACKAGE_MINI_SNMPD is not set
|
||||||
|
# BR2_PACKAGE_MOTORS is not set
|
||||||
|
BR2_PACKAGE_OPUS_OPENIPC=y
|
||||||
|
BR2_PACKAGE_OPUS_OPENIPC_FIXED_POINT=y
|
||||||
|
# BR2_PACKAGE_SSHPASS is not set
|
||||||
|
BR2_PACKAGE_UACME_OPENIPC=y
|
||||||
|
BR2_PACKAGE_VTUND_OPENIPC=y
|
||||||
|
BR2_PACKAGE_YAML_CLI=y
|
||||||
|
|
||||||
|
# WiFi
|
||||||
|
BR2_PACKAGE_WIRELESS_TOOLS=y
|
||||||
|
BR2_PACKAGE_WPA_SUPPLICANT=y
|
||||||
|
BR2_PACKAGE_WPA_SUPPLICANT_CLI=y
|
||||||
|
BR2_PACKAGE_WPA_SUPPLICANT_NL80211=y
|
||||||
|
BR2_PACKAGE_WPA_SUPPLICANT_PASSPHRASE=y
|
||||||
|
BR2_PACKAGE_LINUX_FIRMWARE_OPENIPC=y
|
||||||
|
BR2_PACKAGE_LINUX_FIRMWARE_OPENIPC_MT7601U=y
|
||||||
|
BR2_PACKAGE_LINUX_FIRMWARE_OPENIPC_RTL8188EU=y
|
||||||
|
# BR2_PACKAGE_RTL8188EU is not set
|
||||||
|
# BR2_PACKAGE_RTL8188FU_OPENIPC is not set
|
||||||
|
|
||||||
|
# WIREGUARD
|
||||||
|
BR2_PACKAGE_WIREGUARD_LINUX_COMPAT=y
|
||||||
|
BR2_PACKAGE_WIREGUARD_TOOLS=y
|
||||||
|
|
||||||
|
# IPTABLES
|
||||||
|
BR2_PACKAGE_IPTABLES=y
|
||||||
|
|
||||||
|
# MQTT
|
||||||
|
BR2_PACKAGE_MOSQUITTO=y
|
||||||
|
# BR2_PACKAGE_MOSQUITTO_BROKER is not set
|
||||||
|
|
||||||
|
# ZEROTIER
|
||||||
|
BR2_PACKAGE_ZEROTIER_ONE=y
|
|
@ -36,6 +36,7 @@ include $(BR2_EXTERNAL_HISILICON_PATH)/package/majestic-hi3516cv300/majestic-hi3
|
||||||
include $(BR2_EXTERNAL_HISILICON_PATH)/package/majestic-hi3516cv500/majestic-hi3516cv500.mk
|
include $(BR2_EXTERNAL_HISILICON_PATH)/package/majestic-hi3516cv500/majestic-hi3516cv500.mk
|
||||||
include $(BR2_EXTERNAL_HISILICON_PATH)/package/majestic-hi3516ev300/majestic-hi3516ev300.mk
|
include $(BR2_EXTERNAL_HISILICON_PATH)/package/majestic-hi3516ev300/majestic-hi3516ev300.mk
|
||||||
include $(BR2_EXTERNAL_HISILICON_PATH)/package/majestic-hi3519v101/majestic-hi3519v101.mk
|
include $(BR2_EXTERNAL_HISILICON_PATH)/package/majestic-hi3519v101/majestic-hi3519v101.mk
|
||||||
|
include $(BR2_EXTERNAL_HISILICON_PATH)/package/mavlink-router/mavlink-router.mk
|
||||||
include $(BR2_EXTERNAL_HISILICON_PATH)/package/mbedtls-openipc/mbedtls-openipc.mk
|
include $(BR2_EXTERNAL_HISILICON_PATH)/package/mbedtls-openipc/mbedtls-openipc.mk
|
||||||
include $(BR2_EXTERNAL_HISILICON_PATH)/package/microbe-web/microbe-web.mk
|
include $(BR2_EXTERNAL_HISILICON_PATH)/package/microbe-web/microbe-web.mk
|
||||||
include $(BR2_EXTERNAL_HISILICON_PATH)/package/motors/motors.mk
|
include $(BR2_EXTERNAL_HISILICON_PATH)/package/motors/motors.mk
|
||||||
|
|
|
@ -0,0 +1 @@
|
||||||
|
../../general/package/mavlink-router
|
|
@ -489,7 +489,7 @@ CONFIG_NETWORK_PHY_TIMESTAMPING=y
|
||||||
# CONFIG_TIPC is not set
|
# CONFIG_TIPC is not set
|
||||||
# CONFIG_ATM is not set
|
# CONFIG_ATM is not set
|
||||||
# CONFIG_L2TP is not set
|
# CONFIG_L2TP is not set
|
||||||
# CONFIG_BRIDGE is not set
|
CONFIG_BRIDGE=y
|
||||||
CONFIG_HAVE_NET_DSA=y
|
CONFIG_HAVE_NET_DSA=y
|
||||||
# CONFIG_VLAN_8021Q is not set
|
# CONFIG_VLAN_8021Q is not set
|
||||||
# CONFIG_DECNET is not set
|
# CONFIG_DECNET is not set
|
||||||
|
|
|
@ -492,7 +492,7 @@ CONFIG_NETWORK_PHY_TIMESTAMPING=y
|
||||||
# CONFIG_TIPC is not set
|
# CONFIG_TIPC is not set
|
||||||
# CONFIG_ATM is not set
|
# CONFIG_ATM is not set
|
||||||
# CONFIG_L2TP is not set
|
# CONFIG_L2TP is not set
|
||||||
# CONFIG_BRIDGE is not set
|
CONFIG_BRIDGE=y
|
||||||
CONFIG_HAVE_NET_DSA=y
|
CONFIG_HAVE_NET_DSA=y
|
||||||
# CONFIG_VLAN_8021Q is not set
|
# CONFIG_VLAN_8021Q is not set
|
||||||
# CONFIG_DECNET is not set
|
# CONFIG_DECNET is not set
|
||||||
|
|
|
@ -491,7 +491,7 @@ CONFIG_NETWORK_PHY_TIMESTAMPING=y
|
||||||
# CONFIG_TIPC is not set
|
# CONFIG_TIPC is not set
|
||||||
# CONFIG_ATM is not set
|
# CONFIG_ATM is not set
|
||||||
# CONFIG_L2TP is not set
|
# CONFIG_L2TP is not set
|
||||||
# CONFIG_BRIDGE is not set
|
CONFIG_BRIDGE=y
|
||||||
CONFIG_HAVE_NET_DSA=y
|
CONFIG_HAVE_NET_DSA=y
|
||||||
# CONFIG_VLAN_8021Q is not set
|
# CONFIG_VLAN_8021Q is not set
|
||||||
# CONFIG_DECNET is not set
|
# CONFIG_DECNET is not set
|
||||||
|
|
|
@ -490,7 +490,7 @@ CONFIG_NETWORK_PHY_TIMESTAMPING=y
|
||||||
# CONFIG_TIPC is not set
|
# CONFIG_TIPC is not set
|
||||||
# CONFIG_ATM is not set
|
# CONFIG_ATM is not set
|
||||||
# CONFIG_L2TP is not set
|
# CONFIG_L2TP is not set
|
||||||
# CONFIG_BRIDGE is not set
|
CONFIG_BRIDGE=y
|
||||||
CONFIG_HAVE_NET_DSA=y
|
CONFIG_HAVE_NET_DSA=y
|
||||||
# CONFIG_VLAN_8021Q is not set
|
# CONFIG_VLAN_8021Q is not set
|
||||||
# CONFIG_DECNET is not set
|
# CONFIG_DECNET is not set
|
||||||
|
|
|
@ -492,7 +492,7 @@ CONFIG_NETWORK_PHY_TIMESTAMPING=y
|
||||||
# CONFIG_TIPC is not set
|
# CONFIG_TIPC is not set
|
||||||
# CONFIG_ATM is not set
|
# CONFIG_ATM is not set
|
||||||
# CONFIG_L2TP is not set
|
# CONFIG_L2TP is not set
|
||||||
# CONFIG_BRIDGE is not set
|
CONFIG_BRIDGE=y
|
||||||
CONFIG_HAVE_NET_DSA=y
|
CONFIG_HAVE_NET_DSA=y
|
||||||
# CONFIG_VLAN_8021Q is not set
|
# CONFIG_VLAN_8021Q is not set
|
||||||
# CONFIG_DECNET is not set
|
# CONFIG_DECNET is not set
|
||||||
|
|
|
@ -492,7 +492,7 @@ CONFIG_NETWORK_PHY_TIMESTAMPING=y
|
||||||
# CONFIG_TIPC is not set
|
# CONFIG_TIPC is not set
|
||||||
# CONFIG_ATM is not set
|
# CONFIG_ATM is not set
|
||||||
# CONFIG_L2TP is not set
|
# CONFIG_L2TP is not set
|
||||||
# CONFIG_BRIDGE is not set
|
CONFIG_BRIDGE=y
|
||||||
CONFIG_HAVE_NET_DSA=y
|
CONFIG_HAVE_NET_DSA=y
|
||||||
# CONFIG_VLAN_8021Q is not set
|
# CONFIG_VLAN_8021Q is not set
|
||||||
# CONFIG_DECNET is not set
|
# CONFIG_DECNET is not set
|
||||||
|
|
|
@ -580,7 +580,7 @@ CONFIG_DEFAULT_TCP_CONG="cubic"
|
||||||
# CONFIG_TIPC is not set
|
# CONFIG_TIPC is not set
|
||||||
# CONFIG_ATM is not set
|
# CONFIG_ATM is not set
|
||||||
# CONFIG_L2TP is not set
|
# CONFIG_L2TP is not set
|
||||||
# CONFIG_BRIDGE is not set
|
CONFIG_BRIDGE=y
|
||||||
CONFIG_HAVE_NET_DSA=y
|
CONFIG_HAVE_NET_DSA=y
|
||||||
# CONFIG_NET_DSA is not set
|
# CONFIG_NET_DSA is not set
|
||||||
# CONFIG_VLAN_8021Q is not set
|
# CONFIG_VLAN_8021Q is not set
|
||||||
|
|
|
@ -806,7 +806,7 @@ CONFIG_NET_PTP_CLASSIFY=y
|
||||||
# CONFIG_TIPC is not set
|
# CONFIG_TIPC is not set
|
||||||
# CONFIG_ATM is not set
|
# CONFIG_ATM is not set
|
||||||
# CONFIG_L2TP is not set
|
# CONFIG_L2TP is not set
|
||||||
# CONFIG_BRIDGE is not set
|
CONFIG_BRIDGE=y
|
||||||
CONFIG_HAVE_NET_DSA=y
|
CONFIG_HAVE_NET_DSA=y
|
||||||
# CONFIG_NET_DSA is not set
|
# CONFIG_NET_DSA is not set
|
||||||
# CONFIG_VLAN_8021Q is not set
|
# CONFIG_VLAN_8021Q is not set
|
||||||
|
|
|
@ -620,7 +620,7 @@ CONFIG_IPV6=y
|
||||||
# CONFIG_TIPC is not set
|
# CONFIG_TIPC is not set
|
||||||
# CONFIG_ATM is not set
|
# CONFIG_ATM is not set
|
||||||
# CONFIG_L2TP is not set
|
# CONFIG_L2TP is not set
|
||||||
# CONFIG_BRIDGE is not set
|
CONFIG_BRIDGE=y
|
||||||
CONFIG_HAVE_NET_DSA=y
|
CONFIG_HAVE_NET_DSA=y
|
||||||
# CONFIG_VLAN_8021Q is not set
|
# CONFIG_VLAN_8021Q is not set
|
||||||
# CONFIG_DECNET is not set
|
# CONFIG_DECNET is not set
|
||||||
|
|
|
@ -620,7 +620,7 @@ CONFIG_IPV6=y
|
||||||
# CONFIG_TIPC is not set
|
# CONFIG_TIPC is not set
|
||||||
# CONFIG_ATM is not set
|
# CONFIG_ATM is not set
|
||||||
# CONFIG_L2TP is not set
|
# CONFIG_L2TP is not set
|
||||||
# CONFIG_BRIDGE is not set
|
CONFIG_BRIDGE=y
|
||||||
CONFIG_HAVE_NET_DSA=y
|
CONFIG_HAVE_NET_DSA=y
|
||||||
# CONFIG_VLAN_8021Q is not set
|
# CONFIG_VLAN_8021Q is not set
|
||||||
# CONFIG_DECNET is not set
|
# CONFIG_DECNET is not set
|
||||||
|
|
|
@ -620,7 +620,7 @@ CONFIG_IPV6=y
|
||||||
# CONFIG_TIPC is not set
|
# CONFIG_TIPC is not set
|
||||||
# CONFIG_ATM is not set
|
# CONFIG_ATM is not set
|
||||||
# CONFIG_L2TP is not set
|
# CONFIG_L2TP is not set
|
||||||
# CONFIG_BRIDGE is not set
|
CONFIG_BRIDGE=y
|
||||||
CONFIG_HAVE_NET_DSA=y
|
CONFIG_HAVE_NET_DSA=y
|
||||||
# CONFIG_VLAN_8021Q is not set
|
# CONFIG_VLAN_8021Q is not set
|
||||||
# CONFIG_DECNET is not set
|
# CONFIG_DECNET is not set
|
||||||
|
|
|
@ -677,7 +677,7 @@ CONFIG_DEFAULT_TCP_CONG="cubic"
|
||||||
# CONFIG_TIPC is not set
|
# CONFIG_TIPC is not set
|
||||||
# CONFIG_ATM is not set
|
# CONFIG_ATM is not set
|
||||||
# CONFIG_L2TP is not set
|
# CONFIG_L2TP is not set
|
||||||
# CONFIG_BRIDGE is not set
|
CONFIG_BRIDGE=y
|
||||||
CONFIG_HAVE_NET_DSA=y
|
CONFIG_HAVE_NET_DSA=y
|
||||||
# CONFIG_NET_DSA is not set
|
# CONFIG_NET_DSA is not set
|
||||||
# CONFIG_VLAN_8021Q is not set
|
# CONFIG_VLAN_8021Q is not set
|
||||||
|
|
|
@ -677,7 +677,7 @@ CONFIG_DEFAULT_TCP_CONG="cubic"
|
||||||
# CONFIG_TIPC is not set
|
# CONFIG_TIPC is not set
|
||||||
# CONFIG_ATM is not set
|
# CONFIG_ATM is not set
|
||||||
# CONFIG_L2TP is not set
|
# CONFIG_L2TP is not set
|
||||||
# CONFIG_BRIDGE is not set
|
CONFIG_BRIDGE=y
|
||||||
CONFIG_HAVE_NET_DSA=y
|
CONFIG_HAVE_NET_DSA=y
|
||||||
# CONFIG_NET_DSA is not set
|
# CONFIG_NET_DSA is not set
|
||||||
# CONFIG_VLAN_8021Q is not set
|
# CONFIG_VLAN_8021Q is not set
|
||||||
|
|
|
@ -677,7 +677,7 @@ CONFIG_DEFAULT_TCP_CONG="cubic"
|
||||||
# CONFIG_TIPC is not set
|
# CONFIG_TIPC is not set
|
||||||
# CONFIG_ATM is not set
|
# CONFIG_ATM is not set
|
||||||
# CONFIG_L2TP is not set
|
# CONFIG_L2TP is not set
|
||||||
# CONFIG_BRIDGE is not set
|
CONFIG_BRIDGE=y
|
||||||
CONFIG_HAVE_NET_DSA=y
|
CONFIG_HAVE_NET_DSA=y
|
||||||
# CONFIG_NET_DSA is not set
|
# CONFIG_NET_DSA is not set
|
||||||
# CONFIG_VLAN_8021Q is not set
|
# CONFIG_VLAN_8021Q is not set
|
||||||
|
|
|
@ -668,7 +668,7 @@ CONFIG_DEFAULT_TCP_CONG="cubic"
|
||||||
# CONFIG_TIPC is not set
|
# CONFIG_TIPC is not set
|
||||||
# CONFIG_ATM is not set
|
# CONFIG_ATM is not set
|
||||||
# CONFIG_L2TP is not set
|
# CONFIG_L2TP is not set
|
||||||
# CONFIG_BRIDGE is not set
|
CONFIG_BRIDGE=y
|
||||||
CONFIG_HAVE_NET_DSA=y
|
CONFIG_HAVE_NET_DSA=y
|
||||||
# CONFIG_NET_DSA is not set
|
# CONFIG_NET_DSA is not set
|
||||||
# CONFIG_VLAN_8021Q is not set
|
# CONFIG_VLAN_8021Q is not set
|
||||||
|
|
|
@ -661,7 +661,7 @@ CONFIG_DEFAULT_TCP_CONG="cubic"
|
||||||
# CONFIG_TIPC is not set
|
# CONFIG_TIPC is not set
|
||||||
# CONFIG_ATM is not set
|
# CONFIG_ATM is not set
|
||||||
# CONFIG_L2TP is not set
|
# CONFIG_L2TP is not set
|
||||||
# CONFIG_BRIDGE is not set
|
CONFIG_BRIDGE=y
|
||||||
CONFIG_HAVE_NET_DSA=y
|
CONFIG_HAVE_NET_DSA=y
|
||||||
# CONFIG_NET_DSA is not set
|
# CONFIG_NET_DSA is not set
|
||||||
# CONFIG_VLAN_8021Q is not set
|
# CONFIG_VLAN_8021Q is not set
|
||||||
|
|
|
@ -678,7 +678,7 @@ CONFIG_DEFAULT_TCP_CONG="cubic"
|
||||||
# CONFIG_TIPC is not set
|
# CONFIG_TIPC is not set
|
||||||
# CONFIG_ATM is not set
|
# CONFIG_ATM is not set
|
||||||
# CONFIG_L2TP is not set
|
# CONFIG_L2TP is not set
|
||||||
# CONFIG_BRIDGE is not set
|
CONFIG_BRIDGE=y
|
||||||
CONFIG_HAVE_NET_DSA=y
|
CONFIG_HAVE_NET_DSA=y
|
||||||
# CONFIG_NET_DSA is not set
|
# CONFIG_NET_DSA is not set
|
||||||
# CONFIG_VLAN_8021Q is not set
|
# CONFIG_VLAN_8021Q is not set
|
||||||
|
|
|
@ -669,7 +669,7 @@ CONFIG_DEFAULT_TCP_CONG="cubic"
|
||||||
# CONFIG_TIPC is not set
|
# CONFIG_TIPC is not set
|
||||||
# CONFIG_ATM is not set
|
# CONFIG_ATM is not set
|
||||||
# CONFIG_L2TP is not set
|
# CONFIG_L2TP is not set
|
||||||
# CONFIG_BRIDGE is not set
|
CONFIG_BRIDGE=y
|
||||||
CONFIG_HAVE_NET_DSA=y
|
CONFIG_HAVE_NET_DSA=y
|
||||||
# CONFIG_NET_DSA is not set
|
# CONFIG_NET_DSA is not set
|
||||||
# CONFIG_VLAN_8021Q is not set
|
# CONFIG_VLAN_8021Q is not set
|
||||||
|
|
|
@ -678,7 +678,7 @@ CONFIG_DEFAULT_TCP_CONG="cubic"
|
||||||
# CONFIG_TIPC is not set
|
# CONFIG_TIPC is not set
|
||||||
# CONFIG_ATM is not set
|
# CONFIG_ATM is not set
|
||||||
# CONFIG_L2TP is not set
|
# CONFIG_L2TP is not set
|
||||||
# CONFIG_BRIDGE is not set
|
CONFIG_BRIDGE=y
|
||||||
CONFIG_HAVE_NET_DSA=y
|
CONFIG_HAVE_NET_DSA=y
|
||||||
# CONFIG_NET_DSA is not set
|
# CONFIG_NET_DSA is not set
|
||||||
# CONFIG_VLAN_8021Q is not set
|
# CONFIG_VLAN_8021Q is not set
|
||||||
|
|
|
@ -677,7 +677,7 @@ CONFIG_DEFAULT_TCP_CONG="cubic"
|
||||||
# CONFIG_TIPC is not set
|
# CONFIG_TIPC is not set
|
||||||
# CONFIG_ATM is not set
|
# CONFIG_ATM is not set
|
||||||
# CONFIG_L2TP is not set
|
# CONFIG_L2TP is not set
|
||||||
# CONFIG_BRIDGE is not set
|
CONFIG_BRIDGE=y
|
||||||
CONFIG_HAVE_NET_DSA=y
|
CONFIG_HAVE_NET_DSA=y
|
||||||
# CONFIG_NET_DSA is not set
|
# CONFIG_NET_DSA is not set
|
||||||
# CONFIG_VLAN_8021Q is not set
|
# CONFIG_VLAN_8021Q is not set
|
||||||
|
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue