mirror of https://github.com/hak5/openwrt-owl.git
parent
45f0f2a960
commit
88dd056006
|
@ -7,6 +7,10 @@
|
||||||
include $(TOPDIR)/rules.mk
|
include $(TOPDIR)/rules.mk
|
||||||
include $(INCLUDE_DIR)/image.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)
|
ifeq ($(CONFIG_X86_GRUB_IMAGES),y)
|
||||||
define Build/Compile
|
define Build/Compile
|
||||||
$(MAKE) -C grub compile
|
$(MAKE) -C grub compile
|
||||||
|
@ -17,15 +21,15 @@ ifeq ($(CONFIG_X86_GRUB_IMAGES),y)
|
||||||
endef
|
endef
|
||||||
|
|
||||||
define Image/cmdline/jffs2-64k
|
define Image/cmdline/jffs2-64k
|
||||||
block2mtd.block2mtd=$(CONFIG_X86_GRUB_ROOTPART),65536 root=/dev/mtdblock0 rootfstype=jffs2
|
block2mtd.block2mtd=$(ROOTPART),65536 root=/dev/mtdblock0 rootfstype=jffs2
|
||||||
endef
|
endef
|
||||||
|
|
||||||
define Image/cmdline/jffs2-128k
|
define Image/cmdline/jffs2-128k
|
||||||
block2mtd.block2mtd=$(CONFIG_X86_GRUB_ROOTPART),131072 root=/dev/mtdblock0 rootfstype=jffs2
|
block2mtd.block2mtd=$(ROOTPART),131072 root=/dev/mtdblock0 rootfstype=jffs2
|
||||||
endef
|
endef
|
||||||
|
|
||||||
define Image/cmdline/ext2
|
define Image/cmdline/ext2
|
||||||
root=$(CONFIG_X86_GRUB_ROOTPART) rootfstype=ext2 $(CONFIG_X86_GRUB_BOOTOPTS)
|
root=$(ROOTPART) rootfstype=ext2 $(CONFIG_X86_GRUB_BOOTOPTS)
|
||||||
endef
|
endef
|
||||||
|
|
||||||
define Image/Build/grub
|
define Image/Build/grub
|
||||||
|
|
Loading…
Reference in New Issue