-
Notifications
You must be signed in to change notification settings - Fork 85
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
TUF-AX3000_V2: Added new target. Prebuilt merged from 24353
- Loading branch information
Showing
1,039 changed files
with
112,897 additions
and
72 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,62 +5,31 @@ jobs: | |
build-job: | ||
name: Build | ||
runs-on: ubuntu-latest | ||
if: "!contains(github.event.commits[0].message, '[skip ci]')" | ||
strategy: | ||
matrix: | ||
include: | ||
- model: "dsl-ax82u" | ||
sdk: "src-rt-5.02axhnd.675x" | ||
ui: "default" | ||
skip: "n" | ||
- model: "rt-ax82u" | ||
sdk: "src-rt-5.02axhnd.675x" | ||
ui: "default" | ||
skip: "n" | ||
- model: "rt-ax82u_v2" | ||
sdk: "src-rt-5.04axhnd.675x" | ||
ui: "default" | ||
skip: "n" | ||
- model: "rt-ax92u" | ||
sdk: "src-rt-5.02axhnd" | ||
ui: "default" | ||
skip: "n" | ||
- model: "rt-ax5400" | ||
sdk: "src-rt-5.04axhnd.675x" | ||
ui: "default" | ||
skip: "n" | ||
- model: "tuf-ax3000" | ||
sdk: "src-rt-5.02axhnd.675x" | ||
ui: "default" | ||
skip: "n" | ||
- model: "tuf-ax5400" | ||
sdk: "src-rt-5.02axhnd.675x" | ||
ui: "default" | ||
skip: "n" | ||
- model: "tuf-ax3000" | ||
sdk: "src-rt-5.02axhnd.675x" | ||
ui: "tuf" | ||
skip: "n" | ||
- model: "tuf-ax5400" | ||
sdk: "src-rt-5.02axhnd.675x" | ||
ui: "tuf" | ||
skip: "n" | ||
- model: "rt-ax95q" | ||
sdk: "src-rt-5.02axhnd.675x" | ||
ui: "default" | ||
skip: "n" | ||
- model: "rt-axe95q" | ||
sdk: "src-rt-5.02axhnd.675x" | ||
ui: "default" | ||
skip: "n" | ||
container: | ||
cfg: | ||
- { model: "rt-ax92u", sdk: "src-rt-5.02axhnd", ui: "default", skip: false } | ||
- { model: "dsl-ax82u", sdk: "src-rt-5.02axhnd.675x", ui: "default", skip: false } | ||
- { model: "tuf-ax5400", sdk: "src-rt-5.02axhnd.675x", ui: "default", skip: false } | ||
- { model: "tuf-ax5400", sdk: "src-rt-5.02axhnd.675x", ui: "tuf", skip: false } | ||
- { model: "tuf-ax3000", sdk: "src-rt-5.02axhnd.675x", ui: "default", skip: false } | ||
- { model: "tuf-ax3000", sdk: "src-rt-5.02axhnd.675x", ui: "tuf", skip: false } | ||
- { model: "rt-ax82u", sdk: "src-rt-5.02axhnd.675x", ui: "default", skip: false } | ||
- { model: "rt-ax95q", sdk: "src-rt-5.02axhnd.675x", ui: "default", skip: false } | ||
- { model: "rt-axe95q", sdk: "src-rt-5.02axhnd.675x", ui: "default", skip: false } | ||
- { model: "rt-ax82u_v2", sdk: "src-rt-5.04axhnd.675x", ui: "default", skip: false } | ||
- { model: "rt-ax5400", sdk: "src-rt-5.04axhnd.675x", ui: "default", skip: false } | ||
- { model: "tuf-ax3000_v2", sdk: "src-rt-5.04axhnd.675x", ui: "default", skip: false } | ||
- { model: "tuf-ax3000_v2", sdk: "src-rt-5.04axhnd.675x", ui: "tuf", skip: false } | ||
if: "!contains(github.event.commits[0].message, '[SKIP_CI]')" | ||
container: | ||
image: gnuton/asuswrt-merlin-toolchains-docker:latest | ||
env: | ||
MERLINUPDATE: "y" | ||
MODEL: ${{ matrix.model }} | ||
SDK: ${{ matrix.sdk }} | ||
UI: ${{ matrix.ui }} | ||
SKIP_BUILD: ${{ matrix.skip }} | ||
MODEL: ${{ matrix.cfg.model }} | ||
SDK: ${{ matrix.cfg.sdk }} | ||
UI: ${{ matrix.cfg.ui }} | ||
SKIP_BUILD: ${{ matrix.cfg.skip }} | ||
GIT_REPO: "https://github.com/gnuton/asuswrt-merlin.ng.git" | ||
PROJECT_DIR: "/project/asuswrt-merlin.ng" | ||
CHANGELOG_FILE: "/tmp/CHANGELOG" | ||
|
@@ -69,20 +38,37 @@ jobs: | |
- ${{ github.workspace }}:/project | ||
steps: | ||
- name: Fix permissions in docker image | ||
if: matrix.cfg.skip == false | ||
run: | | ||
sudo chown docker:docker /github/home /home/docker /project -R | ||
- name: Setup git config | ||
if: matrix.cfg.skip == false | ||
run: | | ||
# setup the username and email. I tend to use 'GitHub Actions Bot' with no email by default | ||
git config --global user.email "[email protected]" | ||
git config --global user.name "Circle CI BOT" | ||
git config --global push.default simple | ||
- name: "Fetch code" | ||
- name: "Fetch code" | ||
if: matrix.cfg.skip == false | ||
run: | | ||
cd /project | ||
git clone --single-branch --depth 1 --branch master $GIT_REPO | ||
if [[ $GITHUB_REF_TYPE == "tag" ]]; then | ||
export BRANCH="master" | ||
else | ||
export BRANCH="${GITHUB_HEAD_REF:-${GITHUB_REF#refs/heads/}}" | ||
fi | ||
echo "Fetching code from branch $BRANCH" | ||
if git clone --single-branch --depth 1 --branch "$BRANCH" "$GIT_REPO"; then | ||
echo "Code fetched successfully." | ||
else | ||
echo "Failed to fetch code. Check the repository and branch settings." | ||
exit 1 | ||
fi | ||
ls /home/docker | ||
- name: "Set version" | ||
if: matrix.cfg.skip == false | ||
run: | | ||
cd ${PROJECT_DIR} | ||
export CIRCLE_TAG="${GITHUB_REF#refs/*/}" | ||
|
@@ -97,11 +83,13 @@ jobs: | |
echo "Release detected. Updating version.conf with MAJOR_VER=${MAJOR_VER} and MINOR_VER=${MINOR_VER}" | ||
fi | ||
- name: Generate changelog | ||
if: matrix.cfg.skip == false | ||
run: | | ||
cd ${PROJECT_DIR} | ||
python tools/get-last-notes.py > "${CHANGELOG_FILE}" | ||
cat "${CHANGELOG_FILE}" | ||
- name: "Build" | ||
if: matrix.cfg.skip == false | ||
run: | | ||
echo "----- I am: $(id) -----" | ||
cd ${PROJECT_DIR}/release/${SDK} | ||
|
@@ -130,27 +118,21 @@ jobs: | |
echo "Enabling TUF UI" | ||
sed -i 's/TUF_UI=n/TUF_UI=y/' ${PROJECT_DIR}/release/src-rt/target.mak | ||
fi | ||
echo "----- BUILD -----" | ||
if [[ ${SKIP_BUILD} == "Y" ]]; then | ||
echo "Skipping build" | ||
exit 0 | ||
fi | ||
make ${MODEL} | ||
echo "----- BUILD ${MODEL}-----" | ||
make "${MODEL}" | ||
# #### Just for testing #### | ||
# mkdir -p "${PROJECT_DIR}/release/${SDK}/image/" | ||
# echo "TEST" > "${PROJECT_DIR}/release/${SDK}/image/${MODEL}_${UI}_puresqubi.w" | ||
- name: "Prepare artifacts" | ||
if: matrix.cfg.skip == false | ||
env: | ||
ARTIFACTS_DIR: ${{ github.workspace }}/artifacts | ||
run: | | ||
export IMAGE_PATH=${PROJECT_DIR}/release/${SDK}/image/ | ||
mkdir -p "${ARTIFACTS_DIR}" | ||
if [[ ${SKIP_BUILD} == "Y" ]]; then | ||
echo "Nothing to persist. Skipping." | ||
exit 0 | ||
fi | ||
echo "Removing images with boot loader." | ||
rm -rf ${IMAGE_PATH}/*cferom* | ||
|
@@ -176,11 +158,11 @@ jobs: | |
cp "${CHANGELOG_FILE}" "${ARTIFACTS_DIR}" | ||
fi | ||
- name: "Archive artifacts" | ||
if: matrix.cfg.skip == false | ||
uses: actions/upload-artifact@v2 | ||
with: | ||
name: release-${{ matrix.model }}-${{ matrix.ui }} | ||
name: release-${{ matrix.cfg.model }}-${{ matrix.cfg.ui }} | ||
path: ${{ github.workspace }}/artifacts | ||
|
||
release-job: | ||
name: Publish | ||
needs: build-job | ||
|
@@ -221,7 +203,7 @@ jobs: | |
git config --global user.name "Circle CI BOT" | ||
git config --global push.default simple | ||
- name: Download packages | ||
uses: actions/download-artifact@v2 | ||
uses: actions/download-artifact@v4 | ||
- name: "Publish Manifest" | ||
env: | ||
UPDATE_DIR: "updates" | ||
|
@@ -238,11 +220,12 @@ jobs: | |
echo "RT-AX5400#FW${MAJOR_VER}#EXT${MINOR_VER}" >> ${UPDATE_DIR}/manifest2.txt | ||
echo "TUF-AX5400#FW${MAJOR_VER}#EXT${MINOR_VER}" >> ${UPDATE_DIR}/manifest2.txt | ||
echo "TUF-AX3000#FW${MAJOR_VER}#EXT${MINOR_VER}" >> ${UPDATE_DIR}/manifest2.txt | ||
echo "TUF-AX3000_V2#FW${MAJOR_VER}#EXT${MINOR_VER}" >> ${UPDATE_DIR}/manifest2.txt | ||
echo "RT-AX95Q#FW${MAJOR_VER}#EXT${MINOR_VER}" >> ${UPDATE_DIR}/manifest2.txt | ||
echo "RT-AXE95Q#FW${MAJOR_VER}#EXT${MINOR_VER}" >> ${UPDATE_DIR}/manifest2.txt | ||
echo "RT-AX5400#FW${MAJOR_VER}#EXT${MINOR_VER}" >> ${UPDATE_DIR}/manifest2.txt | ||
cp ${CHANGELOG_FILE} ${UPDATE_DIR}/"${RELEASE_NOTE_FILE}" | ||
echo "Uploading to github manifest and ${RELEASE_NOTE_FILE}" | ||
git add ${UPDATE_DIR} | ||
git commit -m "Updating Notes and manifest to version:${MAJOR_VER} ${MINOR_VER} [skip ci]" -a | ||
git commit -m "Updating Notes and manifest to version:${MAJOR_VER} ${MINOR_VER} [SKIP_CI]" -a | ||
git push origin |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,4 @@ | ||
.idea/ | ||
.idea/checkstyle-idea.xml | ||
.idea/dbnavigator.xml | ||
.idea/workspace.xml | ||
|
Binary file added
BIN
+33.6 KB
...rivers/broadcom/net/wl/impl87/main/components/apps/acsdv2/prebuilt/TUF-AX3000_V2/acs_cli2
Binary file not shown.
Binary file added
BIN
+418 KB
...cmdrivers/broadcom/net/wl/impl87/main/components/apps/acsdv2/prebuilt/TUF-AX3000_V2/acsd2
Binary file not shown.
1 change: 1 addition & 0 deletions
1
release/src-rt-5.04axhnd.675x/bcmdrivers/opensource/phy/prebuilt/TUF-AX3000_V2
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
arm_6756hnd |
Binary file added
BIN
+14.3 KB
release/src-rt-5.04axhnd.675x/bcmdrivers/opensource/phy/prebuilt/arm_6756hnd/gpy211.o
Binary file not shown.
Binary file added
BIN
+5.07 KB
...rc-rt-5.04axhnd.675x/bootloaders/obj.tuf-ax3000_v2/emmc_spl/board/broadcom/bcmbca/board.o
Binary file not shown.
Binary file added
BIN
+9.15 KB
...t-5.04axhnd.675x/bootloaders/obj.tuf-ax3000_v2/emmc_spl/board/broadcom/bcmbca/board_sdk.o
Binary file not shown.
Binary file added
BIN
+11.3 KB
release/src-rt-5.04axhnd.675x/bootloaders/obj.tuf-ax3000_v2/emmc_spl/common/autoboot.o
Binary file not shown.
Binary file added
BIN
+10.9 KB
...5.04axhnd.675x/bootloaders/obj.tuf-ax3000_v2/emmc_spl/drivers/net/bcmbca/phy/dt_parsing.o
Binary file not shown.
Binary file added
BIN
+5.79 KB
release/src-rt-5.04axhnd.675x/bootloaders/obj.tuf-ax3000_v2/emmc_spl/net/arp.o
Binary file not shown.
Binary file added
BIN
+22.6 KB
release/src-rt-5.04axhnd.675x/bootloaders/obj.tuf-ax3000_v2/emmc_spl/net/net.o
Binary file not shown.
Binary file added
BIN
+3.64 KB
release/src-rt-5.04axhnd.675x/bootloaders/obj.tuf-ax3000_v2/emmc_spl/net/ping.o
Binary file not shown.
Binary file added
BIN
+27.2 KB
release/src-rt-5.04axhnd.675x/bootloaders/obj.tuf-ax3000_v2/emmc_spl/net/tftp.o
Binary file not shown.
Binary file added
BIN
+5.63 KB
...rc-rt-5.04axhnd.675x/bootloaders/obj.tuf-ax3000_v2/nand_spl/board/broadcom/bcmbca/board.o
Binary file not shown.
Binary file added
BIN
+11.5 KB
...t-5.04axhnd.675x/bootloaders/obj.tuf-ax3000_v2/nand_spl/board/broadcom/bcmbca/board_sdk.o
Binary file not shown.
Binary file added
BIN
+11.3 KB
release/src-rt-5.04axhnd.675x/bootloaders/obj.tuf-ax3000_v2/nand_spl/common/autoboot.o
Binary file not shown.
Binary file added
BIN
+10.9 KB
...5.04axhnd.675x/bootloaders/obj.tuf-ax3000_v2/nand_spl/drivers/net/bcmbca/phy/dt_parsing.o
Binary file not shown.
Binary file added
BIN
+5.79 KB
release/src-rt-5.04axhnd.675x/bootloaders/obj.tuf-ax3000_v2/nand_spl/net/arp.o
Binary file not shown.
Binary file added
BIN
+22.7 KB
release/src-rt-5.04axhnd.675x/bootloaders/obj.tuf-ax3000_v2/nand_spl/net/net.o
Binary file not shown.
Binary file added
BIN
+3.64 KB
release/src-rt-5.04axhnd.675x/bootloaders/obj.tuf-ax3000_v2/nand_spl/net/ping.o
Binary file not shown.
Binary file added
BIN
+27.3 KB
release/src-rt-5.04axhnd.675x/bootloaders/obj.tuf-ax3000_v2/nand_spl/net/tftp.o
Binary file not shown.
Binary file added
BIN
+5.63 KB
...e/src-rt-5.04axhnd.675x/bootloaders/obj.tuf-ax3000_v2/uboot/board/broadcom/bcmbca/board.o
Binary file not shown.
Binary file added
BIN
+12.1 KB
...c-rt-5.04axhnd.675x/bootloaders/obj.tuf-ax3000_v2/uboot/board/broadcom/bcmbca/board_sdk.o
Binary file not shown.
Binary file added
BIN
+11.3 KB
release/src-rt-5.04axhnd.675x/bootloaders/obj.tuf-ax3000_v2/uboot/common/autoboot.o
Binary file not shown.
Binary file added
BIN
+10.9 KB
...rt-5.04axhnd.675x/bootloaders/obj.tuf-ax3000_v2/uboot/drivers/net/bcmbca/phy/dt_parsing.o
Binary file not shown.
Binary file added
BIN
+5.79 KB
release/src-rt-5.04axhnd.675x/bootloaders/obj.tuf-ax3000_v2/uboot/net/arp.o
Binary file not shown.
Binary file added
BIN
+22.7 KB
release/src-rt-5.04axhnd.675x/bootloaders/obj.tuf-ax3000_v2/uboot/net/net.o
Binary file not shown.
Binary file added
BIN
+3.64 KB
release/src-rt-5.04axhnd.675x/bootloaders/obj.tuf-ax3000_v2/uboot/net/ping.o
Binary file not shown.
Binary file added
BIN
+27.3 KB
release/src-rt-5.04axhnd.675x/bootloaders/obj.tuf-ax3000_v2/uboot/net/tftp.o
Binary file not shown.
Binary file added
BIN
+13 KB
release/src-rt-5.04axhnd.675x/hostTools/prebuilt/TUF-AX3000_V2/addvtoken
Binary file not shown.
Binary file not shown.
1 change: 1 addition & 0 deletions
1
release/src-rt-5.04axhnd.675x/router-sysdep.tuf-ax3000_v2/Makefile
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
../../src/router/Makefile |
9 changes: 9 additions & 0 deletions
9
release/src-rt-5.04axhnd.675x/router-sysdep.tuf-ax3000_v2/acsd/Makefile
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
all: | ||
|
||
install: | ||
|
||
dynamic: | ||
|
||
clean: | ||
|
||
|
57 changes: 57 additions & 0 deletions
57
release/src-rt-5.04axhnd.675x/router-sysdep.tuf-ax3000_v2/archer_lib/Bcmbuild.mk
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
LIB = libarcher.so | ||
|
||
default: conditional_build | ||
|
||
|
||
CURR_DIR := $(shell pwd) | ||
BUILD_DIR:=$(HND_SRC) | ||
include $(BUILD_DIR)/make.common | ||
|
||
ifneq ($(strip $(BUILD_ARCHERCTL)),) | ||
conditional_build: all | ||
else | ||
conditional_build: | ||
@echo "Skipping $(LIB)" | ||
endif | ||
|
||
ARCH=$(PROFILE_ARCH) | ||
LIB_INSTALL_DIR := $(BCM_FSBUILD_DIR)/private/lib | ||
ALLOWED_INCLUDE_PATHS := -I.\ | ||
-I$(BUILD_DIR)/userspace/public/include \ | ||
-I$(HND_SRC)/userspace/private/include \ | ||
-I$(BUILD_DIR)/shared/opensource/include/bcm963xx \ | ||
-I$(BUILD_DIR)/shared/private/include/$(OALDIR) \ | ||
-I$(INC_BRCMDRIVER_PRIV_PATH)/$(BRCM_BOARD) \ | ||
-I$(INC_BRCMDRIVER_PUB_PATH)/$(BRCM_BOARD) | ||
|
||
|
||
|
||
export ARCH CFLAGS LIB_INSTALL_DIR CFLAGS DESKTOP_LINUX BRCM_RELEASETAG | ||
|
||
# Final location of LIB for system image. Only the BRCM build system needs to | ||
# know about this. | ||
FINAL_LIB_INSTALL_DIR := $(INSTALL_DIR)/lib$(BCM_INSTALL_SUFFIX_DIR) | ||
|
||
all: | ||
mkdir -p $(INSTALL_DIR)/lib/private/ | ||
mkdir -p objs | ||
$(MAKE) -C objs -f ../Makefile install | ||
mkdir -p $(FINAL_LIB_INSTALL_DIR) | ||
cp -p $(LIB_INSTALL_DIR)/$(LIB)* $(FINAL_LIB_INSTALL_DIR) | ||
|
||
clean: | ||
rm -f $(FINAL_LIB_INSTALL_DIR)/$(LIB)* | ||
-mkdir -p objs | ||
-$(MAKE) -C objs -f ../Makefile clean | ||
rm -rf objs | ||
|
||
CONSUMER_RELEASE_BINARYONLY_PREPARE: binaryonly_prepare | ||
|
||
binaryonly_prepare: | ||
mkdir -p objs | ||
-$(MAKE) -C objs -f ../Makefile binaryonly_prepare | ||
|
||
|
||
shell: | ||
bash -i | ||
|
58 changes: 58 additions & 0 deletions
58
release/src-rt-5.04axhnd.675x/router-sysdep.tuf-ax3000_v2/archer_lib/Makefile
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,58 @@ | ||
|
||
# Set VPATH because we want to compile in a seperate dir than source. | ||
name := $(lastword $(MAKEFILE_LIST)) | ||
mdir := $(realpath $(dir $(name))) | ||
VPATH=$(mdir) | ||
|
||
|
||
LIB = libarcher.so | ||
|
||
SAVED = $(LIB)_$(ARCH).shipped | ||
|
||
OBJS = archer_api.o | ||
|
||
BRCM_RELEASETAG ?= "unknown" | ||
CFLAGS += -Werror -Wfatal-errors -DBRCM_RELEASETAG=\"$(BRCM_RELEASETAG)\" -I$(HND_SRC)/userspace/private/include -Wno-stringop-truncation | ||
|
||
$(LIB) : | ||
|
||
# from Bcmbuild.mk | ||
LIB_INSTALL_DIR := $(BCM_FSBUILD_DIR)/private/lib | ||
|
||
install: $(LIB) | ||
mkdir -p $(LIB_INSTALL_DIR) | ||
install -p -t $(LIB_INSTALL_DIR) $(LIB) | ||
mkdir -p $(INSTALLDIR)/lib | ||
install -p -m 755 -t $(INSTALLDIR)/lib $(LIB) | ||
|
||
clean: | ||
rm -f *.o *.d $(LIB) | ||
rm -f $(LIB_INSTALL_DIR)/$(LIB) | ||
rm -f $(INSTALLDIR)/lib/$(LIB) | ||
|
||
ifneq ($(wildcard $(mdir)/*.c),) | ||
|
||
$(LIB): $(OBJS) | ||
$(CC) -shared $(BCM_LD_FLAGS) -Wl,--whole-archive,-soname,$(notdir $@) -o $@ $(OBJS) -Wl,--no-whole-archive | ||
|
||
else | ||
|
||
ifneq ($(wildcard prebuilt/libarcher.so),) | ||
$(LIB): | ||
cp prebuilt/libarcher.so libarcher.so | ||
else | ||
$(LIB): $(SAVED) | ||
cat $< > $@ | ||
endif | ||
|
||
endif | ||
|
||
binaryonly_prepare: | ||
-cp $(LIB) $(mdir)/$(SAVED) | ||
-$(MAKE) -f $(name) clean | ||
rm -rf $(mdir)/*.c $(mdir)/*.h | ||
|
||
|
||
# Generate and use dependencies. | ||
CFLAGS += -MD | ||
-include $(OBJS:%.o=%.d) |
1 change: 1 addition & 0 deletions
1
release/src-rt-5.04axhnd.675x/router-sysdep.tuf-ax3000_v2/archer_lib/autodetect
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
|
Binary file added
BIN
+12.5 KB
release/src-rt-5.04axhnd.675x/router-sysdep.tuf-ax3000_v2/archer_lib/prebuilt/libarcher.so
Binary file not shown.
Oops, something went wrong.