starfive-visionfive2: Add README.md

This commit is contained in:
Jakob Leifhelm 2023-04-16 22:53:29 +02:00
parent 0cc1214203
commit 82ae8a31ae
No known key found for this signature in database
GPG Key ID: 6817AA0238100822
1 changed files with 52 additions and 1 deletions

View File

@ -1,5 +1,56 @@
# Creating SD-Image
# Creating a SD-Image
Create and configure the `flake.nix` file:
``` nix
{
# Kernel is broken on riscv64 see https://github.com/NixOS/nixpkgs/issues/225756
inputs.nixpkgs.url =
"github:nixos/nixpkgs/c3e12e57c3e3d5c84cc500420be4507b3de33e90";
inputs.nixos-hardware.url = "github:nixos/nixos-hardware";
inputs.flake-utils.url = "github:numtide/flake-utils";
outputs = { self, nixpkgs, nixos-hardware, flake-utils }:
flake-utils.lib.eachDefaultSystem (system:
rec {
packages.default = packages.sd-image;
packages.sd-image = (import "${nixpkgs}/nixos" {
configuration =
{ config, ... }: {
imports = [
"${nixos-hardware}/starfive/visionfive/v2/sd-image-installer.nix"
];
# If you want to use ssh set a password
# users.users.nixos.password = "super secure password";
# OR add your public ssh key
# users.users.nixos.openssh.authorizedKeys.keys = [ "ssh-rsa ..." ];
# AND configure networking
# networking.interfaces.end0.useDHCP = true;
# networking.interfaces.end1.useDHCP = true;
# If you have the 2A variant uncomment the following line
# hardware.deviceTree.name =
# lib.mkDefault "starfive/jh7110-starfive-visionfive-2-v1.2a.dtb";
# Additional configuration goes here
sdImage.compressImage = false;
nixpkgs.crossSystem = {
config = "riscv64-unknown-linux-gnu";
system = "riscv64-linux";
};
system.stateVersion = "23.05";
};
inherit system;
}).config.system.build.sdImage;
});
}
```
Build the sd image.
``` sh
nix build .#
```