2013-08-04 13:54:32 +00:00
|
|
|
#
|
|
|
|
# Copyright (C) 2009-2010 OpenWrt.org
|
|
|
|
#
|
|
|
|
# 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-15 07:44:34 +00:00
|
|
|
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
|
2016-09-08 12:46:49 +00:00
|
|
|
IMAGE/sysupgrade.tar/squashfs := append-rootfs | pad-extra 128k | sysupgrade-tar rootfs=$$$$@
|
2016-07-29 13:05:51 +00:00
|
|
|
IMAGE/sysupgrade.tar := sysupgrade-tar
|
2015-05-29 11:28:20 +00:00
|
|
|
endef
|
|
|
|
|
2016-05-15 07:44:34 +00:00
|
|
|
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 $@
|
2013-08-04 13:54:32 +00:00
|
|
|
endef
|
|
|
|
|
2016-05-15 07:44:34 +00:00
|
|
|
define Device/generic
|
|
|
|
FILESYSTEMS := ext4
|
|
|
|
DEVICE_TITLE := Generic
|
2015-03-20 08:49:08 +00:00
|
|
|
endef
|
2016-05-15 07:44:34 +00:00
|
|
|
TARGET_DEVICES += generic
|
2015-03-20 08:49:08 +00:00
|
|
|
|
2016-09-08 12:46:49 +00:00
|
|
|
ER_CMDLINE:=-mtdparts=phys_mapped_flash:640k(boot0)ro,640k(boot1)ro,64k(eeprom)ro root=/dev/mmcblk0p2 rootfstype=squashfs,ext4 rootwait
|
2016-05-15 07:44:34 +00:00
|
|
|
define Device/er
|
|
|
|
CMDLINE := $(ER_CMDLINE)
|
|
|
|
DEVICE_TITLE := Ubiquiti EdgeRouter
|
2015-03-20 08:49:08 +00:00
|
|
|
endef
|
2016-05-15 07:44:34 +00:00
|
|
|
TARGET_DEVICES += er
|
2015-03-20 08:49:08 +00:00
|
|
|
|
2017-01-18 09:45:23 +00:00
|
|
|
ERLITE_CMDLINE:=-mtdparts=phys_mapped_flash:512k(boot0)ro,512k(boot1)ro,64k(eeprom)ro root=/dev/sda2 rootfstype=squashfs,ext4 rootwait
|
2016-05-15 07:44:34 +00:00
|
|
|
define Device/erlite
|
|
|
|
CMDLINE := $(ERLITE_CMDLINE)
|
|
|
|
DEVICE_TITLE := Ubiquiti EdgeRouter Lite
|
2013-08-04 13:54:32 +00:00
|
|
|
endef
|
2016-05-15 07:44:34 +00:00
|
|
|
TARGET_DEVICES += erlite
|
2013-08-04 13:54:32 +00:00
|
|
|
|
|
|
|
$(eval $(call BuildImage))
|