2 # Copyright (C) 2007-2008 OpenWrt.org
4 # This is free software, licensed under the GNU General Public License v2.
5 # See /LICENSE for more information.
8 ifneq ($(__target_inc
),1)
14 # Default packages - the really basic set
15 DEFAULT_PACKAGES
:=base-files libc libgcc busybox dropbear mtd uci opkg hotplug2
17 DEFAULT_PACKAGES.router
:=dnsmasq iptables ppp ppp-mod-pppoe kmod-ipt-nathelper firewall
18 DEFAULT_PACKAGES.bootloader
:=
20 # Add device specific packages
21 DEFAULT_PACKAGES
+= $(DEFAULT_PACKAGES.
$(DEVICE_TYPE
))
27 target_conf
=$(subst .
,_
,$(subst -,_
,$(subst /,_
,$(1))))
29 PLATFORM_DIR
:=$(TOPDIR
)/target
/linux
/$(BOARD
)
30 SUBTARGET
:=$(strip $(foreach subdir
,$(patsubst $(PLATFORM_DIR
)/%/target.mk
,%,$(wildcard $(PLATFORM_DIR
)/*/target.mk
)),$(if
$(CONFIG_TARGET_
$(call target_conf
,$(BOARD
)_
$(subdir
))),$(subdir
))))
32 PLATFORM_DIR
:=${CURDIR}
35 TARGETID
:=$(BOARD
)$(if
$(SUBTARGET
),/$(SUBTARGET
))
36 PLATFORM_SUBDIR
:=$(PLATFORM_DIR
)$(if
$(SUBTARGET
),/$(SUBTARGET
))
38 ifneq ($(TARGET_BUILD
),1)
40 include $(PLATFORM_DIR
)/Makefile
41 ifneq ($(PLATFORM_DIR
),$(PLATFORM_SUBDIR
))
42 include $(PLATFORM_SUBDIR
)/target.mk
47 -include .
/$(SUBTARGET
)/target.mk
51 define Profile
/Default
58 $(eval
$(call Profile
/Default
))
59 $(eval
$(call Profile
/$(1)))
60 $(eval
$(call shexport
,Profile
/$(1)/Config
))
61 $(eval
$(call shexport
,Profile
/$(1)/Description
))
63 echo
"Target-Profile: $(1)"; \
64 echo
"Target-Profile-Name: $(NAME)"; \
65 echo
"Target-Profile-Packages: $(PACKAGES)"; \
66 if
[ -f .
/config
/profile-
$(1) ]; then \
67 echo
"Target-Profile-Kconfig: yes"; \
69 echo
"Target-Profile-Config: "; \
70 $(SH_FUNC
) getvar
"$(call shvar,Profile/$(1)/Config)"; \
72 echo
"Target-Profile-Description:"; \
73 $(SH_FUNC
) getvar
"$(call shvar,Profile/$(1)/Description)"; \
76 ifeq ($(CONFIG_TARGET_
$(call target_conf
,$(BOARD
)_
$(if
$(SUBTARGET
),$(SUBTARGET
)_
)$(1))),y
)
82 ifneq ($(PLATFORM_DIR
),$(PLATFORM_SUBDIR
))
83 define IncludeProfiles
84 -include $(PLATFORM_DIR
)/profiles
/*.mk
85 -include $(PLATFORM_SUBDIR
)/profiles
/*.mk
88 define IncludeProfiles
89 -include $(PLATFORM_DIR
)/profiles
/*.mk
93 ifeq ($(TARGET_BUILD
),1)
94 $(eval
$(call IncludeProfiles
))
97 $(eval
$(call IncludeProfiles
))
101 $(eval
$(call shexport
,Target
/Description
))
103 ifneq ($(TARGET_BUILD
)$(if
$(DUMP
),,1),)
104 include $(INCLUDE_DIR
)/kernel-version.mk
107 GENERIC_PLATFORM_DIR
:= $(TOPDIR
)/target
/linux
/generic
108 GENERIC_PATCH_DIR
:= $(GENERIC_PLATFORM_DIR
)/patches
$(if
$(wildcard $(GENERIC_PLATFORM_DIR
)/patches-
$(KERNEL_PATCHVER
)),-$(KERNEL_PATCHVER
))
109 GENERIC_FILES_DIR
:= $(foreach dir,$(wildcard $(GENERIC_PLATFORM_DIR
)/files
$(GENERIC_PLATFORM_DIR
)/files-
$(KERNEL_PATCHVER
)),"$(dir)")
111 __config_name_list
= $(1)/config-
$(KERNEL_PATCHVER
) $(1)/config-default
112 __config_list
= $(firstword $(wildcard $(call __config_name_list
,$(1))))
113 find_kernel_config
=$(if
$(__config_list
),$(__config_list
),$(lastword
$(__config_name_list
)))
115 GENERIC_LINUX_CONFIG
:=$(call find_kernel_config
,$(GENERIC_PLATFORM_DIR
))
116 LINUX_TARGET_CONFIG
:=$(call find_kernel_config
,$(PLATFORM_DIR
))
117 ifneq ($(PLATFORM_DIR
),$(PLATFORM_SUBDIR
))
118 LINUX_SUBTARGET_CONFIG
:=$(call find_kernel_config
,$(PLATFORM_SUBDIR
))
121 # config file list used for compiling
122 LINUX_KCONFIG_LIST
:= $(wildcard $(GENERIC_LINUX_CONFIG
) $(LINUX_TARGET_CONFIG
) $(LINUX_SUBTARGET_CONFIG
) $(TOPDIR
)/env
/kernel-config
)
124 # default config list for reconfiguring
125 # defaults to subtarget if subtarget exists and target does not
126 # defaults to target otherwise
127 ifeq ($(if
$(wildcard $(LINUX_TARGET_CONFIG
)),,$(if
$(LINUX_SUBTARGET_CONFIG
),1)),1)
128 LINUX_RECONFIG_LIST
:= $(wildcard $(GENERIC_LINUX_CONFIG
) $(LINUX_TARGET_CONFIG
) $(LINUX_SUBTARGET_CONFIG
))
129 LINUX_RECONFIG_TARGET
:= $(LINUX_SUBTARGET_CONFIG
)
131 LINUX_RECONFIG_LIST
:= $(wildcard $(GENERIC_LINUX_CONFIG
) $(LINUX_TARGET_CONFIG
))
132 LINUX_RECONFIG_TARGET
:= $(LINUX_TARGET_CONFIG
)
135 # select the config file to be cahnged by kernel_menuconfig/kernel_oldconfig
136 ifeq ($(CONFIG_TARGET
),platform
)
137 LINUX_RECONFIG_LIST
:= $(wildcard $(GENERIC_LINUX_CONFIG
) $(LINUX_TARGET_CONFIG
))
138 LINUX_RECONFIG_TARGET
:= $(LINUX_TARGET_CONFIG
)
140 ifeq ($(CONFIG_TARGET
),subtarget
)
141 ifeq ($(wildcard $(LINUX_SUBTARGET_CONFIG
)),)
142 $(error Subtarget not available
, cannot reconfigure
)
144 LINUX_RECONFIG_LIST
:= $(wildcard $(GENERIC_LINUX_CONFIG
) $(LINUX_TARGET_CONFIG
) $(LINUX_SUBTARGET_CONFIG
))
145 LINUX_RECONFIG_TARGET
:= $(LINUX_SUBTARGET_CONFIG
)
148 ifeq ($(CONFIG_TARGET
),env
)
149 LINUX_RECONFIG_LIST
:= $(LINUX_KCONFIG_LIST
)
150 LINUX_RECONFIG_TARGET
:= $(TOPDIR
)/env
/kernel-config
153 __linux_confcmd
= $(SCRIPT_DIR
)/kconfig.pl
$(2) $(patsubst %,+,$(wordlist
2,9999,$(1))) $(1)
155 LINUX_CONF_CMD
= $(call __linux_confcmd
,$(LINUX_KCONFIG_LIST
),)
156 LINUX_RECONF_CMD
= $(call __linux_confcmd
,$(LINUX_RECONFIG_LIST
),)
157 LINUX_RECONF_DIFF
= $(call __linux_confcmd
,$(filter-out $(LINUX_RECONFIG_TARGET
),$(LINUX_RECONFIG_LIST
)),'>')
160 BuildTarget
=$(BuildTargets
/DumpCurrent
)
163 TMP_CONFIG
:=$(TMP_DIR
)/.kconfig-
$(call target_conf
,$(TARGETID
))
164 $(TMP_CONFIG
): $(LINUX_KCONFIG_LIST
)
165 $(LINUX_CONF_CMD
) > $@ ||
rm -f
$@
166 -include $(TMP_CONFIG
)
167 .SILENT
: $(TMP_CONFIG
)
168 .PRECIOUS
: $(TMP_CONFIG
)
170 ifneq ($(CONFIG_GENERIC_GPIO
),)
173 ifneq ($(CONFIG_PCI
),)
176 ifneq ($(CONFIG_PCIEPORTBUS
),)
179 ifneq ($(CONFIG_USB
)$(CONFIG_USB_SUPPORT
),)
180 ifneq ($(CONFIG_USB_ARCH_HAS_HCD
)$(CONFIG_USB_EHCI_HCD
),)
184 ifneq ($(CONFIG_PCMCIA
)$(CONFIG_PCCARD
),)
187 ifneq ($(CONFIG_VGA_CONSOLE
)$(CONFIG_FB
),)
192 FEATURES
:=$(sort $(FEATURES
))
194 DEFAULT_CFLAGS_i386
=-O2
-pipe
-march
=i486
-fno-caller-saves
195 DEFAULT_CFLAGS_x86_64
=-O2
-pipe
-march
=athlon64
-fno-caller-saves
196 DEFAULT_CFLAGS_m68k
=-Os
-pipe
-mcfv4e
-fno-caller-saves
197 DEFAULT_CFLAGS_mips
=-Os
-pipe
-mips32
-mtune
=mips32
-fno-caller-saves
198 DEFAULT_CFLAGS_mipsel
=$(DEFAULT_CFLAGS_mips
)
199 DEFAULT_CFLAGS_mips64
=-Os
-pipe
-mips64
-mtune
=mips64
-mabi
=64 -fno-caller-saves
200 DEFAULT_CFLAGS_mips64el
=$(DEFAULT_CFLAGS_mips64
)
201 DEFAULT_CFLAGS_sparc
=-Os
-pipe
-mcpu
=ultrasparc
-fno-caller-saves
202 DEFAULT_CFLAGS_arm
=-Os
-pipe
-march
=armv5te
-mtune
=xscale
-fno-caller-saves
203 DEFAULT_CFLAGS_armeb
=$(DEFAULT_CFLAGS_arm
)
204 DEFAULT_CFLAGS
=$(if
$(DEFAULT_CFLAGS_
$(ARCH
)),$(DEFAULT_CFLAGS_
$(ARCH
)),-Os
-pipe
-fno-caller-saves
)
207 define BuildTargets
/DumpCurrent
210 @echo
'Target: $(TARGETID)'; \
211 echo
'Target-Board: $(BOARD)'; \
212 echo
'Target-Kernel: $(KERNEL)'; \
213 echo
'Target-Name: $(BOARDNAME)$(if $(SUBTARGETS),$(if $(SUBTARGET),))'; \
214 echo
'Target-Path: $(subst $(TOPDIR)/,,$(PWD))'; \
215 echo
'Target-Arch: $(ARCH)'; \
216 echo
'Target-Arch-Packages: $(if $(ARCH_PACKAGES),$(ARCH_PACKAGES),$(BOARD))'; \
217 echo
'Target-Features: $(FEATURES)'; \
218 echo
'Target-Depends: $(DEPENDS)'; \
219 echo
'Target-Optimization: $(if $(CFLAGS),$(CFLAGS),$(DEFAULT_CFLAGS))'; \
220 echo
'Linux-Version: $(LINUX_VERSION)'; \
221 echo
'Linux-Release: $(LINUX_RELEASE)'; \
222 echo
'Linux-Kernel-Arch: $(LINUX_KARCH)'; \
223 echo
'Target-Description:'; \
224 $(SH_FUNC
) getvar
$(call shvar
,Target
/Description
); \
226 echo
'Default-Packages: $(DEFAULT_PACKAGES)'; \
228 $(if
$(SUBTARGET
),,@
$(foreach SUBTARGET
,$(SUBTARGETS
),$(SUBMAKE
) -s DUMP
=1 SUBTARGET
=$(SUBTARGET
); ))
231 include $(INCLUDE_DIR
)/kernel.mk
232 ifeq ($(TARGET_BUILD
),1)
233 include $(INCLUDE_DIR
)/kernel-build.mk
234 BuildTarget?
=$(BuildKernel
)