mirror of https://github.com/hak5/openwrt.git
Disable the use of lzma since the alchemy images are zlib compressed and there is a lot of space. Fix makefile error when "touching" zImage.flash.srec
SVN-Revision: 4108lede-17.01
parent
3a09c2404f
commit
d8088204a3
|
@ -7,28 +7,15 @@
|
||||||
include $(TOPDIR)/rules.mk
|
include $(TOPDIR)/rules.mk
|
||||||
include $(INCLUDE_DIR)/image.mk
|
include $(INCLUDE_DIR)/image.mk
|
||||||
|
|
||||||
LOADADDR = 0x8108c8f4 # RAM start + 16M
|
|
||||||
KERNEL_ENTRY = 0x80100000 # Default kernel entry in arch/mips/Makefile
|
|
||||||
RAMSIZE = 0x04000000 # 64MB
|
|
||||||
|
|
||||||
LOADER_MAKEOPTS= \
|
|
||||||
KDIR=$(KDIR) \
|
|
||||||
LOADADDR=$(LOADADDR) \
|
|
||||||
KERNEL_ENTRY=$(KERNEL_ENTRY) \
|
|
||||||
RAMSIZE=$(RAMSIZE)
|
|
||||||
|
|
||||||
define Build/Clean
|
define Build/Clean
|
||||||
$(MAKE) -C ../generic/lzma-loader $(LOADER_MAKEOPTS) clean
|
|
||||||
endef
|
endef
|
||||||
|
|
||||||
define Image/Prepare
|
define Image/Prepare
|
||||||
cat $(KDIR)/vmlinux | $(STAGING_DIR)/bin/lzma e -si -so -eos -lc1 -lp2 -pb2 > $(KDIR)/vmlinux.lzma
|
|
||||||
$(MAKE) -C ../generic/lzma-loader $(LOADER_MAKEOPTS) compile
|
|
||||||
endef
|
endef
|
||||||
|
|
||||||
define Image/Build
|
define Image/Build
|
||||||
$(TARGET_CROSS)objcopy -O srec -I binary --adjust-vma 0xbe000000 $(KDIR)/root.$(1) $(KDIR)/root.srec
|
$(TARGET_CROSS)objcopy -O srec -I binary --adjust-vma 0xbe000000 $(KDIR)/root.$(1) $(KDIR)/root.$(1).srec
|
||||||
grep -v S7 $(KDIR)/root.srec > $(BIN_DIR)/openwrt-$(BOARD)-$(KERNEL)-$(1).img
|
grep -v S7 $(KDIR)/root.$(1).srec > $(BIN_DIR)/openwrt-$(BOARD)-$(KERNEL)-$(1).img
|
||||||
grep -v S0 $(LINUX_DIR)/arch/mips/boot/compressed/images/zImage.flash.srec >> $(BIN_DIR)/openwrt-$(BOARD)-$(KERNEL)-$(1).img
|
grep -v S0 $(LINUX_DIR)/arch/mips/boot/compressed/images/zImage.flash.srec >> $(BIN_DIR)/openwrt-$(BOARD)-$(KERNEL)-$(1).img
|
||||||
endef
|
endef
|
||||||
|
|
||||||
|
|
|
@ -23,6 +23,5 @@ $(LINUX_DIR)/.patched: $(LINUX_DIR)/.unpacked
|
||||||
$(LINUX_BUILD_DIR)/zImage.flash.srec: $(LINUX_DIR)/vmlinux
|
$(LINUX_BUILD_DIR)/zImage.flash.srec: $(LINUX_DIR)/vmlinux
|
||||||
$(CP) $(LINUX_DIR)/arch/mips/boot/compressed/images/zImage.flash.srec $(LINUX_DIR)/zImage.flash.srec
|
$(CP) $(LINUX_DIR)/arch/mips/boot/compressed/images/zImage.flash.srec $(LINUX_DIR)/zImage.flash.srec
|
||||||
$(CP) $(LINUX_DIR)/arch/mips/boot/compressed/images/zImage.srec $(LINUX_DIR)/zImage.srec
|
$(CP) $(LINUX_DIR)/arch/mips/boot/compressed/images/zImage.srec $(LINUX_DIR)/zImage.srec
|
||||||
touch $@
|
|
||||||
|
|
||||||
compile: $(LINUX_BUILD_DIR)/zImage.flash.srec
|
compile: $(LINUX_BUILD_DIR)/zImage.flash.srec
|
||||||
|
|
Loading…
Reference in New Issue