Ensure that the bin directory exists before copy the files

Signed-off-by: Claudio Mignanti <c.mignanti@gmail.com>

SVN-Revision: 31370
This commit is contained in:
Claudio Mignanti 2012-04-20 13:27:16 +00:00
parent 147646fc66
commit f50231aeb3
1 changed files with 2 additions and 0 deletions

View File

@ -21,6 +21,7 @@ define Image/Prepare
endef
define Image/BuildKernel
mkdir -p $(BIN_DIR)
mkimage -A arm -T kernel -C none -a 0x20008000 -e 0x20008000 -n linux-2.6 \
-d $(LINUX_DIR)/arch/arm/boot/Image $(BIN_DIR)/$(IMG_PREFIX)-uImage
if [ $(CONFIG_FLEXIBITY_ROOT) ]; then \
@ -30,6 +31,7 @@ endef
define Image/Build
$(call Image/Build/$(1),$(1))
mkdir -p $(BIN_DIR)
cp $(KDIR)/root.$(1) $(BIN_DIR)/$(IMG_PREFIX)-root.$(1)
endef