2002-12-17 01:51:00 +00:00
|
|
|
#
|
2006-09-01 17:49:50 +00:00
|
|
|
# (C) Copyright 2002-2006
|
2002-12-17 01:51:00 +00:00
|
|
|
# Wolfgang Denk, DENX Software Engineering, wd@denx.de.
|
|
|
|
#
|
2013-07-08 07:37:19 +00:00
|
|
|
# SPDX-License-Identifier: GPL-2.0+
|
2002-12-17 01:51:00 +00:00
|
|
|
#
|
|
|
|
|
2014-02-04 08:24:45 +00:00
|
|
|
# fw_printenv is supposed to run on the target system, which means it should be
|
|
|
|
# built with cross tools. Although it may look weird, we only replace "HOSTCC"
|
|
|
|
# with "CC" here for the maximum code reuse of scripts/Makefile.host.
|
2017-03-13 08:43:16 +00:00
|
|
|
override HOSTCC = $(CC)
|
2014-02-04 08:24:45 +00:00
|
|
|
|
2010-11-10 13:11:21 +00:00
|
|
|
# Compile for a hosted environment on the target
|
kconfig: switch to Kconfig
This commit enables Kconfig.
Going forward, we use Kconfig for the board configuration.
mkconfig will never be used. Nor will include/config.mk be generated.
Kconfig must be adjusted for U-Boot because our situation is
a little more complicated than Linux Kernel.
We have to generate multiple boot images (Normal, SPL, TPL)
from one source tree.
Each image needs its own configuration input.
Usage:
Run "make <board>_defconfig" to do the board configuration.
It will create the .config file and additionally spl/.config, tpl/.config
if SPL, TPL is enabled, respectively.
You can use "make config", "make menuconfig" etc. to create
a new .config or modify the existing one.
Use "make spl/config", "make spl/menuconfig" etc. for spl/.config
and do likewise for tpl/.config file.
The generic syntax of configuration targets for SPL, TPL is:
<target_image>/<config_command>
Here, <target_image> is either 'spl' or 'tpl'
<config_command> is 'config', 'menuconfig', 'xconfig', etc.
When the configuration is done, run "make".
(Or "make <board>_defconfig all" will do the configuration and build
in one time.)
For futher information of how Kconfig works in U-Boot,
please read the comment block of scripts/multiconfig.py.
By the way, there is another item worth remarking here:
coexistence of Kconfig and board herder files.
Prior to Kconfig, we used C headers to define a set of configs.
We expect a very long term to migrate from C headers to Kconfig.
Two different infractructure must coexist in the interim.
In our former configuration scheme, include/autoconf.mk was generated
for use in makefiles.
It is still generated under include/, spl/include/, tpl/include/ directory
for the Normal, SPL, TPL image, respectively.
Signed-off-by: Masahiro Yamada <yamada.m@jp.panasonic.com>
Acked-by: Simon Glass <sjg@chromium.org>
2014-07-30 05:08:17 +00:00
|
|
|
HOST_EXTRACFLAGS = $(patsubst -I%,-idirafter%, $(filter -I%, $(UBOOTINCLUDE))) \
|
2014-03-11 02:05:20 +00:00
|
|
|
-idirafter $(srctree)/tools/env \
|
2012-10-03 09:38:46 +00:00
|
|
|
-DUSE_HOSTCC \
|
|
|
|
-DTEXT_BASE=$(TEXT_BASE)
|
2006-09-01 17:49:50 +00:00
|
|
|
|
2007-11-27 09:23:20 +00:00
|
|
|
ifeq ($(MTD_VERSION),old)
|
2014-02-04 08:24:10 +00:00
|
|
|
HOST_EXTRACFLAGS += -DMTD_OLD
|
2007-11-27 09:23:20 +00:00
|
|
|
endif
|
|
|
|
|
2014-02-04 08:24:45 +00:00
|
|
|
always := fw_printenv
|
2014-08-27 12:29:00 +00:00
|
|
|
hostprogs-y := fw_printenv
|
2002-12-17 01:51:00 +00:00
|
|
|
|
2015-10-30 13:57:04 +00:00
|
|
|
lib-y += fw_env.o \
|
2014-02-04 08:24:10 +00:00
|
|
|
crc32.o ctype.o linux_string.o \
|
2014-03-05 18:59:52 +00:00
|
|
|
env_attr.o env_flags.o aes.o
|
2014-02-04 08:24:45 +00:00
|
|
|
|
2015-10-30 13:57:04 +00:00
|
|
|
fw_printenv-objs := fw_env_main.o $(lib-y)
|
|
|
|
|
2014-08-27 12:29:00 +00:00
|
|
|
quiet_cmd_crosstools_strip = STRIP $^
|
|
|
|
cmd_crosstools_strip = $(STRIP) $^; touch $@
|
2014-02-04 08:24:45 +00:00
|
|
|
|
2014-08-27 12:29:00 +00:00
|
|
|
$(obj)/.strip: $(obj)/fw_printenv
|
|
|
|
$(call cmd,crosstools_strip)
|
|
|
|
|
|
|
|
always += .strip
|