2007-10-03 19:22:51 +00:00
|
|
|
#
|
2008-05-08 22:57:12 +00:00
|
|
|
# Copyright (C) 2007-2008 OpenWrt.org
|
2006-06-27 00:35:46 +00:00
|
|
|
#
|
|
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
|
|
# See /LICENSE for more information.
|
|
|
|
#
|
2006-06-21 14:02:29 +00:00
|
|
|
|
2007-11-14 23:11:07 +00:00
|
|
|
ifneq ($(__target_inc),1)
|
|
|
|
__target_inc=1
|
|
|
|
|
|
|
|
# default device type
|
|
|
|
DEVICE_TYPE?=router
|
|
|
|
|
|
|
|
# Default packages - the really basic set
|
2011-03-07 02:49:24 +00:00
|
|
|
DEFAULT_PACKAGES:=base-files libc libgcc busybox dropbear mtd uci opkg hotplug2
|
2007-11-14 23:11:07 +00:00
|
|
|
# For router targets
|
2008-11-11 03:02:26 +00:00
|
|
|
DEFAULT_PACKAGES.router:=dnsmasq iptables ppp ppp-mod-pppoe kmod-ipt-nathelper firewall
|
2009-04-16 10:40:15 +00:00
|
|
|
DEFAULT_PACKAGES.bootloader:=
|
2007-11-14 23:11:07 +00:00
|
|
|
|
|
|
|
# Add device specific packages
|
|
|
|
DEFAULT_PACKAGES += $(DEFAULT_PACKAGES.$(DEVICE_TYPE))
|
|
|
|
|
2011-03-11 08:57:37 +00:00
|
|
|
# Add metapackages for menu groups that a) don't build or install anything, and b) prevent other packages from
|
|
|
|
# appearing in the package list if they are not selected
|
|
|
|
DEFAULT_PACKAGES += coreutils
|
|
|
|
|
2007-09-08 19:55:42 +00:00
|
|
|
ifneq ($(DUMP),)
|
|
|
|
all: dumpinfo
|
|
|
|
endif
|
|
|
|
|
|
|
|
target_conf=$(subst .,_,$(subst -,_,$(subst /,_,$(1))))
|
|
|
|
ifeq ($(DUMP),)
|
|
|
|
PLATFORM_DIR:=$(TOPDIR)/target/linux/$(BOARD)
|
|
|
|
SUBTARGET:=$(strip $(foreach subdir,$(patsubst $(PLATFORM_DIR)/%/target.mk,%,$(wildcard $(PLATFORM_DIR)/*/target.mk)),$(if $(CONFIG_TARGET_$(call target_conf,$(BOARD)_$(subdir))),$(subdir))))
|
|
|
|
else
|
|
|
|
PLATFORM_DIR:=${CURDIR}
|
|
|
|
endif
|
|
|
|
|
|
|
|
TARGETID:=$(BOARD)$(if $(SUBTARGET),/$(SUBTARGET))
|
|
|
|
PLATFORM_SUBDIR:=$(PLATFORM_DIR)$(if $(SUBTARGET),/$(SUBTARGET))
|
|
|
|
|
|
|
|
ifneq ($(TARGET_BUILD),1)
|
2009-03-03 13:54:29 +00:00
|
|
|
ifndef DUMP
|
|
|
|
include $(PLATFORM_DIR)/Makefile
|
|
|
|
ifneq ($(PLATFORM_DIR),$(PLATFORM_SUBDIR))
|
|
|
|
include $(PLATFORM_SUBDIR)/target.mk
|
|
|
|
endif
|
2007-09-08 19:55:42 +00:00
|
|
|
endif
|
|
|
|
else
|
|
|
|
ifneq ($(SUBTARGET),)
|
|
|
|
-include ./$(SUBTARGET)/target.mk
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
|
|
|
|
define Profile/Default
|
|
|
|
NAME:=
|
|
|
|
PACKAGES:=
|
|
|
|
endef
|
|
|
|
|
2007-11-14 23:11:07 +00:00
|
|
|
ifndef Profile
|
2007-09-08 19:55:42 +00:00
|
|
|
define Profile
|
|
|
|
$(eval $(call Profile/Default))
|
|
|
|
$(eval $(call Profile/$(1)))
|
|
|
|
$(eval $(call shexport,Profile/$(1)/Config))
|
|
|
|
$(eval $(call shexport,Profile/$(1)/Description))
|
|
|
|
DUMPINFO += \
|
|
|
|
echo "Target-Profile: $(1)"; \
|
|
|
|
echo "Target-Profile-Name: $(NAME)"; \
|
|
|
|
echo "Target-Profile-Packages: $(PACKAGES)"; \
|
|
|
|
if [ -f ./config/profile-$(1) ]; then \
|
|
|
|
echo "Target-Profile-Kconfig: yes"; \
|
|
|
|
fi; \
|
|
|
|
echo "Target-Profile-Config: "; \
|
2010-08-19 12:49:37 +00:00
|
|
|
$(SH_FUNC) getvar "$(call shvar,Profile/$(1)/Config)"; \
|
2007-09-08 19:55:42 +00:00
|
|
|
echo "@@"; \
|
|
|
|
echo "Target-Profile-Description:"; \
|
2010-08-19 12:49:37 +00:00
|
|
|
$(SH_FUNC) getvar "$(call shvar,Profile/$(1)/Description)"; \
|
2007-09-08 19:55:42 +00:00
|
|
|
echo "@@"; \
|
|
|
|
echo;
|
2007-09-08 20:04:43 +00:00
|
|
|
ifeq ($(CONFIG_TARGET_$(call target_conf,$(BOARD)_$(if $(SUBTARGET),$(SUBTARGET)_)$(1))),y)
|
2007-09-08 19:55:42 +00:00
|
|
|
PROFILE=$(1)
|
2007-03-02 23:13:52 +00:00
|
|
|
endif
|
|
|
|
endef
|
2007-11-14 23:11:07 +00:00
|
|
|
endif
|
2007-03-02 23:13:52 +00:00
|
|
|
|
2007-10-03 19:22:51 +00:00
|
|
|
ifneq ($(PLATFORM_DIR),$(PLATFORM_SUBDIR))
|
|
|
|
define IncludeProfiles
|
|
|
|
-include $(PLATFORM_DIR)/profiles/*.mk
|
2007-09-28 01:23:56 +00:00
|
|
|
-include $(PLATFORM_SUBDIR)/profiles/*.mk
|
2007-10-03 19:22:51 +00:00
|
|
|
endef
|
|
|
|
else
|
|
|
|
define IncludeProfiles
|
|
|
|
-include $(PLATFORM_DIR)/profiles/*.mk
|
|
|
|
endef
|
|
|
|
endif
|
|
|
|
|
|
|
|
ifeq ($(TARGET_BUILD),1)
|
|
|
|
$(eval $(call IncludeProfiles))
|
|
|
|
else
|
|
|
|
ifeq ($(DUMP),)
|
|
|
|
$(eval $(call IncludeProfiles))
|
2007-09-28 01:23:56 +00:00
|
|
|
endif
|
2007-09-08 20:04:43 +00:00
|
|
|
endif
|
2007-09-08 19:55:42 +00:00
|
|
|
|
2007-09-08 20:04:43 +00:00
|
|
|
$(eval $(call shexport,Target/Description))
|
2007-09-08 19:55:42 +00:00
|
|
|
|
2009-03-03 13:54:29 +00:00
|
|
|
ifneq ($(TARGET_BUILD)$(if $(DUMP),,1),)
|
|
|
|
include $(INCLUDE_DIR)/kernel-version.mk
|
|
|
|
endif
|
2007-09-08 19:55:42 +00:00
|
|
|
|
2010-06-26 20:42:58 +00:00
|
|
|
GENERIC_PLATFORM_DIR := $(TOPDIR)/target/linux/generic
|
2009-03-03 14:55:53 +00:00
|
|
|
GENERIC_PATCH_DIR := $(GENERIC_PLATFORM_DIR)/patches$(if $(wildcard $(GENERIC_PLATFORM_DIR)/patches-$(KERNEL_PATCHVER)),-$(KERNEL_PATCHVER))
|
2008-10-18 21:43:30 +00:00
|
|
|
GENERIC_FILES_DIR := $(foreach dir,$(wildcard $(GENERIC_PLATFORM_DIR)/files $(GENERIC_PLATFORM_DIR)/files-$(KERNEL_PATCHVER)),"$(dir)")
|
2007-09-08 19:55:42 +00:00
|
|
|
|
2007-09-16 14:09:57 +00:00
|
|
|
GENERIC_LINUX_CONFIG?=$(firstword $(wildcard $(GENERIC_PLATFORM_DIR)/config-$(KERNEL_PATCHVER) $(GENERIC_PLATFORM_DIR)/config-default))
|
2008-06-13 15:28:31 +00:00
|
|
|
LINUX_CONFIG?=$(firstword $(wildcard $(foreach subdir,$(PLATFORM_DIR) $(PLATFORM_SUBDIR),$(subdir)/config-$(KERNEL_PATCHVER) $(subdir)/config-default)) $(PLATFORM_DIR)/config-$(KERNEL_PATCHVER))
|
2009-11-11 01:25:06 +00:00
|
|
|
LINUX_SUBCONFIG?=$(if $(SHARED_LINUX_CONFIG),,$(firstword $(wildcard $(PLATFORM_SUBDIR)/config-$(KERNEL_PATCHVER) $(PLATFORM_SUBDIR)/config-default)))
|
2007-09-08 19:55:42 +00:00
|
|
|
ifeq ($(LINUX_CONFIG),$(LINUX_SUBCONFIG))
|
|
|
|
LINUX_SUBCONFIG:=
|
|
|
|
endif
|
2009-04-23 14:55:02 +00:00
|
|
|
LINUX_CONFCMD=$(if $(LINUX_CONFIG), \
|
2009-05-31 16:15:47 +00:00
|
|
|
$(if $(GENERIC_LINUX_CONFIG),,$(error The generic kernel config for your kernel version is missing)) \
|
|
|
|
$(if $(LINUX_CONFIG),,$(error The target kernel config for your kernel version is missing)) \
|
2009-04-23 14:55:02 +00:00
|
|
|
$(SCRIPT_DIR)/kconfig.pl \
|
|
|
|
+ $(GENERIC_LINUX_CONFIG) \
|
|
|
|
$(if $(LINUX_SUBCONFIG),+ $(LINUX_CONFIG) $(LINUX_SUBCONFIG),$(LINUX_CONFIG)), \
|
|
|
|
true)
|
2007-09-08 19:55:42 +00:00
|
|
|
|
|
|
|
ifeq ($(DUMP),1)
|
|
|
|
BuildTarget=$(BuildTargets/DumpCurrent)
|
|
|
|
|
|
|
|
ifneq ($(BOARD),)
|
|
|
|
TMP_CONFIG:=$(TMP_DIR)/.kconfig-$(call target_conf,$(TARGETID))
|
|
|
|
$(TMP_CONFIG): $(GENERIC_LINUX_CONFIG) $(LINUX_CONFIG) $(LINUX_SUBCONFIG)
|
|
|
|
$(LINUX_CONFCMD) > $@ || rm -f $@
|
|
|
|
-include $(TMP_CONFIG)
|
|
|
|
.SILENT: $(TMP_CONFIG)
|
|
|
|
.PRECIOUS: $(TMP_CONFIG)
|
|
|
|
|
2008-04-20 09:46:45 +00:00
|
|
|
ifneq ($(CONFIG_GENERIC_GPIO),)
|
|
|
|
FEATURES += gpio
|
|
|
|
endif
|
2007-09-08 19:55:42 +00:00
|
|
|
ifneq ($(CONFIG_PCI),)
|
|
|
|
FEATURES += pci
|
|
|
|
endif
|
2009-06-02 09:50:43 +00:00
|
|
|
ifneq ($(CONFIG_PCIEPORTBUS),)
|
|
|
|
FEATURES += pcie
|
|
|
|
endif
|
2008-09-08 11:33:00 +00:00
|
|
|
ifneq ($(CONFIG_USB)$(CONFIG_USB_SUPPORT),)
|
2010-03-25 15:04:44 +00:00
|
|
|
ifneq ($(CONFIG_USB_ARCH_HAS_HCD)$(CONFIG_USB_EHCI_HCD),)
|
|
|
|
FEATURES += usb
|
|
|
|
endif
|
2007-09-08 19:55:42 +00:00
|
|
|
endif
|
|
|
|
ifneq ($(CONFIG_PCMCIA)$(CONFIG_PCCARD),)
|
|
|
|
FEATURES += pcmcia
|
|
|
|
endif
|
2007-10-25 21:08:46 +00:00
|
|
|
ifneq ($(CONFIG_VGA_CONSOLE)$(CONFIG_FB),)
|
|
|
|
FEATURES += display
|
|
|
|
endif
|
2007-09-08 19:55:42 +00:00
|
|
|
|
|
|
|
# remove duplicates
|
|
|
|
FEATURES:=$(sort $(FEATURES))
|
|
|
|
endif
|
2009-03-14 03:17:06 +00:00
|
|
|
DEFAULT_CFLAGS_i386=-O2 -pipe -march=i486 -funit-at-a-time
|
|
|
|
DEFAULT_CFLAGS_x86_64=-O2 -pipe -march=athlon64 -funit-at-a-time
|
2009-06-21 18:34:07 +00:00
|
|
|
DEFAULT_CFLAGS_m68k=-Os -pipe -mcfv4e -funit-at-a-time
|
2009-03-14 03:17:06 +00:00
|
|
|
DEFAULT_CFLAGS_mips=-Os -pipe -mips32 -mtune=mips32 -funit-at-a-time
|
|
|
|
DEFAULT_CFLAGS_mipsel=$(DEFAULT_CFLAGS_mips)
|
2009-04-18 17:03:55 +00:00
|
|
|
DEFAULT_CFLAGS_mips64=-Os -pipe -mips64 -mtune=mips64 -mabi=64 -funit-at-a-time
|
|
|
|
DEFAULT_CFLAGS_mips64el=$(DEFAULT_CFLAGS_mips64)
|
2010-12-14 07:57:22 +00:00
|
|
|
DEFAULT_CFLAGS_sparc=-Os -pipe -mcpu=ultrasparc -funit-at-a-time
|
2009-03-14 03:17:06 +00:00
|
|
|
DEFAULT_CFLAGS_arm=-Os -pipe -march=armv5te -mtune=xscale -funit-at-a-time
|
|
|
|
DEFAULT_CFLAGS_armeb=$(DEFAULT_CFLAGS_arm)
|
|
|
|
DEFAULT_CFLAGS=$(if $(DEFAULT_CFLAGS_$(ARCH)),$(DEFAULT_CFLAGS_$(ARCH)),-Os -pipe -funit-at-a-time)
|
2007-09-08 19:55:42 +00:00
|
|
|
endif
|
|
|
|
|
|
|
|
define BuildTargets/DumpCurrent
|
2007-10-20 19:10:06 +00:00
|
|
|
.PHONY: dumpinfo
|
2007-09-08 19:55:42 +00:00
|
|
|
dumpinfo:
|
|
|
|
@echo 'Target: $(TARGETID)'; \
|
|
|
|
echo 'Target-Board: $(BOARD)'; \
|
|
|
|
echo 'Target-Kernel: $(KERNEL)'; \
|
2009-08-03 11:44:28 +00:00
|
|
|
echo 'Target-Name: $(BOARDNAME)$(if $(SUBTARGETS),$(if $(SUBTARGET),))'; \
|
2007-09-08 19:55:42 +00:00
|
|
|
echo 'Target-Path: $(subst $(TOPDIR)/,,$(PWD))'; \
|
|
|
|
echo 'Target-Arch: $(ARCH)'; \
|
2010-09-12 20:49:54 +00:00
|
|
|
echo 'Target-Arch-Packages: $(if $(ARCH_PACKAGES),$(ARCH_PACKAGES),$(BOARD))'; \
|
2007-09-08 19:55:42 +00:00
|
|
|
echo 'Target-Features: $(FEATURES)'; \
|
2007-10-05 21:44:43 +00:00
|
|
|
echo 'Target-Depends: $(DEPENDS)'; \
|
2009-03-14 03:17:06 +00:00
|
|
|
echo 'Target-Optimization: $(if $(CFLAGS),$(CFLAGS),$(DEFAULT_CFLAGS))'; \
|
2007-09-08 19:55:42 +00:00
|
|
|
echo 'Linux-Version: $(LINUX_VERSION)'; \
|
|
|
|
echo 'Linux-Release: $(LINUX_RELEASE)'; \
|
|
|
|
echo 'Linux-Kernel-Arch: $(LINUX_KARCH)'; \
|
|
|
|
echo 'Target-Description:'; \
|
2010-08-19 12:49:37 +00:00
|
|
|
$(SH_FUNC) getvar $(call shvar,Target/Description); \
|
2007-09-08 19:55:42 +00:00
|
|
|
echo '@@'; \
|
|
|
|
echo 'Default-Packages: $(DEFAULT_PACKAGES)'; \
|
|
|
|
$(DUMPINFO)
|
2007-10-20 19:10:06 +00:00
|
|
|
$(if $(SUBTARGET),,@$(foreach SUBTARGET,$(SUBTARGETS),$(SUBMAKE) -s DUMP=1 SUBTARGET=$(SUBTARGET); ))
|
2007-09-08 19:55:42 +00:00
|
|
|
endef
|
2007-03-02 23:36:59 +00:00
|
|
|
|
2007-09-08 19:55:42 +00:00
|
|
|
include $(INCLUDE_DIR)/kernel.mk
|
|
|
|
ifeq ($(TARGET_BUILD),1)
|
|
|
|
include $(INCLUDE_DIR)/kernel-build.mk
|
|
|
|
BuildTarget?=$(BuildKernel)
|
2007-01-10 21:52:28 +00:00
|
|
|
endif
|
2006-06-21 14:02:29 +00:00
|
|
|
|
2007-09-08 19:55:42 +00:00
|
|
|
endif #__target_inc
|