X-Git-Url: https://git.rohieb.name/openwrt.git/blobdiff_plain/00b9fc10fe104cb6b4c835fdf19f739121722ed6..d7fa3978c3cb0d1816e5b1a958a59fb250056d71:/target/image/x86/Makefile diff --git a/target/image/x86/Makefile b/target/image/x86/Makefile index 086024545..7aa03b2d2 100644 --- a/target/image/x86/Makefile +++ b/target/image/x86/Makefile @@ -7,6 +7,11 @@ include $(TOPDIR)/rules.mk include $(INCLUDE_DIR)/image.mk +export PATH=$(TARGET_PATH):/sbin +ROOTPART=$(strip $(subst ",, $(CONFIG_X86_GRUB_ROOTPART))) +#")) # fix vim's broken syntax highlighting + + ifeq ($(CONFIG_X86_GRUB_IMAGES),y) define Build/Compile $(MAKE) -C grub compile @@ -17,19 +22,19 @@ ifeq ($(CONFIG_X86_GRUB_IMAGES),y) endef define Image/cmdline/jffs2-64k - block2mtd.block2mtd=/dev/hda2,65536 root=/dev/mtdblock0 rootfstype=jffs2 + block2mtd.block2mtd=$(ROOTPART),65536 root=/dev/mtdblock0 rootfstype=jffs2 endef define Image/cmdline/jffs2-128k - block2mtd.block2mtd=/dev/hda2,131072 root=/dev/mtdblock0 rootfstype=jffs2 + block2mtd.block2mtd=$(ROOTPART),131072 root=/dev/mtdblock0 rootfstype=jffs2 endef define Image/cmdline/ext2 - root=/dev/hda2 rootfstype=ext2 + root=$(ROOTPART) rootfstype=ext2 $(CONFIG_X86_GRUB_BOOTOPTS) endef define Image/Build/grub - mkdir -p $(KDIR)/root.grub/boot/grub + mkdir -p $(KDIR)/root.grub/boot/grub $(CP) \ $(STAGING_DIR)/usr/lib/grub/i386-pc/stage1 \ $(STAGING_DIR)/usr/lib/grub/i386-pc/stage2 \ @@ -50,5 +55,8 @@ define Image/Build cp $(LINUX_DIR)/arch/i386/boot/bzImage $(BIN_DIR)/openwrt-$(BOARD)-$(KERNEL)-vmlinuz endef - $(eval $(call BuildImage)) + +$(eval $(call RequireCommand,fdisk, \ + Please install fdisk \ +))