ARM: tsimx6ul: Disable CFG80211 default powersave #6
Workflow file for this run
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
name: Build | |
on: | |
pull_request: | |
push: | |
tags: | |
- 'v*-ts' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Install Build Dependencies | |
run: | | |
sudo apt-get update | |
sudo apt-get install -y crossbuild-essential-armhf build-essential lzop | |
- name: Make | |
run: | | |
CROSS_COMPILE=arm-linux-gnueabihf- ARCH=arm LOADADDR=0x80800000 make tsimx6ul_defconfig | |
CROSS_COMPILE=arm-linux-gnueabihf- ARCH=arm LOADADDR=0x80800000 make zImage | |
CROSS_COMPILE=arm-linux-gnueabihf- ARCH=arm LOADADDR=0x80800000 make modules |