From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from list by lists.gnu.org with archive (Exim 4.90_1) id 1lKJl8-0007Ss-5F for mharc-grub-devel@gnu.org; Thu, 11 Mar 2021 06:45:43 -0500 Received: from eggs.gnu.org ([2001:470:142:3::10]:39294) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1lKJkw-0007PQ-38 for grub-devel@gnu.org; Thu, 11 Mar 2021 06:45:30 -0500 Received: from youngberry.canonical.com ([91.189.89.112]:41246) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_128_CBC_SHA1:128) (Exim 4.90_1) (envelope-from ) id 1lKJkn-0000ti-Ec for grub-devel@gnu.org; Thu, 11 Mar 2021 06:45:29 -0500 Received: from mail-il1-f199.google.com ([209.85.166.199]) by youngberry.canonical.com with esmtps (TLS1.2:ECDHE_RSA_AES_128_GCM_SHA256:128) (Exim 4.86_2) (envelope-from ) id 1lKJkg-0003Pl-8q for grub-devel@gnu.org; Thu, 11 Mar 2021 11:45:14 +0000 Received: by mail-il1-f199.google.com with SMTP id k4so5944968ili.0 for ; Thu, 11 Mar 2021 03:45:14 -0800 (PST) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:mime-version:from:date:message-id:subject:to; bh=PchmTtkY4haeulwB44VBEVPN8Mz+zSVfodsxK8lJykw=; b=lZv91A08VKr2bjUE/Tw2UjxGn+6fYy4vP4S7+ti/g9sD7pUtni26lTJJSmd0inIHQb ZI84w5mTiQy6GtVmZgO5OjwETeTrZ1gmOTCOXNEhmUCdtroUqChkRt4ur6svRqrzCcCV tPQfbzuiaURBstksid7iLQqyxKxbc+vcVWcfz0G6Aq5cDxLNdcU7UCdke3Luf2dNlJaw dj9jfw/BJ0o7DeuhnZB8FUA/Bd7pogyNkhxj8dsA6o0X23EUeSjY3goenDV8yrMu3nUw tlByoe/DENt/rTjqWqxr2lGw4961fNNDCgPdLyJ7qmf8M+QZZiudcmyhlUw99Xo/k9gk sgrQ== X-Gm-Message-State: AOAM531a7otzQYeHFz7Iab3NPms6eoGXKm2rtIwZ2oxey+9iREnyYEbC qKEsMSW+Uhk6qcYzv7kYzIoCk03ty3mMGi7WhLdEf/HFznrBJ3rSM69LZ5zpQURV0eCCN7qD2KB nHdwUzMhfTueSVv4vbORGwKORsFELXUBAfUlXQFkfXRCy X-Received: by 2002:a05:6602:2287:: with SMTP id d7mr5977513iod.42.1615463113318; Thu, 11 Mar 2021 03:45:13 -0800 (PST) X-Google-Smtp-Source: ABdhPJwhbw35W4zI3ER6vfebGeHXjk1BtrawBKG+INsjkg1bDrZHoo/f6je4Hu6+o93VcEHwtvYGGd0fHpTQFWVyiTQ= X-Received: by 2002:a05:6602:2287:: with SMTP id d7mr5977501iod.42.1615463113104; Thu, 11 Mar 2021 03:45:13 -0800 (PST) MIME-Version: 1.0 From: Dimitri John Ledkov Date: Thu, 11 Mar 2021 11:44:37 +0000 Message-ID: Subject: [PATCH v2 1/8] linux/arm: fix ARM Linux header layout To: ard.biesheuvel@arm.com, The development of GNU GRUB , Daniel Kiper , Javier Martinez Canillas , Peter Jones , Leif Lindholm Content-Type: text/plain; charset="UTF-8" Received-SPF: none client-ip=91.189.89.112; envelope-from=dimitri.ledkov@canonical.com; helo=youngberry.canonical.com X-Spam_score_int: -68 X-Spam_score: -6.9 X-Spam_bar: ------ X-Spam_report: (-6.9 / 5.0 requ) BAYES_00=-1.9, RCVD_IN_DNSWL_HI=-5, RCVD_IN_MSPIKE_H3=0.001, RCVD_IN_MSPIKE_WL=0.001, SPF_HELO_NONE=0.001, SPF_NONE=0.001 autolearn=ham autolearn_force=no X-Spam_action: no action X-BeenThere: grub-devel@gnu.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: The development of GNU GRUB List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 11 Mar 2021 11:45:39 -0000 The patch from https://lists.gnu.org/archive/html/grub-devel/2020-10/msg00122.html Is still not applied, and yet it is required to boot armhf linux kernel in qemu OVMF with grub. It is applied in rhboot/grub2 https://src.fedoraproject.org/rpms/grub2/blob/rawhide/f/0143-Make-linux_arm_kernel_header.hdr_offset-be-at-the-ri.patch And it is applied in OpenSUSE too https://build.opensuse.org/package/view_file/openSUSE:Factory/grub2/0005-Make-linux_arm_kernel_header.hdr_offset-be-at-the-ri.patch?expand=1 I want to apply it in Ubuntu too. It is still not present in grub2 mainline, and applies cleanly. Can it please be applied? -- Regards, Dimitri.