Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
arix00 committed Sep 21, 2024
1 parent c17eac6 commit 527cd98
Show file tree
Hide file tree
Showing 2 changed files with 66 additions and 0 deletions.
58 changes: 58 additions & 0 deletions .github/workflows/build_nss.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,58 @@
name: build nss

on: workflow_dispatch

jobs:
build:
name: build mx4300 nss
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- name: Install packages
run: |
sudo apt-get update && \
sudo apt-get install -y \
build-essential \
clang \
flex \
bison \
g++ \
gawk \
gcc-multilib \
g++-multilib \
gettext \
git \
libncurses-dev \
libssl-dev \
python3-distutils \
rsync \
unzip \
zlib1g-dev \
file \
wget && \
sudo apt-get clean
- name: Checkout
uses: actions/checkout@v4

- name: Update feeds
run: scripts/feeds update -a && scripts/feeds install -a

- name: Generate config
run: sh genconfig_nss.sh

- name: Build firmware images
run: make -j$(($(nproc)+1)) world

- name: Pack packages
run: tar cvfz bin.tar.gz bin/

- name: Get SHA
uses: benjlevesque/[email protected]

- name: Release
uses: ncipollo/release-action@v1
with:
tag: qualcommax-nss-${{ env.SHA }}
artifacts: bin.tar.gz
8 changes: 8 additions & 0 deletions genconfig_nss.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
#!/bin/sh

cp nss-setup/config-nss.seed .config

echo CONFIG_ATH11K_THERMAL=y >> .config
echo CONFIG_KMOD_ALL=y >> .config

make defconfig

0 comments on commit 527cd98

Please sign in to comment.