Installing Alpine Linux on OrangePi RV2: Difference between revisions
mNo edit summary |
mNo edit summary |
||
| Line 1: | Line 1: | ||
{{Draft}} | |||
[[Main Page]] > [[:Category:Architectures|Architectures]] > [[Riscv64]] > Installing Alpine Linux on OrangePi RV2 | [[Main Page]] > [[:Category:Architectures|Architectures]] > [[Riscv64]] > Installing Alpine Linux on OrangePi RV2 | ||
<br /><br /> | <br /><br /> | ||
| Line 7: | Line 8: | ||
{{Warning|The following are the issues that are known to exist between the result of this guide and the manufacturer provided image}} | {{Warning|The following are the issues that are known to exist between the result of this guide and the manufacturer provided image}} | ||
* | * WiFi is not functional | ||
* Manufacturer tools are not included | * Manufacturer tools are not included | ||
* Custom kernel build required | |||
== Setting up a workspace == | |||
Begin by setting up a RISC-V workspace by following [[Riscv64|Running Alpine riscv64 in QEMU]]. You'll need to establish a build environment in this QEMU guest. | |||
<blockquote><code>doas apk add alpine-sdk bison flex openssl-dev ncurses ncurses-dev</code></blockquote> | |||
{{Info|<code>ncurses</code> and <code>ncurses-dev</code> aren't a hard requirement but are useful if you want to run <code>make menuconfig</code>}} | |||
[[Category:Riscv64]] | [[Category:Riscv64]] | ||
Revision as of 03:43, 29 March 2026
Do not follow instructions here until this notice is removed. |
Main Page > Architectures > Riscv64 > Installing Alpine Linux on OrangePi RV2

Warning: The contributors to the Alpine Linux project are not responsible for any damage/loss experienced by using the following guide. This article is provided as a general reference to be adapted to your specific setup. It is assumed that the implementer will have the knowledge and ability to close the gap between what is described here and their specific setup.
Known issues

Warning: The following are the issues that are known to exist between the result of this guide and the manufacturer provided image
- WiFi is not functional
- Manufacturer tools are not included
- Custom kernel build required
Setting up a workspace
Begin by setting up a RISC-V workspace by following Running Alpine riscv64 in QEMU. You'll need to establish a build environment in this QEMU guest.
doas apk add alpine-sdk bison flex openssl-dev ncurses ncurses-dev
