X-Git-Url: http://git.rohieb.name/openwrt.git/blobdiff_plain/783bcd886a16225250fb92e92554c63e477d4fe3..e310d5b786eb4c7e461f0aa609b3d3642db95465:/target/linux/at91/image/Makefile diff --git a/target/linux/at91/image/Makefile b/target/linux/at91/image/Makefile index 445c8696b..c50732c0c 100644 --- a/target/linux/at91/image/Makefile +++ b/target/linux/at91/image/Makefile @@ -21,7 +21,11 @@ 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