summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--package/grub/Makefile1
-rw-r--r--target/x86_64/Makefile4
2 files changed, 5 insertions, 0 deletions
diff --git a/package/grub/Makefile b/package/grub/Makefile
index e52980ce4..9e43242aa 100644
--- a/package/grub/Makefile
+++ b/package/grub/Makefile
@@ -17,6 +17,7 @@ PKG_ARCH_DEPENDS:= x86 x86_64 mips
PKG_NOPARALLEL:= 1
PKG_SUBPKGS:= GRUB GRUB_TOOLS
+PKGSD_GRUB_TOOLS:= GRUB2 tools
PKG_CHOICES_GRUB:= PC EFI
PKGCD_PC:= build for PC BIOS
diff --git a/target/x86_64/Makefile b/target/x86_64/Makefile
index 8d546a34b..63785c12a 100644
--- a/target/x86_64/Makefile
+++ b/target/x86_64/Makefile
@@ -9,7 +9,11 @@ include $(TOPDIR)/mk/image.mk
KERNEL:=$(LINUX_DIR)/arch/x86/boot/bzImage
ifeq ($(ADK_TARGET_QEMU_WITH_BOOTLOADER),y)
+ifeq ($(ADK_TARGET_QEMU_WITHOUT_GRAPHIC),y)
+CREATE:=./scripts/create.sh -g -t
+else
CREATE:=./scripts/create.sh -g
+endif
else
CREATE:=./scripts/create.sh
endif