projects
/
openwrt.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
add prereq checks for target/linux/* and target/image/*, check for fdisk for the...
[openwrt.git]
/
target
/
image
/
x86
/
Makefile
diff --git
a/target/image/x86/Makefile
b/target/image/x86/Makefile
index
0860245
..
d3bbe04
100644
(file)
--- a/
target/image/x86/Makefile
+++ b/
target/image/x86/Makefile
@@
-7,6
+7,10
@@
include $(TOPDIR)/rules.mk
include $(INCLUDE_DIR)/image.mk
include $(TOPDIR)/rules.mk
include $(INCLUDE_DIR)/image.mk
+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
ifeq ($(CONFIG_X86_GRUB_IMAGES),y)
define Build/Compile
$(MAKE) -C grub compile
@@
-17,19
+21,19
@@
ifeq ($(CONFIG_X86_GRUB_IMAGES),y)
endef
define Image/cmdline/jffs2-64k
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
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
endef
define Image/cmdline/ext2
- root=
/dev/hda2 rootfstype=ext2
+ root=
$(ROOTPART) rootfstype=ext2 $(CONFIG_X86_GRUB_BOOTOPTS)
endef
define Image/Build/grub
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 \
$(CP) \
$(STAGING_DIR)/usr/lib/grub/i386-pc/stage1 \
$(STAGING_DIR)/usr/lib/grub/i386-pc/stage2 \
@@
-50,5
+54,8
@@
define Image/Build
cp $(LINUX_DIR)/arch/i386/boot/bzImage $(BIN_DIR)/openwrt-$(BOARD)-$(KERNEL)-vmlinuz
endef
cp $(LINUX_DIR)/arch/i386/boot/bzImage $(BIN_DIR)/openwrt-$(BOARD)-$(KERNEL)-vmlinuz
endef
-
$(eval $(call BuildImage))
$(eval $(call BuildImage))
+
+$(eval $(call RequireCommand,fdisk, \
+ Please install fdisk \
+))
This page took
0.023846 seconds
and
4
git commands to generate.