bcm27xx: add bcm2711 subtarget with rpi-4

This commit is contained in:
Martin Weinelt 2020-03-07 15:29:39 +01:00 committed by David Bauer
parent 007999e7af
commit c2b90bd690
3 changed files with 25 additions and 0 deletions

View File

@ -770,6 +770,27 @@ jobs:
name: bcm27xx-bcm2710_output name: bcm27xx-bcm2710_output
path: output path: output
bcm27xx-bcm2711:
name: bcm27xx-bcm2711
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Install Dependencies
run: sudo contrib/actions/install-dependencies.sh
- name: Build
run: contrib/actions/run-build.sh bcm27xx-bcm2711
- name: Archive build logs
if: ${{ !cancelled() }}
uses: actions/upload-artifact@v1
with:
name: bcm27xx-bcm2711_logs
path: openwrt/logs
- name: Archive build output
uses: actions/upload-artifact@v1
with:
name: bcm27xx-bcm2711_output
path: output
mvebu-cortexa9: mvebu-cortexa9:
name: mvebu-cortexa9 name: mvebu-cortexa9
runs-on: ubuntu-latest runs-on: ubuntu-latest

3
targets/bcm27xx-bcm2711 Normal file
View File

@ -0,0 +1,3 @@
include 'bcm27xx.inc'
device('raspberrypi-4-model-b', 'rpi-4')

View File

@ -27,5 +27,6 @@ $(eval $(call GluonTarget,x86,64))
ifneq ($(BROKEN),) ifneq ($(BROKEN),)
$(eval $(call GluonTarget,ar71xx,mikrotik)) # BROKEN: no sysupgrade support $(eval $(call GluonTarget,ar71xx,mikrotik)) # BROKEN: no sysupgrade support
$(eval $(call GluonTarget,bcm27xx,bcm2710)) # BROKEN: Untested $(eval $(call GluonTarget,bcm27xx,bcm2710)) # BROKEN: Untested
$(eval $(call GluonTarget,bcm27xx,bcm2711)) # BROKEN: Untested
$(eval $(call GluonTarget,mvebu,cortexa9)) # BROKEN: No 11s support $(eval $(call GluonTarget,mvebu,cortexa9)) # BROKEN: No 11s support
endif endif