Home
last modified time | relevance | path

Searched hist:"331 b45fb70e6c2355a28f1a11d63075a873bb1d5" (Results 1 – 1 of 1) sorted by relevance

/rk3399_rockchip-uboot/
H A DMakefile331b45fb70e6c2355a28f1a11d63075a873bb1d5 Tue Feb 25 10:26:47 UTC 2014 Masahiro Yamada <yamada.m@jp.panasonic.com> kbuild: Fix a false error of generic board support

Before this commit, make terminated with an error
where is shouldn't under some condition.

This bug happened when we built a board unsupporting
generic board right after building with generic board.

For example, the following sequence failed.
(harmony uses generic board but microblaze-generic does not
support it)

$ make harmony_config
Configuring for harmony board...
$ make CROSS_COMPILE=arm-linux-gnueabi-
[ Build succeed ]
$ make microblaze-generic_config
Configuring for microblaze-generic board...
$ make CROSS_COMPILE=microblaze-linux-
Makefile:488: *** Your architecture does not support generic board.
Please undefined CONFIG_SYS_GENERIC_BOARD in your board config file. Stop.

We had to do "make clean" before building the microblaze board.

This commit fixes this unconvenience.

Move generic board sanity check to "prepare1" target,
which is run after generation of include/autoconf.mk.

Signed-off-by: Masahiro Yamada <yamada.m@jp.panasonic.com>