Difference between revisions of "NixOS on ARM/Wandboard"

From NixOS Wiki
Jump to: navigation, search
m (Adds breadcrumb)
m (rollback unauthorized mass edits)
Tag: Rollback
 
(3 intermediate revisions by 2 users not shown)
Line 1: Line 1:
{{ARM/breadcrumb}}
+
This page has been moved to the official NixOS Wiki:
<div class="infobox">
 
{|class="table"
 
!colspan="2" class="title"|Wandboard Family
 
|-
 
!colspan="2" class="title"|Solo/Dual/Quad
 
|-
 
!Architecture
 
|ARMv7
 
|}
 
</div>
 
<!-- TODO : write intro paragraph -->
 
== Status ==
 
  
'''@dezgeg''''s porting efforts to ARMv7 should work.
+
    ⇒ '''[https://wiki.nixos.org/wiki/NixOS_on_ARM/Wandboard NixOS on ARM/Wandboard]'''
  
== Board-specific installation notes ==
+
''— samueldr, Lead of NixOS on ARM.''
 
 
First follow the [[NixOS_on_ARM#Installation|generic installation steps]] to get the installer image.
 
 
 
U-Boot and its SPL need to be copied to specific sectors on the microSD card with dd. Download U-Boot & SPL for the board (<code>uboot-wandboard_defconfig-2017.03_u-boot.img</code>, <code>uboot-wandboard_defconfig-2017.03_SPL</code>), and copy them to the correct location with (again, replace /dev/sdX with the correct path to the SD card device):
 
 
 
<syntaxhighlight lang="bash">
 
sudo dd if=uboot-wandboard_defconfig-2017.03_SPL        of=/dev/sdX seek=1 bs=1k
 
sudo dd if=uboot-wandboard_defconfig-2017.03_u-boot.img of=/dev/sdX seek=69 bs=1k
 
</syntaxhighlight>
 
 
 
{{note|Only the Quad model has been tested, but the others should work as well with the same U-Boot binary.}}
 
 
 
Then, install using the [[NixOS_on_ARM#NixOS_installation_.26_configuration|installation and configuration steps]].
 
 
 
== Serial console==
 
 
 
{{expansion|The exact <code>console</code> parameter is needed.}}
 
 
 
== Notes about the boot process ==
 
 
 
Only serial console (via the DB-9 connector) is supported.
 

Latest revision as of 10:56, 6 April 2024

This page has been moved to the official NixOS Wiki:

    ⇒ NixOS on ARM/Wandboard

— samueldr, Lead of NixOS on ARM.