-
Notifications
You must be signed in to change notification settings - Fork 184
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
installation/guides/arm-devices: add pinebook-pro page
- Loading branch information
1 parent
b968090
commit a59a042
Showing
1 changed file
with
34 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
# Pinebook Pro | ||
|
||
The Pinebook Pro is a Rockchip RK3399-based laptop. | ||
|
||
See Pine64's [documentation](https://pine64.org/documentation/Pinebook_Pro) for | ||
more information. | ||
|
||
## Installation | ||
|
||
The live ISO provided by Void is generic and does not have U-Boot integrated. | ||
You need to provide your own firmware installed on the internal SPI flash, eMMC, | ||
or an SD card, such as | ||
[Tow-Boot](https://tow-boot.org/devices/pine64-pinebookPro.html) or | ||
[rk2aw](https://xnux.eu/rk2aw/). | ||
|
||
Boot an aarch64 Void Linux live ISO using one of the "Void Linux for Pinebook | ||
Pro" menu entries in GRUB. | ||
|
||
To install, follow the [chroot install guide](../chroot.md), using the "XBPS | ||
method", observing the following modifications: | ||
|
||
For the base installation, install both `base-system` and `pinebookpro-base`. | ||
This package provides important configurations and installs the necessary | ||
dependencies. | ||
|
||
Before running `grub-install`, append the following to `/etc/default/grub`: | ||
|
||
``` | ||
GRUB_CMDLINE_LINUX_DEFAULT="$GRUB_CMDLINE_LINUX_DEFAULT console=ttyS2,115200 video=eDP-1:1920x1080x60" | ||
GRUB_DEFAULT_DTB="rockchip/rk3399-pinebook-pro.dtb" | ||
``` | ||
|
||
> Note: if using another bootloader, ensure the kernel cmdline arguments | ||
> `console=ttyS2,115200 video=eDP-1:1920x1080x60` are used. |