diff options
author | John Crispin <blogic@openwrt.org> | 2007-10-08 18:53:19 +0000 |
---|---|---|
committer | John Crispin <blogic@openwrt.org> | 2007-10-08 18:53:19 +0000 |
commit | 0f0020cac022f0dcf0462f41125dad2a4e0675ff (patch) | |
tree | 269d33b9b63507ab401ff3260f8a840fc50c4316 /target/linux/x86/image/Makefile | |
parent | 91298e7d33bf3aa1e63376a982688a8e3e9b6151 (diff) | |
download | upstream-0f0020cac022f0dcf0462f41125dad2a4e0675ff.tar.gz upstream-0f0020cac022f0dcf0462f41125dad2a4e0675ff.tar.bz2 upstream-0f0020cac022f0dcf0462f41125dad2a4e0675ff.zip |
added generation of x86 livecds, from #2391
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@9191 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target/linux/x86/image/Makefile')
-rw-r--r-- | target/linux/x86/image/Makefile | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/target/linux/x86/image/Makefile b/target/linux/x86/image/Makefile index f19e6b3f38..d470fe1c5f 100644 --- a/target/linux/x86/image/Makefile +++ b/target/linux/x86/image/Makefile @@ -74,6 +74,20 @@ define Image/Build/squashfs $(call prepare_generic_squashfs,$(KDIR)/root.squashfs) endef +define Image/Build/iso + $(CP) \ + $(STAGING_DIR_HOST)/usr/lib/grub/i386-pc/stage2_eltorito \ + $(KDIR)/root.grub/boot/grub/stage2_eltorito + sed -i \ + -e 's#@CMDLINE@#$(strip $(call Image/cmdline/$(1))) $(BOOTOPTS)#g' \ + -e 's#@BAUDRATE@#$(CONFIG_X86_GRUB_BAUDRATE)#g' \ + -e 's#(hd0,0)#(cd)#g' \ + $(KDIR)/root.grub/boot/grub/menu.lst + $(CP) $(KDIR)/bzImage $(KDIR)/root.grub/boot/vmlinuz + mkisofs -R -b boot/grub/stage2_eltorito -no-emul-boot -boot-load-size 4 -boot-info-table \ + -o $(KDIR)/root.iso $(KDIR)/root.grub +endef + define Image/BuildKernel $(CP) $(KDIR)/bzImage $(BIN_DIR)/openwrt-$(BOARD)-$(KERNEL)-vmlinuz endef @@ -86,3 +100,4 @@ define Image/Build endef $(eval $(call BuildImage)) + |