3eb676240f
Add new subtarget nand with UBI/UBIFS including GLUEBI and squashfs. This target will be used for NAND based router which make use of UBI (and maybe UBIFS later on) in order to provide proper NAND support. Signed-off-by: Stefan Agner <stefan@agner.ch> [juhosg: - tweak target.mk: change BOARDNAME variable, improve Target/Description, remove targz and ubifs from FEATURES and add broken flag, - optimize kernel configuration: disable ubifs, it is not used yet, disable unused MTD options, disable SPI support disable unused network drivers, tune kernel command line, - remove image/ubinize.cfg, it will be in a follow-up patch - move profile modifications into a separate patch] Signed-off-by: Gabor Juhos <juhosg@openwrt.org> SVN-Revision: 38646
25 lines
572 B
Makefile
25 lines
572 B
Makefile
#
|
|
# Copyright (C) 2008-2011 OpenWrt.org
|
|
#
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
# See /LICENSE for more information.
|
|
#
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
ARCH:=mips
|
|
BOARD:=ar71xx
|
|
BOARDNAME:=Atheros AR7xxx/AR9xxx
|
|
FEATURES:=mips16
|
|
CPU_TYPE=34kc
|
|
SUBTARGETS:=generic nand mikrotik
|
|
|
|
LINUX_VERSION:=3.10.17
|
|
|
|
include $(INCLUDE_DIR)/target.mk
|
|
|
|
DEFAULT_PACKAGES += \
|
|
kmod-leds-gpio kmod-gpio-button-hotplug swconfig \
|
|
kmod-ledtrig-default-on kmod-ledtrig-timer kmod-ledtrig-netdev \
|
|
kmod-ath9k wpad-mini uboot-envtools
|
|
|
|
$(eval $(call BuildTarget))
|