X-Git-Url: http://git.rohieb.name/openwrt.git/blobdiff_plain/8d879e2449d724c85dd01d50210601fda40298f5..e310d5b786eb4c7e461f0aa609b3d3642db95465:/target/linux/at91/image/Makefile diff --git a/target/linux/at91/image/Makefile b/target/linux/at91/image/Makefile index 711b93253..c50732c0c 100644 --- a/target/linux/at91/image/Makefile +++ b/target/linux/at91/image/Makefile @@ -21,11 +21,16 @@ define Image/Prepare endef define Image/BuildKernel - cp $(LINUX_DIR)/arch/arm/boot/uImage $(BIN_DIR)/$(IMG_PREFIX)-uImage + 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 \ + $(INSTALL_BIN) $(BIN_DIR)/$(IMG_PREFIX)-uImage $(TARGET_DIR)/uImage ; \ + fi endef define Image/Build $(call Image/Build/$(1),$(1)) + cp $(KDIR)/root.$(1) $(BIN_DIR)/$(IMG_PREFIX)-root.$(1) endef $(eval $(call BuildImage))