From mboxrd@z Thu Jan 1 00:00:00 1970 From: Masahiro Yamada Date: Tue, 25 Feb 2014 08:59:34 +0900 Subject: [U-Boot] [PATCH 1/2] kbuild: Fix a false error of generic board support In-Reply-To: <1393247506-16583-2-git-send-email-yamada.m@jp.panasonic.com> References: <1393247506-16583-1-git-send-email-yamada.m@jp.panasonic.com> <1393247506-16583-2-git-send-email-yamada.m@jp.panasonic.com> Message-ID: <20140225085934.104F.AA925319@jp.panasonic.com> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de Hello Tom, On Mon, 24 Feb 2014 22:11:45 +0900 Masahiro Yamada wrote: > Before this commit, make terminated with an error > where it 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 mrproper" before building the microblaze board. I've noticed a mistake here in commit log. "make mrproper" should be "make clean". So, correct description is: We had to do "make clean" before building the microblaze board. If possible, could you directly edit the commit log on your queue? Or better to submit v2 ? Best Regards Masahiro Yamada