mirror of
https://github.com/openwrt/openwrt.git
synced 2024-12-26 17:01:14 +00:00
479d1154c4
Signed-off-by: John Crispin <john@phrozen.org>
54 lines
1.5 KiB
Makefile
54 lines
1.5 KiB
Makefile
# This is free software, licensed under the GNU General Public License v2.
|
|
# See /LICENSE for more information.
|
|
#
|
|
include $(TOPDIR)/rules.mk
|
|
include $(INCLUDE_DIR)/image.mk
|
|
|
|
KERNEL_LOADADDR = 0x80000000
|
|
KERNEL_ENTRY = 0x80000400
|
|
|
|
define Build/custom-uimage
|
|
mkimage -A $(LINUX_KARCH) \
|
|
-O linux -T kernel \
|
|
-C gzip -a $(KERNEL_LOADADDR) $(if $(UIMAGE_MAGIC),-M $(UIMAGE_MAGIC),) \
|
|
-e $(if $(KERNEL_ENTRY),$(KERNEL_ENTRY),$(KERNEL_LOADADDR)) \
|
|
-n '$(1)' -d $@ $@.new
|
|
mv $@.new $@
|
|
endef
|
|
|
|
|
|
define Device/Default
|
|
PROFILES = Default
|
|
KERNEL := kernel-bin | append-dtb | gzip | uImage gzip
|
|
KERNEL_INITRAMFS := kernel-bin | append-dtb | gzip | uImage gzip
|
|
DEVICE_DTS_DIR := ../dts
|
|
DEVICE_DTS = $$(SOC)_$(1)
|
|
SUPPORTED_DEVICES := $(subst _,$(comma),$(1))
|
|
IMAGES := sysupgrade.bin
|
|
IMAGE/sysupgrade.bin := append-kernel | pad-to 64k | append-rootfs | pad-rootfs | \
|
|
append-metadata | check-size
|
|
endef
|
|
|
|
define Device/allnet_all-sg8208m
|
|
SOC := rtl8382
|
|
IMAGE_SIZE := 7168k
|
|
DEVICE_VENDOR := ALLNET
|
|
DEVICE_MODEL := ALL-SG8208M
|
|
UIMAGE_MAGIC := 0x00000006
|
|
KERNEL := kernel-bin | append-dtb | gzip | custom-uimage 2.2.2.0
|
|
KERNEL_INITRAMFS := kernel-bin | append-dtb | gzip | custom-uimage 2.2.2.0
|
|
DEVICE_PACKAGES := ip-full ip-bridge kmod-gpio-button-hotplug tc
|
|
endef
|
|
TARGET_DEVICES += allnet_all-sg8208m
|
|
|
|
define Device/d-link_dgs-1210-16
|
|
SOC := rtl8382
|
|
IMAGE_SIZE := 13824k
|
|
DEVICE_VENDOR := D-Link
|
|
DEVICE_MODEL := DGS-1210-16
|
|
DEVICE_PACKAGES := ip-full ip-bridge ethtool tc
|
|
endef
|
|
TARGET_DEVICES += d-link_dgs-1210-16
|
|
|
|
$(eval $(call BuildImage))
|