2006-06-27 00:35:46 +00:00
|
|
|
#
|
2012-02-16 17:53:57 +00:00
|
|
|
# Copyright (C) 2006-2012 OpenWrt.org
|
2006-06-27 00:35:46 +00:00
|
|
|
#
|
|
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
|
|
# See /LICENSE for more information.
|
|
|
|
#
|
2006-06-21 03:13:25 +00:00
|
|
|
include $(TOPDIR)/rules.mk
|
2006-06-21 02:32:39 +00:00
|
|
|
include $(INCLUDE_DIR)/image.mk
|
2005-07-25 15:40:23 +00:00
|
|
|
|
2006-11-18 21:14:45 +00:00
|
|
|
export PATH=$(TARGET_PATH):/sbin
|
2009-11-03 01:02:39 +00:00
|
|
|
|
2010-02-17 00:59:41 +00:00
|
|
|
GRUB_TERMINALS =
|
|
|
|
GRUB_SERIAL_CONFIG =
|
|
|
|
GRUB_TERMINAL_CONFIG =
|
|
|
|
GRUB_CONSOLE_CMDLINE =
|
|
|
|
|
2010-04-29 00:47:05 +00:00
|
|
|
ifneq ($(CONFIG_X86_GRUB_CONSOLE),)
|
|
|
|
GRUB_CONSOLE_CMDLINE += console=tty0
|
|
|
|
GRUB_TERMINALS += console
|
2010-02-17 00:59:41 +00:00
|
|
|
endif
|
|
|
|
|
|
|
|
ifneq ($(CONFIG_X86_GRUB_SERIAL),)
|
2010-04-29 00:47:05 +00:00
|
|
|
GRUB_CONSOLE_CMDLINE += console=$(call qstrip,$(CONFIG_X86_GRUB_SERIAL)),$(CONFIG_X86_GRUB_BAUDRATE)n8
|
|
|
|
GRUB_SERIAL_CONFIG := serial --unit=0 --speed=$(CONFIG_X86_GRUB_BAUDRATE) --word=8 --parity=no --stop=1
|
|
|
|
GRUB_TERMINALS += serial
|
2010-02-17 00:59:41 +00:00
|
|
|
endif
|
|
|
|
|
|
|
|
ifneq ($(GRUB_TERMINALS),)
|
2010-04-29 00:47:05 +00:00
|
|
|
GRUB_TERMINAL_CONFIG := terminal --timeout=2 $(GRUB_TERMINALS)
|
2010-02-17 00:59:41 +00:00
|
|
|
endif
|
2010-02-12 19:04:12 +00:00
|
|
|
|
2010-05-05 02:07:38 +00:00
|
|
|
ROOTPART:=$(call qstrip,$(CONFIG_TARGET_ROOTFS_PARTNAME))
|
2010-02-12 19:04:12 +00:00
|
|
|
|
2012-01-19 01:14:45 +00:00
|
|
|
GRUB_TIMEOUT:=$(call qstrip,$(CONFIG_X86_GRUB_TIMEOUT))
|
|
|
|
|
2010-04-29 00:47:05 +00:00
|
|
|
ifneq ($(CONFIG_X86_GRUB_IMAGES),)
|
|
|
|
|
|
|
|
BOOTOPTS:=$(call qstrip,$(CONFIG_X86_GRUB_BOOTOPTS))
|
2007-03-02 01:23:36 +00:00
|
|
|
|
2010-11-22 12:12:39 +00:00
|
|
|
define Image/cmdline/ext4
|
|
|
|
root=$(ROOTPART) rootfstype=ext4 rootwait
|
2010-04-29 00:47:05 +00:00
|
|
|
endef
|
|
|
|
|
2006-10-08 15:48:56 +00:00
|
|
|
define Image/cmdline/jffs2-64k
|
2009-12-06 09:12:34 +00:00
|
|
|
block2mtd.block2mtd=$(ROOTPART),65536,rootfs root=/dev/mtdblock0 rootfstype=jffs2 rootwait
|
2006-10-08 15:48:56 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
define Image/cmdline/jffs2-128k
|
2009-12-06 09:12:34 +00:00
|
|
|
block2mtd.block2mtd=$(ROOTPART),131072,rootfs root=/dev/mtdblock0 rootfstype=jffs2 rootwait
|
2006-10-08 15:48:56 +00:00
|
|
|
endef
|
|
|
|
|
2010-04-29 00:47:05 +00:00
|
|
|
define Image/cmdline/squashfs
|
|
|
|
block2mtd.block2mtd=$(ROOTPART),65536,rootfs root=/dev/mtdblock0 rootfstype=squashfs rootwait
|
2006-10-08 15:48:56 +00:00
|
|
|
endef
|
2010-04-29 00:47:05 +00:00
|
|
|
|
2006-10-08 15:48:56 +00:00
|
|
|
define Image/Build/grub
|
2007-02-01 01:07:26 +00:00
|
|
|
# left here because the image builder doesnt need these
|
|
|
|
$(INSTALL_DIR) $(KDIR)/root.grub/boot/grub
|
2006-10-08 15:48:56 +00:00
|
|
|
$(CP) \
|
2010-05-02 17:32:25 +00:00
|
|
|
$(KDIR)/stage1 \
|
|
|
|
$(KDIR)/stage2 \
|
|
|
|
$(KDIR)/e2fs_stage1_5 \
|
2006-10-08 15:48:56 +00:00
|
|
|
$(KDIR)/root.grub/boot/grub/
|
2007-01-14 22:59:51 +00:00
|
|
|
$(CP) $(KDIR)/bzImage $(KDIR)/root.grub/boot/vmlinuz
|
2006-10-08 15:48:56 +00:00
|
|
|
sed \
|
2010-02-17 00:59:41 +00:00
|
|
|
-e 's#@SERIAL_CONFIG@#$(strip $(GRUB_SERIAL_CONFIG))#g' \
|
|
|
|
-e 's#@TERMINAL_CONFIG@#$(strip $(GRUB_TERMINAL_CONFIG))#g' \
|
|
|
|
-e 's#@CMDLINE@#$(strip $(call Image/cmdline/$(1)) $(BOOTOPTS) $(GRUB_CONSOLE_CMDLINE))#g' \
|
2012-01-19 01:14:45 +00:00
|
|
|
-e 's#@TIMEOUT@#$(GRUB_TIMEOUT)#g' \
|
2007-10-09 16:57:12 +00:00
|
|
|
./menu.lst > $(KDIR)/root.grub/boot/grub/menu.lst
|
2010-05-05 02:07:38 +00:00
|
|
|
PADDING="$(CONFIG_TARGET_IMAGES_PAD)" PATH="$(TARGET_PATH)" ./gen_image_x86.sh \
|
2010-04-29 03:03:47 +00:00
|
|
|
$(BIN_DIR)/$(IMG_PREFIX)-combined-$(1).img \
|
2010-05-05 02:07:38 +00:00
|
|
|
$(CONFIG_TARGET_KERNEL_PARTSIZE) $(KDIR)/root.grub \
|
2010-05-05 01:52:54 +00:00
|
|
|
$(CONFIG_TARGET_ROOTFS_PARTSIZE) $(KDIR)/root.$(1)
|
2007-03-02 01:23:36 +00:00
|
|
|
$(call Image/Build/grub/$(1))
|
2006-10-08 15:48:56 +00:00
|
|
|
endef
|
|
|
|
|
2007-02-01 01:07:26 +00:00
|
|
|
define Image/Prepare/grub
|
2007-01-14 22:59:51 +00:00
|
|
|
# for the image builder
|
|
|
|
$(CP) \
|
2010-05-02 17:32:25 +00:00
|
|
|
$(STAGING_DIR)/usr/lib/grub/i386-openwrt/stage1 \
|
|
|
|
$(STAGING_DIR)/usr/lib/grub/i386-openwrt/stage2 \
|
|
|
|
$(STAGING_DIR)/usr/lib/grub/i386-openwrt/stage2_eltorito \
|
|
|
|
$(STAGING_DIR)/usr/lib/grub/i386-openwrt/e2fs_stage1_5 \
|
2007-01-14 22:59:51 +00:00
|
|
|
$(KDIR)/
|
2007-02-01 01:07:26 +00:00
|
|
|
endef
|
|
|
|
|
2008-11-09 17:39:09 +00:00
|
|
|
endif
|
2008-05-30 16:50:37 +00:00
|
|
|
|
2009-11-03 01:02:39 +00:00
|
|
|
ROOTDELAY=10
|
|
|
|
|
2010-04-29 00:47:05 +00:00
|
|
|
ifneq ($(CONFIG_OLPC_BOOTSCRIPT_IMAGES),)
|
|
|
|
|
2010-11-22 12:12:39 +00:00
|
|
|
define Image/cmdline/ext4
|
|
|
|
root=$(ROOTPART) rootfstype=ext4 rootwait
|
2009-11-03 01:02:39 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
define Image/cmdline/jffs2-64k
|
|
|
|
block2mtd.block2mtd=$(ROOTPART),65536,rootfs root=/dev/mtdblock0 rootfstype=jffs2 rootdelay=$(ROOTDELAY)
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Image/cmdline/jffs2-128k
|
|
|
|
block2mtd.block2mtd=$(ROOTPART),131072,rootfs root=/dev/mtdblock0 rootfstype=jffs2 rootdelay=$(ROOTDELAY)
|
|
|
|
endef
|
|
|
|
|
2010-04-29 00:47:05 +00:00
|
|
|
define Image/cmdline/squashfs
|
|
|
|
block2mtd.block2mtd=$(ROOTPART),65536,rootfs root=/dev/mtdblock0 rootfstype=squashfs rootdelay=$(ROOTDELAY)
|
2009-11-03 01:02:39 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
define Image/Build/bootscript
|
|
|
|
# left here because the image builder doesnt need these
|
|
|
|
$(INSTALL_DIR) $(KDIR)/root.bootscript/boot
|
|
|
|
$(CP) $(KDIR)/bzImage $(KDIR)/root.bootscript/boot/vmlinuz
|
|
|
|
sed -e 's#@CMDLINE@#$(strip $(call Image/cmdline/$(1))) $(BOOTOPTS)#g' \
|
|
|
|
./olpc.fth > $(KDIR)/root.bootscript/boot/olpc.fth
|
2010-05-05 02:07:38 +00:00
|
|
|
PADDING="$(CONFIG_TARGET_IMAGES_PAD)" PATH="$(TARGET_PATH)" ./gen_image_olpc.sh \
|
2010-04-29 03:03:47 +00:00
|
|
|
$(BIN_DIR)/$(IMG_PREFIX)-combined-$(1).img \
|
2010-05-05 02:07:38 +00:00
|
|
|
$(CONFIG_TARGET_KERNEL_PARTSIZE) $(KDIR)/root.bootscript \
|
2010-05-05 01:52:54 +00:00
|
|
|
$(CONFIG_TARGET_ROOTFS_PARTSIZE) $(KDIR)/root.$(1)
|
2009-11-03 01:02:39 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
endif
|
2009-11-17 19:49:25 +00:00
|
|
|
|
2007-03-02 01:23:36 +00:00
|
|
|
define Image/Build/squashfs
|
2010-04-29 00:47:05 +00:00
|
|
|
$(call prepare_generic_squashfs,$(KDIR)/root.squashfs)
|
2007-03-02 01:23:36 +00:00
|
|
|
endef
|
2007-01-10 21:52:28 +00:00
|
|
|
|
2007-10-08 18:53:19 +00:00
|
|
|
define Image/Build/iso
|
2009-05-07 13:50:09 +00:00
|
|
|
$(INSTALL_DIR) $(KDIR)/root.grub/boot/grub
|
2007-10-08 18:53:19 +00:00
|
|
|
$(CP) \
|
2010-05-02 17:32:25 +00:00
|
|
|
$(KDIR)/stage2_eltorito \
|
|
|
|
$(KDIR)/root.grub/boot/grub/
|
2009-05-07 13:50:09 +00:00
|
|
|
sed \
|
2010-02-17 00:59:41 +00:00
|
|
|
-e 's#@SERIAL_CONFIG@#$(strip $(GRUB_SERIAL_CONFIG))#g' \
|
|
|
|
-e 's#@TERMINAL_CONFIG@#$(strip $(GRUB_TERMINAL_CONFIG))#g' \
|
|
|
|
-e 's#@CMDLINE@#$(strip $(call Image/cmdline/$(1)) $(BOOTOPTS) $(GRUB_CONSOLE_CMDLINE))#g' \
|
2007-10-08 18:53:19 +00:00
|
|
|
-e 's#(hd0,0)#(cd)#g' \
|
2009-05-07 13:50:09 +00:00
|
|
|
./menu.lst > $(KDIR)/root.grub/boot/grub/menu.lst
|
2007-10-08 18:53:19 +00:00
|
|
|
$(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
|
|
|
|
|
2010-04-29 00:47:05 +00:00
|
|
|
ifneq ($(CONFIG_X86_VDI_IMAGES),)
|
|
|
|
define Image/Build/vdi
|
|
|
|
# left here because the image builder doesnt need these
|
2010-11-22 12:12:39 +00:00
|
|
|
ifeq ($(1),ext4)
|
2010-04-30 18:43:39 +00:00
|
|
|
rm $(BIN_DIR)/$(IMG_PREFIX)-combined-$(1).vdi || true
|
2010-08-09 04:22:39 +00:00
|
|
|
qemu-img convert -f raw -O vdi \
|
2010-04-29 03:03:47 +00:00
|
|
|
$(BIN_DIR)/$(IMG_PREFIX)-combined-$(1).img \
|
|
|
|
$(BIN_DIR)/$(IMG_PREFIX)-combined-$(1).vdi
|
|
|
|
# XXX: VBoxManage insists on setting perms to 0600
|
|
|
|
chmod 0644 $(BIN_DIR)/$(IMG_PREFIX)-combined-$(1).vdi
|
2010-04-29 00:47:05 +00:00
|
|
|
endif
|
|
|
|
endef
|
|
|
|
endif
|
|
|
|
|
|
|
|
ifneq ($(CONFIG_X86_VMDK_IMAGES),)
|
|
|
|
define Image/Build/vmdk
|
|
|
|
# left here because the image builder doesnt need these
|
2010-11-22 12:12:39 +00:00
|
|
|
ifeq ($(1),ext4)
|
2010-04-30 18:43:39 +00:00
|
|
|
rm $(BIN_DIR)/$(IMG_PREFIX)-combined-$(1).vmdk || true
|
2010-04-29 03:03:47 +00:00
|
|
|
qemu-img convert -f raw -O vmdk \
|
|
|
|
$(BIN_DIR)/$(IMG_PREFIX)-combined-$(1).img \
|
|
|
|
$(BIN_DIR)/$(IMG_PREFIX)-combined-$(1).vmdk
|
2010-04-29 00:47:05 +00:00
|
|
|
endif
|
|
|
|
endef
|
|
|
|
endif
|
|
|
|
|
2012-02-16 17:53:57 +00:00
|
|
|
define Image/Build/gzip
|
|
|
|
gzip -f9 $(BIN_DIR)/$(IMG_PREFIX)-combined-$(1).img
|
|
|
|
gzip -f9 $(BIN_DIR)/$(IMG_PREFIX)-rootfs-$(1).img
|
|
|
|
endef
|
|
|
|
|
|
|
|
ifneq ($(CONFIG_TARGET_IMAGES_GZIP),)
|
|
|
|
define Image/Build/gzip/ext4
|
|
|
|
$(call Image/Build/gzip,ext4)
|
|
|
|
endef
|
2012-02-16 17:54:01 +00:00
|
|
|
ifneq ($(CONFIG_TARGET_IMAGES_PAD),)
|
2012-02-16 17:54:04 +00:00
|
|
|
define Image/Build/gzip/squashfs
|
|
|
|
$(call Image/Build/gzip,squashfs)
|
|
|
|
endef
|
2012-02-16 17:54:01 +00:00
|
|
|
define Image/Build/gzip/jffs2-64k
|
2012-02-16 17:53:57 +00:00
|
|
|
$(call Image/Build/gzip,jffs2-64k)
|
2012-02-16 17:54:01 +00:00
|
|
|
endef
|
|
|
|
define Image/Build/gzip/jffs2-128k
|
2012-02-16 17:53:57 +00:00
|
|
|
$(call Image/Build/gzip,jffs2-128k)
|
2012-02-16 17:54:01 +00:00
|
|
|
endef
|
|
|
|
endif
|
2012-02-16 17:53:57 +00:00
|
|
|
endif
|
|
|
|
|
2007-03-02 17:12:23 +00:00
|
|
|
define Image/BuildKernel
|
2010-04-12 23:15:56 +00:00
|
|
|
$(CP) $(KDIR)/bzImage $(BIN_DIR)/$(IMG_PREFIX)-vmlinuz
|
2011-05-17 10:35:14 +00:00
|
|
|
ifneq ($(CONFIG_X86_ETHERBOOT_IMAGES),)
|
|
|
|
rm -f $(BIN_DIR)/$(IMG_PREFIX)-etherboot
|
|
|
|
$(STAGING_DIR_HOST)/bin/mkelfImage \
|
|
|
|
--append=$(CONFIG_X86_ETHERBOOT_BOOTOPTS) \
|
|
|
|
$(KDIR)/bzImage \
|
|
|
|
$(BIN_DIR)/$(IMG_PREFIX)-etherboot
|
|
|
|
endif
|
2007-03-02 17:12:23 +00:00
|
|
|
endef
|
|
|
|
|
2010-04-29 00:47:05 +00:00
|
|
|
define Image/Prepare
|
|
|
|
$(CP) $(LINUX_DIR)/arch/x86/boot/bzImage $(KDIR)/bzImage
|
|
|
|
$(call Image/Prepare/bootscript)
|
|
|
|
$(call Image/Prepare/grub)
|
|
|
|
endef
|
|
|
|
|
2006-06-04 21:57:59 +00:00
|
|
|
define Image/Build
|
2008-06-04 21:55:25 +00:00
|
|
|
$(call Image/Build/$(1))
|
2009-11-03 01:02:39 +00:00
|
|
|
$(call Image/Build/bootscript,$(1))
|
2010-02-12 19:04:12 +00:00
|
|
|
ifneq ($(1),iso)
|
2006-10-08 15:48:56 +00:00
|
|
|
$(call Image/Build/grub,$(1))
|
2008-05-30 16:50:37 +00:00
|
|
|
$(call Image/Build/vdi,$(1))
|
2008-11-09 17:39:09 +00:00
|
|
|
$(call Image/Build/vmdk,$(1))
|
2010-02-12 19:04:12 +00:00
|
|
|
endif
|
2010-04-29 03:03:47 +00:00
|
|
|
$(CP) $(KDIR)/root.$(1) $(BIN_DIR)/$(IMG_PREFIX)-rootfs-$(1).img
|
2010-04-12 23:15:56 +00:00
|
|
|
$(CP) $(KDIR)/bzImage $(BIN_DIR)/$(IMG_PREFIX)-vmlinuz
|
2012-02-16 17:53:57 +00:00
|
|
|
$(call Image/Build/gzip/$(1))
|
2006-06-04 21:57:59 +00:00
|
|
|
endef
|
2005-07-25 15:40:23 +00:00
|
|
|
|
2006-06-04 21:57:59 +00:00
|
|
|
$(eval $(call BuildImage))
|