unofficial mirror of bug-guix@gnu.org 
 help / color / mirror / code / Atom feed
* bug#26714: non-intel systems should use grub-efi
@ 2017-04-30  7:14 Efraim Flashner
  2017-04-30 14:10 ` Marius Bakke
                   ` (2 more replies)
  0 siblings, 3 replies; 5+ messages in thread
From: Efraim Flashner @ 2017-04-30  7:14 UTC (permalink / raw)
  To: 26714

[-- Attachment #1: Type: text/plain, Size: 874 bytes --]

I'm starting to stumble my way through building an install image for
aarch64, and I changed gnu/system/install.scm to use 'grub-efi' in place
of 'grub' in the list of packages (~line 333). Grub-efi builds
successfully on armhf and aarch64 and grub does not, and as part of
compiling install.scm grub is built as part of assembling the image.

guix size grub:     157.5 MiB
guix size grub-efi: 160.5 MiB

I don't know a lot of how the install image is put together, or if using
grub-efi in place of grub for building the image would be a problem for
non-efi machines, but for non-intel machines at least we should use
grub-efi for the grub calls.


-- 
Efraim Flashner   <efraim@flashner.co.il>   אפרים פלשנר
GPG key = A28B F40C 3E55 1372 662D  14F7 41AA E7DC CA3D 8351
Confidentiality cannot be guaranteed on emails sent or received unencrypted

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 833 bytes --]

^ permalink raw reply	[flat|nested] 5+ messages in thread

* bug#26714: non-intel systems should use grub-efi
  2017-04-30  7:14 bug#26714: non-intel systems should use grub-efi Efraim Flashner
@ 2017-04-30 14:10 ` Marius Bakke
  2017-04-30 16:20   ` Efraim Flashner
  2017-04-30 19:57 ` Chris Marusich
  2020-04-07 14:54 ` Marius Bakke
  2 siblings, 1 reply; 5+ messages in thread
From: Marius Bakke @ 2017-04-30 14:10 UTC (permalink / raw)
  To: Efraim Flashner, 26714

[-- Attachment #1: Type: text/plain, Size: 534 bytes --]

Efraim Flashner <efraim@flashner.co.il> writes:

> I'm starting to stumble my way through building an install image for
> aarch64, and I changed gnu/system/install.scm to use 'grub-efi' in place
> of 'grub' in the list of packages (~line 333). Grub-efi builds
> successfully on armhf and aarch64 and grub does not, and as part of
> compiling install.scm grub is built as part of assembling the image.

How does grub fail to build aarch64? This sounds like an upstream bug.

Note that 'grub-efi' currently does not have tests enabled.

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 487 bytes --]

^ permalink raw reply	[flat|nested] 5+ messages in thread

* bug#26714: non-intel systems should use grub-efi
  2017-04-30 14:10 ` Marius Bakke
@ 2017-04-30 16:20   ` Efraim Flashner
  0 siblings, 0 replies; 5+ messages in thread
From: Efraim Flashner @ 2017-04-30 16:20 UTC (permalink / raw)
  To: Marius Bakke, 26714



On April 30, 2017 5:10:08 PM GMT+03:00, Marius Bakke <mbakke@fastmail.com> wrote:
>Efraim Flashner <efraim@flashner.co.il> writes:
>
>> I'm starting to stumble my way through building an install image for
>> aarch64, and I changed gnu/system/install.scm to use 'grub-efi' in
>place
>> of 'grub' in the list of packages (~line 333). Grub-efi builds
>> successfully on armhf and aarch64 and grub does not, and as part of
>> compiling install.scm grub is built as part of assembling the image.
>
>How does grub fail to build aarch64? This sounds like an upstream bug.
>
>Note that 'grub-efi' currently does not have tests enabled.

As we discussed briefly on irc, the tests indeed are not run for grub-efi.  Grub fails during the test phase in a similar manner to arm failing, with many many test failures.

-- 
Sent from my Android device with K-9 Mail. Please excuse my brevity.

^ permalink raw reply	[flat|nested] 5+ messages in thread

* bug#26714: non-intel systems should use grub-efi
  2017-04-30  7:14 bug#26714: non-intel systems should use grub-efi Efraim Flashner
  2017-04-30 14:10 ` Marius Bakke
@ 2017-04-30 19:57 ` Chris Marusich
  2020-04-07 14:54 ` Marius Bakke
  2 siblings, 0 replies; 5+ messages in thread
From: Chris Marusich @ 2017-04-30 19:57 UTC (permalink / raw)
  To: Efraim Flashner; +Cc: 26714

[-- Attachment #1: Type: text/plain, Size: 871 bytes --]

Efraim Flashner <efraim@flashner.co.il> writes:

> I'm starting to stumble my way through building an install image for
> aarch64, and I changed gnu/system/install.scm to use 'grub-efi' in place
> of 'grub' in the list of packages (~line 333). Grub-efi builds
> successfully on armhf and aarch64 and grub does not, and as part of
> compiling install.scm grub is built as part of assembling the image.
>
> guix size grub:     157.5 MiB
> guix size grub-efi: 160.5 MiB
>
> I don't know a lot of how the install image is put together, or if using
> grub-efi in place of grub for building the image would be a problem for
> non-efi machines, but for non-intel machines at least we should use
> grub-efi for the grub calls.

Do the system installation tests pass with that change?  You can run the
following to find out:

  make check-system

-- 
Chris

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 832 bytes --]

^ permalink raw reply	[flat|nested] 5+ messages in thread

* bug#26714: non-intel systems should use grub-efi
  2017-04-30  7:14 bug#26714: non-intel systems should use grub-efi Efraim Flashner
  2017-04-30 14:10 ` Marius Bakke
  2017-04-30 19:57 ` Chris Marusich
@ 2020-04-07 14:54 ` Marius Bakke
  2 siblings, 0 replies; 5+ messages in thread
From: Marius Bakke @ 2020-04-07 14:54 UTC (permalink / raw)
  To: Efraim Flashner, 26714-done

GRUB builds successfully on armhf and aarch64 nowadays, so I'm closing
this bug.

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2020-04-07 14:56 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-04-30  7:14 bug#26714: non-intel systems should use grub-efi Efraim Flashner
2017-04-30 14:10 ` Marius Bakke
2017-04-30 16:20   ` Efraim Flashner
2017-04-30 19:57 ` Chris Marusich
2020-04-07 14:54 ` Marius Bakke

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/guix.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).