mirror of
https://github.com/openwrt/openwrt.git
synced 2025-02-14 14:42:08 +00:00
Some checks are pending
Build Kernel / Build all affected Kernels (push) Waiting to run
The on-device board name reported by 'ubus call system board' is not present
in the generated profiles.json. This results in upgrade tools being unable
to match the image with the proper device. Let's add a 'SUPPORTED_DEVICES'
entry for the board name to fix this.
Links: https://forum.openwrt.org/t/owut-openwrt-upgrade-tool/200035/441
Links: 2a07270180
Signed-off-by: Eric Fahlgren <ericfahlgren@gmail.com>
Link: https://github.com/openwrt/openwrt/pull/17736
Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>
(cherry picked from commit 7165937c3b6ebe5ac692fcde1cc69ba1c7a3d9c9)
121 lines
3.6 KiB
Makefile
121 lines
3.6 KiB
Makefile
# SPDX-License-Identifier: GPL-2.0-only
|
|
#
|
|
# Copyright (C) 2009-2010 OpenWrt.org
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
include $(INCLUDE_DIR)/image.mk
|
|
|
|
define Build/append-dtb-to-elf
|
|
$(TARGET_CROSS)objcopy --update-section .appended_dtb=$(KDIR)/image-$(DEVICE_DTS).dtb $@
|
|
endef
|
|
|
|
define Build/strip-kernel
|
|
# Workaround pre-SDK-1.9.0 u-boot versions not handling the .notes section
|
|
$(TARGET_CROSS)strip -R .notes $@ -o $@.stripped && mv $@.stripped $@
|
|
endef
|
|
|
|
DTS_DIR := $(DTS_DIR)/cavium-octeon
|
|
|
|
define Device/Default
|
|
PROFILES = Default $$(DEVICE_NAME)
|
|
KERNEL_NAME := vmlinux.elf
|
|
KERNEL_INITRAMFS_NAME := vmlinux-initramfs.elf
|
|
KERNEL := kernel-bin | strip-kernel | patch-cmdline
|
|
IMAGES := sysupgrade.tar
|
|
IMAGE/sysupgrade.tar/squashfs := append-rootfs | pad-extra 128k | sysupgrade-tar rootfs=$$$$@
|
|
IMAGE/sysupgrade.tar := sysupgrade-tar
|
|
endef
|
|
|
|
define Device/generic
|
|
DEVICE_VENDOR := Generic
|
|
DEVICE_MODEL := Octeon
|
|
FILESYSTEMS := ext4
|
|
endef
|
|
TARGET_DEVICES += generic
|
|
|
|
ITUSROUTER_CMDLINE:=console=ttyS0,115200 root=/dev/mmcblk1p2 rootfstype=squashfs,ext4,f2fs rootwait
|
|
define Device/itus_shield-router
|
|
DEVICE_VENDOR := Itus Networks
|
|
DEVICE_MODEL := Shield Router
|
|
CMDLINE := $(ITUSROUTER_CMDLINE)
|
|
IMAGE/sysupgrade.tar/squashfs += | append-metadata
|
|
endef
|
|
TARGET_DEVICES += itus_shield-router
|
|
|
|
# Disable PCIe on ER as it doesn't have PCIe peripherals and some devices lock up on initialization
|
|
ER_CMDLINE:=-mtdparts=phys_mapped_flash:640k(boot0)ro,640k(boot1)ro,64k(eeprom)ro root=/dev/mmcblk0p2 rootfstype=squashfs,ext4 rootwait pcie_octeon.pcie_disable=1
|
|
define Device/ubnt_edgerouter
|
|
DEVICE_VENDOR := Ubiquiti
|
|
DEVICE_MODEL := EdgeRouter
|
|
BOARD_NAME := er
|
|
CMDLINE := $(ER_CMDLINE)
|
|
SUPPORTED_DEVICES += er
|
|
endef
|
|
TARGET_DEVICES += ubnt_edgerouter
|
|
|
|
define Device/ubnt_edgerouter-e300
|
|
DEVICE_VENDOR := Ubiquiti
|
|
DEVICE_PACKAGES += kmod-gpio-button-hotplug kmod-leds-gpio kmod-of-mdio kmod-sfp kmod-usb3 kmod-usb-dwc3 kmod-usb-storage-uas
|
|
KERNEL := kernel-bin | patch-cmdline | append-dtb-to-elf
|
|
KERNEL_DEPENDS := $$(wildcard $(DTS_DIR)/$(DEVICE_DTS).dts)
|
|
CMDLINE := root=/dev/mmcblk0p2 rootfstype=squashfs,ext4 rootwait
|
|
endef
|
|
|
|
define Device/ubnt_edgerouter-4
|
|
$(Device/ubnt_edgerouter-e300)
|
|
DEVICE_MODEL := EdgeRouter 4
|
|
DEVICE_DTS := cn7130_ubnt_edgerouter-4
|
|
endef
|
|
TARGET_DEVICES += ubnt_edgerouter-4
|
|
|
|
define Device/ubnt_edgerouter-6p
|
|
$(Device/ubnt_edgerouter-e300)
|
|
DEVICE_MODEL := EdgeRouter 6P
|
|
DEVICE_DTS := cn7130_ubnt_edgerouter-6p
|
|
endef
|
|
TARGET_DEVICES += ubnt_edgerouter-6p
|
|
|
|
ERLITE_CMDLINE:=-mtdparts=phys_mapped_flash:512k(boot0)ro,512k(boot1)ro,64k(eeprom)ro root=/dev/sda2 rootfstype=squashfs,ext4 rootwait
|
|
define Device/ubnt_edgerouter-lite
|
|
DEVICE_VENDOR := Ubiquiti
|
|
DEVICE_MODEL := EdgeRouter Lite
|
|
BOARD_NAME := erlite
|
|
CMDLINE := $(ERLITE_CMDLINE)
|
|
SUPPORTED_DEVICES += erlite
|
|
endef
|
|
TARGET_DEVICES += ubnt_edgerouter-lite
|
|
|
|
define Device/ubnt_unifi-usg
|
|
$(Device/ubnt_edgerouter-lite)
|
|
DEVICE_MODEL := UniFi Security Gateway
|
|
BOARD_NAME := ubnt,usg
|
|
DEVICE_PACKAGES += kmod-gpio-button-hotplug kmod-leds-gpio
|
|
DEVICE_DTS := cn5020_ubnt_usg
|
|
KERNEL += | append-dtb-to-elf
|
|
SUPPORTED_DEVICES += ubnt,usg
|
|
endef
|
|
TARGET_DEVICES += ubnt_unifi-usg
|
|
|
|
define Device/cisco_vedge1000
|
|
DEVICE_VENDOR := Cisco Viptela
|
|
DEVICE_MODEL := vEdge 1000
|
|
BOARD_NAME := cisco,vedge1000
|
|
DEVICE_PACKAGES += \
|
|
blkid \
|
|
kmod-hwmon-jc42 \
|
|
kmod-hwmon-max6697 \
|
|
kmod-of-mdio \
|
|
kmod-rtc-ds1307 \
|
|
kmod-usb-dwc3 \
|
|
kmod-usb-storage-uas \
|
|
kmod-usb3 \
|
|
sfdisk \
|
|
uboot-envtools
|
|
KERNEL := kernel-bin | append-dtb-elf
|
|
KERNEL_DEPENDS := $$(wildcard $(DTS_DIR)/$(DEVICE_DTS).dts)
|
|
DEVICE_DTS := cn6130_cisco_vedge1000
|
|
endef
|
|
TARGET_DEVICES += cisco_vedge1000
|
|
|
|
$(eval $(call BuildImage))
|