~alpine/users

5 5

UEFI 32 bit

Details
Message ID
<20200807105229.b543bc0b2d2b7603e846c0ce@posteo.net>
DKIM signature
missing
Download raw message
Hi,

I have a machine (x86) which has 32-bit UEFI. I can be install debian and arch in it [https://hwswbits.blogspot.com/2015/03/getting-linux-on-minix-neo-z64.html] modifying installation script. Is alpine linux prepared for that case or I have to modify somehow the distro? Any hints?

Thanks in advance,
Xavier
PICCORO McKAY Lenz <mckaygerhard@gmail.com>
Details
Message ID
<CALci+FQE5FpqreOBnnfcShr2TYHbh0+P6yamTJ=OyaTHKfsxbA@mail.gmail.com>
In-Reply-To
<20200807105229.b543bc0b2d2b7603e846c0ce@posteo.net> (view parent)
DKIM signature
missing
Download raw message
apart of the usage of winbvuntu.. the "bootia32.efi" must be compiled?

why not just install  alpine using chroot from the already installed linux
? less complicated in xtrange steps.. later you can try to change things..

i heard that 32bit UEFI bios are not common!

Lenz McKAY Gerardo (PICCORO)
http://qgqlochekone.blogspot.com


El vie., 7 de ago. de 2020 a la(s) 04:22, Xavier B. (somenxavier@posteo.net)
escribió:

> Hi,
>
> I have a machine (x86) which has 32-bit UEFI. I can be install debian and
> arch in it [
> https://hwswbits.blogspot.com/2015/03/getting-linux-on-minix-neo-z64.html]
> modifying installation script. Is alpine linux prepared for that case or I
> have to modify somehow the distro? Any hints?
>
> Thanks in advance,
> Xavier
>
Details
Message ID
<20200807161626.154af30e@ncopa-desktop.copa.dup.pw>
In-Reply-To
<20200807105229.b543bc0b2d2b7603e846c0ce@posteo.net> (view parent)
DKIM signature
missing
Download raw message
On Fri, 7 Aug 2020 10:52:29 +0200
"Xavier B." <somenxavier@posteo.net> wrote:

> Hi,
> 
> I have a machine (x86) which has 32-bit UEFI. I can be install debian and arch in it [https://hwswbits.blogspot.com/2015/03/getting-linux-on-minix-neo-z64.html] modifying installation script. Is alpine linux prepared for that case or I have to modify somehow the distro? Any hints?
> 
> Thanks in advance,
> Xavier

Short answer: I dont think its tested, but it is possible you could run it 32 bit.

Alternatively you could wget the 32bit grub package from 64bit alpine
and extract the gruia32.efi file and copy it to grubx64.efi similar to
what they mention in that article.

But basically, you are on your own here.

Please share if you make it work :)

-nc
Details
Message ID
<20200809195239.1f7e87d0be1d96a40aece694@posteo.net>
In-Reply-To
<20200807161626.154af30e@ncopa-desktop.copa.dup.pw> (view parent)
DKIM signature
missing
Download raw message
Thanks a lot. But if it's not tested, I will not make risk


On Fri, 7 Aug 2020 16:16:26 +0200
Natanael Copa <ncopa@alpinelinux.org> ha escrit:

> On Fri, 7 Aug 2020 10:52:29 +0200
> "Xavier B." <somenxavier@posteo.net> wrote:
> 
> > Hi,
> > 
> > I have a machine (x86) which has 32-bit UEFI. I can be install debian and arch in it [https://hwswbits.blogspot.com/2015/03/getting-linux-on-minix-neo-z64.html] modifying installation script. Is alpine linux prepared for that case or I have to modify somehow the distro? Any hints?
> > 
> > Thanks in advance,
> > Xavier
> 
> Short answer: I dont think its tested, but it is possible you could run it 32 bit.
> 
> Alternatively you could wget the 32bit grub package from 64bit alpine
> and extract the gruia32.efi file and copy it to grubx64.efi similar to
> what they mention in that article.
> 
> But basically, you are on your own here.
> 
> Please share if you make it work :)
> 
> -nc
Marcus Rohrmoser <work@mro.name>
Details
Message ID
<6162C82A-DE2F-4E7A-8DA6-A9B355103FD2@mro.name>
In-Reply-To
<20200807105229.b543bc0b2d2b7603e846c0ce@posteo.net> (view parent)
DKIM signature
missing
Download raw message
I'm having the a similar issue with my Asus x205ta notebook.

Currently I'm on xubuntu focal plus an additional partition to dual-boot alpine.

But I'm clueless
- which partition/directory to put the alpine boot image,
- how to tell grub about it,
- how to actually bootstrap alpine (lost in documentation).

I'm ok with keeping a xubuntu just to seed/update grub in long terms.

M
Details
Message ID
<253f99a0368a4eba90f81a50453ae3e5@cybersecure.com>
In-Reply-To
<6162C82A-DE2F-4E7A-8DA6-A9B355103FD2@mro.name> (view parent)
DKIM signature
missing
Download raw message
I've been able to get this working in the past with a Lenovo TV stick, which has a x64 processor with a 32 bit uefi.


I'm going from memory so sorry if might miss something, but you need to do the following:


  1.  Install Alpine as uefi using the setup-alpine script
  2.  Mount your new install to /mnt from the live envirnment
  3.  chroot into to /mnt
  4.  Inside the chroot, mount the EFI partition to /boot/efi
  5.  Delete everything inside /boot/efi
  6.  Copy this file (https://github.com/hirotakaster/baytail-bootia32.efi/blob/master/bootia32.efi) into /boot/efi/alpine
  7.  Create the file:   /boot/efi/alpine/startup.nsh
  8.  Put this line in startup.nsh:   bootia32.efi
  9.  Now install grub again, with these parameters:    grub-install --removable --no-nvram /dev/sda
  10. umount /boot/efi and exit the chroot
  11. umount /mnt and reboot

Again, I'm going from memory so there might be a mistake in the order or a step I've missed, but this should hopefully work.


________________________________
From: ~alpine/users <~alpine/users@lists.alpinelinux.org> on behalf of Marcus Rohrmoser <work@mro.name>
Sent: Tuesday, 11 August 2020 6:56 PM
To: ~alpine/users@lists.alpinelinux.org
Subject: Re: UEFI 32 bit

I'm having the a similar issue with my Asus x205ta notebook.

Currently I'm on xubuntu focal plus an additional partition to dual-boot alpine.

But I'm clueless
- which partition/directory to put the alpine boot image,
- how to tell grub about it,
- how to actually bootstrap alpine (lost in documentation).

I'm ok with keeping a xubuntu just to seed/update grub in long terms.

M

David Davies

National: 1300 854 292
www.cybersecure.com<http://www.cybersecure.com>

Australia's trusted cyber protection provider since 2003
Reply to thread Export thread (mbox)