mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-12-24 22:06:31 +02:00
compress the kernel that resides on the nand memory
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@8073 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
parent
48b7bf6e3d
commit
9105f5566e
@ -49,8 +49,7 @@ define Image/cmdline/squashfs
|
|||||||
block2mtd.block2mtd=/dev/cfa2,65536 root=/dev/mtdblock0 rootfstype=squashfs init=/etc/preinit
|
block2mtd.block2mtd=/dev/cfa2,65536 root=/dev/mtdblock0 rootfstype=squashfs init=/etc/preinit
|
||||||
endef
|
endef
|
||||||
|
|
||||||
# TGZ images should be used with a yaffs2 rootfs
|
define Image/cmdline/yaffs2
|
||||||
define Image/cmdline/tgz
|
|
||||||
root=/dev/mtdblock1 rootfstype=yaffs2 init=/etc/preinit
|
root=/dev/mtdblock1 rootfstype=yaffs2 init=/etc/preinit
|
||||||
endef
|
endef
|
||||||
|
|
||||||
@ -59,4 +58,15 @@ define Image/Build
|
|||||||
./gen_image.sh $(BIN_DIR)/openwrt-$(BOARD)-$(KERNEL)-$(1).bin 4 $(KDIR)/vmlinux.elf $(CONFIG_TARGET_ROOTFS_FSPART) $(KDIR)/root.$(1)
|
./gen_image.sh $(BIN_DIR)/openwrt-$(BOARD)-$(KERNEL)-$(1).bin 4 $(KDIR)/vmlinux.elf $(CONFIG_TARGET_ROOTFS_FSPART) $(KDIR)/root.$(1)
|
||||||
endef
|
endef
|
||||||
|
|
||||||
|
ifneq ($(CONFIG_TARGET_ROOTFS_INITRAMFS),y)
|
||||||
|
define Image/Prepare
|
||||||
|
$(STAGING_DIR)/bin/patch-cmdline $(KDIR)/vmlinux '$(strip $(call Image/cmdline/yaffs2)) '
|
||||||
|
cat $(KDIR)/vmlinux | $(STAGING_DIR)/bin/lzma e -si -so -eos -lc1 -lp2 -pb2 > $(KDIR)/vmlinux.lzma
|
||||||
|
$(MAKE) -C $(GENERIC_PLATFORM_DIR)/image/lzma-loader $(LOADER_MAKEOPTS) clean compile
|
||||||
|
endef
|
||||||
|
define Image/BuildKernel
|
||||||
|
$(CP) $(KDIR)/loader.elf $(BIN_DIR)/openwrt-$(BOARD)-$(KERNEL)-vmlinux
|
||||||
|
endef
|
||||||
|
endif
|
||||||
|
|
||||||
$(eval $(call BuildImage))
|
$(eval $(call BuildImage))
|
||||||
|
Loading…
Reference in New Issue
Block a user