2006-06-27 08:35:46 +08:00
|
|
|
#
|
|
|
|
# Copyright (C) 2006 OpenWrt.org
|
|
|
|
#
|
|
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
|
|
# See /LICENSE for more information.
|
|
|
|
#
|
2006-06-21 11:13:25 +08:00
|
|
|
include $(TOPDIR)/rules.mk
|
2006-06-21 10:32:39 +08:00
|
|
|
include $(INCLUDE_DIR)/image.mk
|
2005-07-25 23:40:23 +08:00
|
|
|
|
2006-11-19 05:14:45 +08:00
|
|
|
export PATH=$(TARGET_PATH):/sbin
|
2007-02-28 09:10:10 +08:00
|
|
|
BOOTOPTS=$(strip $(subst ",, $(CONFIG_X86_GRUB_BOOTOPTS)))
|
2006-11-01 06:49:02 +08:00
|
|
|
ROOTPART=$(strip $(subst ",, $(CONFIG_X86_GRUB_ROOTPART)))
|
2007-02-28 09:10:10 +08:00
|
|
|
#"))")) # fix vim's broken syntax highlighting
|
2006-11-01 06:49:02 +08:00
|
|
|
|
|
|
|
|
2006-10-08 23:48:56 +08:00
|
|
|
ifeq ($(CONFIG_X86_GRUB_IMAGES),y)
|
2007-03-02 09:23:36 +08:00
|
|
|
define Image/cmdline/squashfs
|
|
|
|
block2mtd.block2mtd=$(ROOTPART),65536,rootfs root=/dev/mtdblock0 rootfstype=squashfs init=/etc/preinit
|
|
|
|
endef
|
|
|
|
|
2006-10-08 23:48:56 +08:00
|
|
|
define Image/cmdline/jffs2-64k
|
2007-03-05 08:38:37 +08:00
|
|
|
block2mtd.block2mtd=$(ROOTPART),65536,rootfs root=/dev/mtdblock0 rootfstype=jffs2 init=/etc/preinit
|
2006-10-08 23:48:56 +08:00
|
|
|
endef
|
|
|
|
|
|
|
|
define Image/cmdline/jffs2-128k
|
2007-03-05 08:38:37 +08:00
|
|
|
block2mtd.block2mtd=$(ROOTPART),131072,rootfs root=/dev/mtdblock0 rootfstype=jffs2 init=/etc/preinit
|
2006-10-08 23:48:56 +08:00
|
|
|
endef
|
|
|
|
|
|
|
|
define Image/cmdline/ext2
|
2007-03-11 08:04:17 +08:00
|
|
|
root=$(ROOTPART) rootfstype=ext2 init=/etc/preinit
|
2006-10-08 23:48:56 +08:00
|
|
|
endef
|
2007-03-02 09:23:36 +08:00
|
|
|
|
2006-10-08 23:48:56 +08:00
|
|
|
define Image/Build/grub
|
2007-02-01 09:07:26 +08:00
|
|
|
# left here because the image builder doesnt need these
|
|
|
|
$(INSTALL_DIR) $(KDIR)/root.grub/boot/grub
|
2006-10-08 23:48:56 +08:00
|
|
|
$(CP) \
|
2007-01-15 06:59:51 +08:00
|
|
|
$(KDIR)/*stage* \
|
2006-10-08 23:48:56 +08:00
|
|
|
$(KDIR)/root.grub/boot/grub/
|
2007-01-15 06:59:51 +08:00
|
|
|
$(CP) $(KDIR)/bzImage $(KDIR)/root.grub/boot/vmlinuz
|
2006-10-08 23:48:56 +08:00
|
|
|
sed \
|
2007-02-28 09:10:10 +08:00
|
|
|
-e 's#@CMDLINE@#$(strip $(call Image/cmdline/$(1))) $(BOOTOPTS)#g' \
|
2006-10-08 23:48:56 +08:00
|
|
|
-e 's#@BAUDRATE@#$(CONFIG_X86_GRUB_BAUDRATE)#g' \
|
2007-10-10 00:57:12 +08:00
|
|
|
./menu.lst > $(KDIR)/root.grub/boot/grub/menu.lst
|
2007-08-07 08:04:25 +08:00
|
|
|
PADDING="$(CONFIG_X86_GRUB_IMAGES_PAD)" PATH="$(TARGET_PATH)" ./gen_image.sh $(BIN_DIR)/openwrt-$(BOARD)-$(KERNEL)-$(1).image $(CONFIG_X86_GRUB_KERNELPART) $(KDIR)/root.grub $(CONFIG_TARGET_ROOTFS_FSPART) $(KDIR)/root.$(1)
|
2007-03-02 09:23:36 +08:00
|
|
|
$(call Image/Build/grub/$(1))
|
2006-10-08 23:48:56 +08:00
|
|
|
endef
|
|
|
|
endif
|
|
|
|
|
2007-02-01 09:07:26 +08:00
|
|
|
ifeq ($(CONFIG_X86_GRUB_IMAGES),y)
|
|
|
|
define Image/Prepare/grub
|
2007-01-15 06:59:51 +08:00
|
|
|
# for the image builder
|
|
|
|
$(CP) \
|
2007-08-07 08:04:25 +08:00
|
|
|
$(STAGING_DIR_HOST)/usr/lib/grub/i386-pc/stage1 \
|
|
|
|
$(STAGING_DIR_HOST)/usr/lib/grub/i386-pc/stage2 \
|
|
|
|
$(STAGING_DIR_HOST)/usr/lib/grub/i386-pc/e2fs_stage1_5 \
|
2007-01-15 06:59:51 +08:00
|
|
|
$(KDIR)/
|
2007-02-01 09:07:26 +08:00
|
|
|
endef
|
|
|
|
endif
|
|
|
|
|
|
|
|
define Image/Prepare
|
|
|
|
$(CP) $(LINUX_DIR)/arch/i386/boot/bzImage $(KDIR)/bzImage
|
|
|
|
$(call Image/Prepare/grub)
|
2007-01-11 05:52:28 +08:00
|
|
|
endef
|
2007-03-02 09:23:36 +08:00
|
|
|
|
|
|
|
define Image/Build/squashfs
|
|
|
|
$(call prepare_generic_squashfs,$(KDIR)/root.squashfs)
|
|
|
|
endef
|
2007-01-11 05:52:28 +08:00
|
|
|
|
2007-10-09 02:53:19 +08:00
|
|
|
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
|
|
|
|
|
2007-03-03 01:12:23 +08:00
|
|
|
define Image/BuildKernel
|
|
|
|
$(CP) $(KDIR)/bzImage $(BIN_DIR)/openwrt-$(BOARD)-$(KERNEL)-vmlinuz
|
|
|
|
endef
|
|
|
|
|
2006-06-05 05:57:59 +08:00
|
|
|
define Image/Build
|
2006-10-08 23:48:56 +08:00
|
|
|
$(call Image/Build/grub,$(1))
|
2007-10-14 21:39:35 +08:00
|
|
|
$(call Image/Build/$(1))
|
2007-02-01 09:07:26 +08:00
|
|
|
$(CP) $(KDIR)/root.$(1) $(BIN_DIR)/openwrt-$(BOARD)-$(KERNEL)-$(1).fs
|
|
|
|
$(CP) $(KDIR)/bzImage $(BIN_DIR)/openwrt-$(BOARD)-$(KERNEL)-vmlinuz
|
2006-06-05 05:57:59 +08:00
|
|
|
endef
|
2005-07-25 23:40:23 +08:00
|
|
|
|
2006-06-05 05:57:59 +08:00
|
|
|
$(eval $(call BuildImage))
|
2007-10-09 02:53:19 +08:00
|
|
|
|