From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from list by lists.gnu.org with archive (Exim 4.71) id 1V0nWr-0001Yk-EU for mharc-grub-devel@gnu.org; Sun, 21 Jul 2013 02:54:01 -0400 Received: from eggs.gnu.org ([2001:4830:134:3::10]:52725) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1V0nWn-0001Y5-OZ for grub-devel@gnu.org; Sun, 21 Jul 2013 02:53:59 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1V0nWm-0006Fr-SL for grub-devel@gnu.org; Sun, 21 Jul 2013 02:53:57 -0400 Received: from mail-la0-x22b.google.com ([2a00:1450:4010:c03::22b]:54119) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1V0nWm-0006Fl-Ko for grub-devel@gnu.org; Sun, 21 Jul 2013 02:53:56 -0400 Received: by mail-la0-f43.google.com with SMTP id fh20so2634100lab.2 for ; Sat, 20 Jul 2013 23:53:55 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=from:to:subject:date:message-id:x-mailer; bh=VtXv2YVt/8Z+JIgMRq9vNEXuY7/z132VFUjaVMEzBdY=; b=Jyzl83Wygi1Mvg6vfA9oI1O31wISQvtIDwI8T3neLnY7N861WwWb+57baRNyHNOM6K I81T5CeiqmG/jfsgFx3F1xLwT7UpU6+P2lMSvLlQswbcZl6VsDi4MDiu8b+IhnEIBZb5 U1rwKfwZxVa651bjjxbQ7zZCZZ20fDgoCZS7id7W6qmK7333xIFO38ktMEm0y/yIxXw+ iT8JdcsmP0jeUbv/+cltkhoSst0M+BveqDjCjmOgFw2hHdQPmL8AvC11IawLDI9TstoI 8J0jHJGUM7xnDevFDDmI3kFK7j/6gzRyqEDagsof4Dyt/s1gyzN4ua7iFTj4s4LCqQUk kqgQ== X-Received: by 10.112.189.101 with SMTP id gh5mr10070593lbc.73.1374389635615; Sat, 20 Jul 2013 23:53:55 -0700 (PDT) Received: from localhost.localdomain (ppp79-139-160-84.pppoe.spdop.ru. [79.139.160.84]) by mx.google.com with ESMTPSA id m14sm8779939lbl.1.2013.07.20.23.53.54 for (version=TLSv1.2 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Sat, 20 Jul 2013 23:53:54 -0700 (PDT) From: Andrey Borzenkov To: grub-devel@gnu.org Subject: [PATCH] enable emuusb and emupci on emu platform only Date: Sun, 21 Jul 2013 10:53:47 +0400 Message-Id: <1374389627-26694-1-git-send-email-arvidjaar@gmail.com> X-Mailer: git-send-email 1.8.1.4 X-detected-operating-system: by eggs.gnu.org: Error: Malformed IPv6 address (bad octet value). X-Received-From: 2a00:1450:4010:c03::22b X-BeenThere: grub-devel@gnu.org X-Mailman-Version: 2.1.14 Precedence: list Reply-To: The development of GNU GRUB List-Id: The development of GNU GRUB List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 21 Jul 2013 06:53:59 -0000 Is there any reason we may want to build them when not building --with-platform=emu? Signed-off-by: Andrey Borzenkov --- grub-core/Makefile.core.def | 2 ++ 1 file changed, 2 insertions(+) diff --git a/grub-core/Makefile.core.def b/grub-core/Makefile.core.def index 06617d7..230bed5 100644 --- a/grub-core/Makefile.core.def +++ b/grub-core/Makefile.core.def @@ -477,6 +477,7 @@ module = { module = { name = emuusb; common = bus/usb/usb.c; + enable = emu; condition = COND_GRUB_EMU_USB; }; @@ -546,6 +547,7 @@ module = { common = bus/emu/pci.c; common = commands/lspci.c; + enable = emu; condition = COND_GRUB_EMU_PCI; }; -- tg: (af5fa18..) u/emuusb-in-emu (depends on: master)