diff options
author | Luis Araneda <luaraneda@gmail.com> | 2018-05-13 14:05:38 -0400 |
---|---|---|
committer | John Crispin <john@phrozen.org> | 2018-06-07 09:00:49 +0200 |
commit | dfac3ffd07f5a99b1605aec5a6b24f389a1a8827 (patch) | |
tree | b938158c55768ca6e648f43a97c0e9c2a6d35c25 /target/linux/zynq/Makefile | |
parent | c335649629e641209a3539209defffeea090ad8f (diff) | |
download | upstream-dfac3ffd07f5a99b1605aec5a6b24f389a1a8827.tar.gz upstream-dfac3ffd07f5a99b1605aec5a6b24f389a1a8827.tar.bz2 upstream-dfac3ffd07f5a99b1605aec5a6b24f389a1a8827.zip |
zynq: reworked image creation process
After commit a1248da (zynq: convert to new image build code),
all boards, became unbootable, entering into a boot loop.
Replace the compressed kernel zImage by an uncompressed Image,
which is compressed after with gzip. Also, enable the creation
of an initramfs image by default.
Change images' filename to match the compatible string from the
respective .dts file (<vendor>_<model>). Also, use the shared
mkits.sh script and remove the target specific one.
Fixes: FS#1204
Run-tested: ZedBoard
Signed-off-by: Luis Araneda <luaraneda@gmail.com>
Diffstat (limited to 'target/linux/zynq/Makefile')
-rw-r--r-- | target/linux/zynq/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/target/linux/zynq/Makefile b/target/linux/zynq/Makefile index 35598441fc..a8bbefccc7 100644 --- a/target/linux/zynq/Makefile +++ b/target/linux/zynq/Makefile @@ -9,7 +9,7 @@ include $(TOPDIR)/rules.mk ARCH:=arm BOARD:=zynq BOARDNAME:=Xilinx Zynq 7000 SoCs -FEATURES:=fpu gpio rtc usb usbgadget targz source-only +FEATURES:=fpu gpio rtc usb usbgadget ramdisk targz source-only CPU_TYPE:=cortex-a9 CPU_SUBTYPE:=neon MAINTAINER:=Jason Wu <jason.wu.misc@gmail.com> @@ -24,7 +24,7 @@ KERNEL_PATCHVER:=4.4 include $(INCLUDE_DIR)/target.mk -KERNELNAME:=zImage dtbs +KERNELNAME:=Image dtbs DEFAULT_PACKAGES += uboot-envtools |