1
1
mirror of https://github.com/NixOS/mobile-nixos.git synced 2024-12-01 03:32:26 +03:00
mobile-nixos/devices/pine64-pinetab
2023-09-15 15:34:38 -04:00
..
firmware pine64-pinetab: Fix firmware license 2023-01-26 19:19:31 -05:00
kernel pine64-pinetab: Normalize kernel config 2023-09-15 15:34:38 -04:00
ucm2 device: Add pine64-pinetab 2021-03-23 21:17:18 -07:00
default.nix pine64-pinetab: Configure serial console 2023-05-03 19:45:54 -04:00
README.adoc pine64-pinetab: Fix README note about U-Boot 2022-05-29 19:47:43 -04:00
sound.nix device: Add pine64-pinetab 2021-03-23 21:17:18 -07:00

= Pine64 PineTab
include::_support/common.inc[]

== Device-specific notes

This configuration is for the retail version of PineTab, with the Feixin K101
IM2BYL02 display panel. For display to work on the early dev units with IM2BA02
panels, you need to use the correct device tree.

=== Building a full disk image

This platform uses the `u-boot` system-type. This means that a full disk image
can be produced, and this full disk image flashed _outright_ to the block
device. That block device can be the internal eMMC or the SD card.

The PineTab will boot from SD card if a bootloader can be found. This means
that the full disk image can be flashed to an SD card, and it will prioritise
booting it.

```
 $ nix-build --argstr device pine64-pinetab -A build.disk-image
 $ dd if=result of=/dev/mmcblkX bs=8M oflag=sync,direct status=progress
```

=== Building the boot partition

Building the full disk image may require a native AArch64 system.

The boot partition can be built, and then flashed on top of an existing Mobile
NixOS boot partition.

```
 $ nix-build --argstr device pine64-pinetab -A build.boot-partition
 $ dd if=result/mobile-nixos-boot.img of=/dev/mmcblkXp3 bs=8M oflag=sync,direct status=progress
```

=== Building U-Boot

Mobile NixOS is not managing platform firmware builds anymore.

PineTab support in Tow-Boot [is planned](https://github.com/Tow-Boot/Tow-Boot/issues/144).