Building FullPageOS variant for 64bit #680
Replies: 9 comments
-
|
On my fork, I'm trying to use a 64-bit GitHub runner with a 64-bit Raspian image URL and I'm getting the following build error: qemu-arm-static: /usr/bin/bash: Invalid ELF image for this architecturehttps://github.com/alectrocute/FullPageOS/actions/runs/14478532329/job/40609993848 |
Beta Was this translation helpful? Give feedback.
-
|
It is currently completely impossible to build a new FullpageOS with current Debian/Ubuntu distributions. Unless the developer changes something in the code, the end is unfortunately in sight for FullpageOS ;-( |
Beta Was this translation helpful? Give feedback.
-
|
Hey, sorry not to reply sooner. I am pretty busy these days. Its more than possible to build arm64 builds. I went to length creating CustomPiOS v2 to facilitate that. I am using here both Ubuntu 24.10 and debian bullseye to build. @topa-LE If you have a particular distribution that is causing you issues please provide more details. The docker build method should let you build on any linux machine that can run docker. If you are using hte docker method, you need to set the base board to sudo docker exec -it fullpageos-build build -b raspberrypiarm64 -d |
Beta Was this translation helpful? Give feedback.
-
|
I tried to run: but I found a strange error: I checked in my workspace directory and found these: Can anyone help me? |
Beta Was this translation helpful? Give feedback.
-
|
@paspiz85 Try running again, its a docker bug. Also, trixie is not working yet guysoft/CustomPiOS#260 |
Beta Was this translation helpful? Give feedback.
-
|
Try this @paspiz85 : #!/bin/bash
# Fix Docker loop device exhaustion
# Common issue when building disk images in Docker
echo "Cleaning up loop devices in container..."
docker exec fullpageos-build bash -c "
# Detach all loop devices
losetup -D
# Clean up any leftover mounts
umount -l /distro/workspace/mount/boot/firmware 2>/dev/null
umount -l /distro/workspace/mount 2>/dev/null
# Remove old image files
cd /distro/workspace && rm -f *.img
"
echo "Done! Loop devices cleaned up."
|
Beta Was this translation helpful? Give feedback.
-
|
I see guysoft/CustomPiOS#259 is closed but also guysoft/CustomPiOS#260 is fixed? However, I'm retrying building FullPageOS for RaspiOS lite x64 with following commands: but I haven't workspace directory and my log are: @guysoft have you any suggestion? |
Beta Was this translation helpful? Give feedback.
-
|
One is closed because it was on a specific topic in trixie, the other is for all the rest. You can just do the build command with the download option: |
Beta Was this translation helpful? Give feedback.
-
|
Also converting this to a discussion. Its not an issue, because its about an issue. |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
I'm using a Raspberry Pi 5 with 8GB of memory. Everything runs better in 64bit but I noticed FullPageOS is 32-only. How can I build with the 64bit version of Raspian?
Beta Was this translation helpful? Give feedback.
All reactions