2008-11-22 19:45:14 +00:00
|
|
|
#
|
2010-04-12 23:15:56 +00:00
|
|
|
# Copyright (C) 2006-2010 OpenWrt.org
|
2006-12-25 08:05:48 +00:00
|
|
|
#
|
|
|
|
# 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
|
|
|
|
|
2016-05-16 07:52:24 +00:00
|
|
|
DEVICE_VARS += KERNEL_PREFIX FILESYSTEMS
|
|
|
|
|
2008-03-27 15:52:29 +00:00
|
|
|
define Image/BuildKernel
|
2010-04-12 23:15:56 +00:00
|
|
|
cp $(KDIR)/vmlinux.elf $(BIN_DIR)/$(IMG_PREFIX)-vmlinux.elf
|
2015-07-14 09:57:45 +00:00
|
|
|
gzip -9n -c $(KDIR)/vmlinux > $(KDIR)/vmlinux.bin.gz
|
2016-05-16 07:52:24 +00:00
|
|
|
$(STAGING_DIR_HOST)/bin/lzma e $(KDIR)/vmlinux $(KDIR)/vmlinux.bin.lzma
|
2010-04-12 23:15:56 +00:00
|
|
|
dd if=$(KDIR)/vmlinux.bin.gz of=$(BIN_DIR)/$(IMG_PREFIX)-vmlinux.gz bs=65536 conv=sync
|
2016-05-16 07:52:24 +00:00
|
|
|
dd if=$(KDIR)/vmlinux.bin.lzma of=$(BIN_DIR)/$(IMG_PREFIX)-vmlinux.lzma bs=65536 conv=sync
|
2006-12-25 08:05:48 +00:00
|
|
|
endef
|
|
|
|
|
2007-03-02 01:38:07 +00:00
|
|
|
define Image/Build/squashfs
|
2016-05-16 07:52:24 +00:00
|
|
|
$(call prepare_generic_squashfs,$(KDIR)/root.squashfs)
|
2007-03-02 01:38:07 +00:00
|
|
|
endef
|
|
|
|
|
2006-12-25 08:05:48 +00:00
|
|
|
define Image/Build
|
2007-03-02 01:38:07 +00:00
|
|
|
$(call Image/Build/$(1))
|
2010-04-12 23:15:56 +00:00
|
|
|
dd if=$(KDIR)/root.$(1) of=$(BIN_DIR)/$(IMG_PREFIX)-root.$(1) bs=128k conv=sync
|
2016-05-16 07:52:24 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
define Device/Default
|
|
|
|
PROFILES = Default $$(DEVICE_NAME)
|
|
|
|
KERNEL := lzma-kernel
|
|
|
|
IMAGES := sysupgrade.bin
|
|
|
|
FILESYSTEMS := squashfs
|
|
|
|
endef
|
2008-07-25 03:55:21 +00:00
|
|
|
|
2016-05-16 07:52:24 +00:00
|
|
|
define Build/mkfwimage
|
|
|
|
$(STAGING_DIR_HOST)/bin/mkfwimage \
|
|
|
|
-B $(1).OpenWrt.$(REVISION) \
|
|
|
|
-k $(KDIR)/$(KERNEL_IMAGE) \
|
|
|
|
-r $@ \
|
|
|
|
-o $@.new && \
|
|
|
|
mv $@.new $@
|
|
|
|
endef
|
2008-11-22 19:45:14 +00:00
|
|
|
|
2016-05-16 07:52:24 +00:00
|
|
|
define Build/combined-image
|
2009-09-22 01:09:04 +00:00
|
|
|
-sh $(TOPDIR)/scripts/combined-image.sh \
|
2016-05-16 07:52:24 +00:00
|
|
|
"$(KDIR)/$(KERNEL_IMAGE)" \
|
|
|
|
"$@" \
|
|
|
|
"$@.new" && \
|
|
|
|
mv $@.new $@
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Build/mkmylofw
|
|
|
|
$(STAGING_DIR_HOST)/bin/mkmylofw -B $(1) \
|
|
|
|
-p0x020000:0x130000:ah:0x80041000:linux:$(KDIR)/$(KERNEL_IMAGE) \
|
|
|
|
-p0x150000:0x2a0000:::rootfs:$@ \
|
|
|
|
$@.new && \
|
|
|
|
mv $@.new $@
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Build/gzip-kernel
|
|
|
|
gzip -9n -c $(KDIR)/vmlinux > $@
|
|
|
|
dd if=$@ of=$@.new bs=65536 conv=sync
|
|
|
|
mv $@.new $@
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Build/lzma-kernel
|
|
|
|
$(STAGING_DIR_HOST)/bin/lzma e $(KDIR)/vmlinux $@.l7
|
|
|
|
dd if=$@.l7 of=$@ bs=65536 conv=sync
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Device/combined
|
|
|
|
DEVICE_TITLE := Combined Image
|
|
|
|
IMAGE/sysupgrade.bin := append-rootfs | pad-rootfs | pad-to 128k | combined-image
|
|
|
|
endef
|
|
|
|
TARGET_DEVICES += combined
|
|
|
|
|
|
|
|
define Device/ubnt2-pico2
|
|
|
|
DEVICE_TITLE := Ubiquiti XS2-8
|
|
|
|
IMAGE/sysupgrade.bin := append-rootfs | pad-rootfs | pad-to 128k | mkfwimage XS2-8 -v XS2.ar2316
|
|
|
|
endef
|
|
|
|
TARGET_DEVICES += ubnt2-pico2
|
|
|
|
|
|
|
|
define Device/ubnt2
|
|
|
|
DEVICE_TITLE := Ubiquiti XS2
|
|
|
|
IMAGE/sysupgrade.bin := append-rootfs | pad-rootfs | pad-to 128k | mkfwimage XS2 -v XS2.ar2316
|
|
|
|
endef
|
|
|
|
TARGET_DEVICES += ubnt2
|
|
|
|
|
|
|
|
define Device/ubnt5
|
|
|
|
DEVICE_TITLE := Ubiquiti XS5
|
|
|
|
IMAGE/sysupgrade.bin := append-rootfs | pad-rootfs | pad-to 128k | mkfwimage XS5 -v XS5.ar2313
|
|
|
|
endef
|
|
|
|
TARGET_DEVICES += ubnt5
|
|
|
|
|
|
|
|
define Device/np25g
|
|
|
|
DEVICE_TITLE := np25g
|
|
|
|
KERNEL := gzip-kernel
|
|
|
|
IMAGE/sysupgrade.bin := append-rootfs | pad-rootfs | pad-to 128k | mkmylofw np25g
|
|
|
|
endef
|
|
|
|
#TARGET_DEVICES += np25g
|
|
|
|
|
|
|
|
define Device/wpe53g
|
|
|
|
DEVICE_TITLE := wpe53g
|
|
|
|
KERNEL := gzip-kernel
|
|
|
|
IMAGE/sysupgrade.bin := append-rootfs | pad-rootfs | pad-to 128k | mkmylofw wpe53g
|
2006-12-25 08:05:48 +00:00
|
|
|
endef
|
2016-05-16 07:52:24 +00:00
|
|
|
#TARGET_DEVICES += wpe53g
|
2006-12-25 08:05:48 +00:00
|
|
|
|
|
|
|
$(eval $(call BuildImage))
|