Should we support x86 (32 bit archintecture) ? #218
rabbit-aaron
started this conversation in
Ideas
Replies: 1 comment
-
You are right since it does not support x86 if the modification is simple. Thanks I was able to make it work |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Hey guys, awesome project!
I'm running this on my really old laptop, it has an Atom N270 processor which is x86 (or i686), I was able to build the image by changing
FROM ubuntu AS s6build
to
FROM debian AS s6build
and add
i386) ARCH='x86';; \
then it builds and runs fine on my laptop.
For newer versions of s6, we'd need to use
i386) ARCH='i686';; \
Beta Was this translation helpful? Give feedback.
All reactions