ef2cb8572b
We so far had two variables IMG_PREFIX and IMAGE_PREFIX with different content. Since these names are obviously quite confusing, this patch renames the latter to DEVICE_IMG_PREFIX, as it's a device-dependent variable, while IMG_PREFIX is only (sub)target-dependent. For consistency, also rename IMAGE_NAME to DEVICE_IMG_NAME, as that's a device-dependent variable as well. Cc: Paul Spooren <mail@aparcar.org> Signed-off-by: Adrian Schmutzler <freifunk@adrianschmutzler.de>
116 lines
3.0 KiB
Makefile
116 lines
3.0 KiB
Makefile
# SPDX-License-Identifier: GPL-2.0-only
|
|
#
|
|
# Copyright (C) 2006-2010 OpenWrt.org
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
include $(INCLUDE_DIR)/image.mk
|
|
|
|
define Build/mkfwimage
|
|
$(STAGING_DIR_HOST)/bin/mkfwimage \
|
|
-B $(1).$(VERSION_DIST).$(REVISION) \
|
|
-k $(IMAGE_KERNEL) \
|
|
-r $(IMAGE_ROOTFS) \
|
|
-o $@.new && \
|
|
mv $@.new $@
|
|
endef
|
|
|
|
define Build/combined-image
|
|
-sh $(TOPDIR)/scripts/combined-image.sh \
|
|
"$(IMAGE_KERNEL)" \
|
|
"$(IMAGE_ROOTFS)" \
|
|
"$@.new" && \
|
|
mv $@.new $@
|
|
endef
|
|
|
|
define Build/mkmylofw
|
|
$(STAGING_DIR_HOST)/bin/mkmylofw -B $(1) \
|
|
-p0x020000:0x130000:ah:0x80041000:linux:$(IMAGE_KERNEL) \
|
|
-p0x150000:0x2a0000:::rootfs:$(IMAGE_ROOTFS) \
|
|
$@.new && \
|
|
mv $@.new $@
|
|
endef
|
|
|
|
define Build/gzip-kernel
|
|
gzip -9n -c $@ > $@.gz
|
|
dd if=$@.gz of=$@ bs=65536 conv=sync
|
|
endef
|
|
|
|
define Build/lzma-kernel
|
|
$(STAGING_DIR_HOST)/bin/lzma e $@ $@.l7
|
|
dd if=$@.l7 of=$@ bs=65536 conv=sync
|
|
endef
|
|
|
|
define Build/copy-kernel
|
|
rm -f $@ $@.elf
|
|
cp $< $@
|
|
cp $< $@.elf
|
|
endef
|
|
|
|
define Build/elf-kernel
|
|
cp $(IMAGE_KERNEL).elf $@
|
|
endef
|
|
|
|
|
|
define Device/Default
|
|
PROFILES = Default $$(DEVICE_NAME)
|
|
KERNEL := copy-kernel | lzma-kernel
|
|
IMAGES := sysupgrade.bin
|
|
FILESYSTEMS := squashfs
|
|
endef
|
|
|
|
define Device/generic
|
|
DEVICE_VENDOR := Atheros
|
|
DEVICE_MODEL := Generic AR2xxx board
|
|
IMAGES := kernel.lzma kernel.elf kernel.gz rootfs.bin sysupgrade.bin
|
|
IMAGE/kernel.gz := elf-kernel | gzip-kernel
|
|
IMAGE/kernel.elf := elf-kernel
|
|
IMAGE/kernel.lzma := elf-kernel | lzma-kernel
|
|
IMAGE/rootfs.bin := append-rootfs | pad-rootfs | pad-to 128k
|
|
IMAGE/sysupgrade.bin := append-rootfs | pad-rootfs | pad-to 128k | combined-image
|
|
DEVICE_IMG_NAME = $$(DEVICE_IMG_PREFIX)-$$(if $$(findstring kernel,$$(2)),,$$(1)-)$$(2)
|
|
endef
|
|
TARGET_DEVICES += generic
|
|
|
|
define Device/ubnt_picostation-2
|
|
DEVICE_VENDOR := Ubiquiti
|
|
DEVICE_MODEL := Picostation 2 (XS2-8)
|
|
IMAGE/sysupgrade.bin := append-rootfs | pad-rootfs | pad-to 128k | mkfwimage XS2-8 -v XS2.ar2316
|
|
endef
|
|
TARGET_DEVICES += ubnt_picostation-2
|
|
|
|
define Device/ubnt_nanostation-2
|
|
DEVICE_VENDOR := Ubiquiti
|
|
DEVICE_MODEL := Nanostation 2 (XS2)
|
|
IMAGE/sysupgrade.bin := append-rootfs | pad-rootfs | pad-to 128k | mkfwimage XS2 -v XS2.ar2316
|
|
DEFAULT := n
|
|
endef
|
|
TARGET_DEVICES += ubnt_nanostation-2
|
|
|
|
define Device/ubnt_nanostation-5
|
|
DEVICE_VENDOR := Ubiquiti
|
|
DEVICE_MODEL := Nanostation 5 (XS5)
|
|
IMAGE/sysupgrade.bin := append-rootfs | pad-rootfs | pad-to 128k | mkfwimage XS5 -v XS5.ar2313
|
|
DEFAULT := n
|
|
endef
|
|
TARGET_DEVICES += ubnt_nanostation-5
|
|
|
|
define Device/compex_np25g
|
|
DEVICE_VENDOR := Compex
|
|
DEVICE_MODEL := NP25G
|
|
KERNEL := kernel-bin | gzip-kernel
|
|
IMAGE/sysupgrade.bin := append-rootfs | pad-rootfs | pad-to 128k | mkmylofw np25g
|
|
BROKEN := y
|
|
endef
|
|
TARGET_DEVICES += compex_np25g
|
|
|
|
define Device/compex_wpe53g
|
|
DEVICE_VENDOR := Compex
|
|
DEVICE_MODEL := WPE53G
|
|
KERNEL := kernel-bin | gzip-kernel
|
|
IMAGE/sysupgrade.bin := append-rootfs | pad-rootfs | pad-to 128k | mkmylofw wpe53g
|
|
BROKEN := y
|
|
endef
|
|
TARGET_DEVICES += compex_wpe53g
|
|
|
|
$(eval $(call BuildImage))
|