From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga11.intel.com (mga11.intel.com [192.55.52.93]) by mail.openembedded.org (Postfix) with ESMTP id 6AF296F61B for ; Sun, 9 Mar 2014 16:26:18 +0000 (UTC) Received: from fmsmga002.fm.intel.com ([10.253.24.26]) by fmsmga102.fm.intel.com with ESMTP; 09 Mar 2014 09:26:19 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="4.97,618,1389772800"; d="scan'208";a="495042780" Received: from linux.jf.intel.com (HELO linux.intel.com) ([10.23.219.25]) by fmsmga002.fm.intel.com with ESMTP; 09 Mar 2014 09:26:19 -0700 Received: from firebird.rb.intel.com (firebird.rb.intel.com [10.237.105.156]) by linux.intel.com (Postfix) with ESMTP id 57F5A6A4007 for ; Sun, 9 Mar 2014 09:26:07 -0700 (PDT) From: Stefan Stanacar To: openembedded-core@lists.openembedded.org Date: Sun, 9 Mar 2014 18:26:18 +0200 Message-Id: X-Mailer: git-send-email 1.8.5.3 Subject: [PATCH v2 0/4] Add gummiboot boot manager alongside grub-efi X-BeenThere: openembedded-core@lists.openembedded.org X-Mailman-Version: 2.1.12 Precedence: list List-Id: Patches and discussions about the oe-core layer List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 09 Mar 2014 16:26:23 -0000 (I've sent this earlier but didn't add v2 to subject, this is resend only) Hello, This series adds recipes for gummiboot and a class allowing it to be used as the boot loader for live/hddimg images. Without changing EFI_PROVIDER, we have the same behaviour for EFI machines. Using EFI_PROVIDER = "gummiboot" an installed image will use gummiboot instead of grub-efi as it's boot manager. I've tested this on FRI2, NUC and minnow (live USB boot and install from USB and boot) with EFI_PROVIDER = "gummiboot" and KERNEL_FEATURES_append = " cfg/efi-ext" in local.conf This is a partial fix for YB#4082. Changes in V2: - split the first patch in two - used ${B} instead of ${S} in gummiboot do_deploy - change the function names in bootimg/grub-efi instead of using a prefix I've tested again the changes on top of master. Cheers, Stefan The following changes since commit abe417e22b1b55c444460f722ca434f9d382ef87: classes/uboot-config: ignore doc varflag (2014-03-07 15:05:09 +0000) are available in the git repository at: git://git.yoctoproject.org/poky-contrib stefans/gummiboot http://git.yoctoproject.org/cgit.cgi/poky-contrib/log/?h=stefans/gummiboot Stefan Stanacar (4): recipes-bsp: add gnu-efi recipe recipes-bsp: Add gummiboot recipe bootimg/grub-efi.bbclass: allow using a different class for EFI images classes: Add gummiboot class meta/classes/boot-directdisk.bbclass | 7 +- meta/classes/bootimg.bbclass | 9 +- meta/classes/grub-efi.bbclass | 12 +-- meta/classes/gummiboot.bbclass | 114 +++++++++++++++++++++ .../gnu-efi/gnu-efi/parallel-make-archives.patch | 48 +++++++++ .../gnu-efi/gnu-efi/parallel-make.patch | 22 ++++ meta/recipes-bsp/gnu-efi/gnu-efi_3.0u.bb | 33 ++++++ meta/recipes-bsp/gummiboot/gummiboot_git.bb | 25 +++++ .../initrdscripts/files/init-install-efi.sh | 51 ++++++--- 9 files changed, 292 insertions(+), 29 deletions(-) create mode 100644 meta/classes/gummiboot.bbclass create mode 100644 meta/recipes-bsp/gnu-efi/gnu-efi/parallel-make-archives.patch create mode 100644 meta/recipes-bsp/gnu-efi/gnu-efi/parallel-make.patch create mode 100644 meta/recipes-bsp/gnu-efi/gnu-efi_3.0u.bb create mode 100644 meta/recipes-bsp/gummiboot/gummiboot_git.bb -- 1.8.5.3