2024-10-29 12:34:34 +00:00
|
|
|
{
|
|
|
|
pkgs,
|
|
|
|
nixos-hardware,
|
2024-10-29 12:37:35 +00:00
|
|
|
config,
|
2024-10-29 12:34:34 +00:00
|
|
|
...
|
2024-11-09 14:02:26 +00:00
|
|
|
}:
|
|
|
|
{
|
2024-10-29 12:29:05 +00:00
|
|
|
imports = [
|
|
|
|
"${nixos-hardware}/starfive/visionfive/v2/default.nix"
|
|
|
|
];
|
|
|
|
boot.loader.systemd-boot.extraInstallCommands = ''
|
|
|
|
set -euo pipefail
|
|
|
|
${pkgs.coreutils}/bin/cp --no-preserve=mode -r ${config.hardware.deviceTree.package} ${config.boot.loader.efi.efiSysMountPoint}/
|
2024-10-31 12:26:09 +00:00
|
|
|
if [[ -d ${config.boot.loader.efi.efiSysMountPoint}/loader/entries ]]; then
|
2024-10-31 08:05:51 +00:00
|
|
|
for filename in ${config.boot.loader.efi.efiSysMountPoint}/loader/entries/nixos*-generation-[1-9]*.conf; do
|
|
|
|
if ! ${pkgs.gnugrep}/bin/grep -q 'devicetree' $filename; then
|
|
|
|
${pkgs.coreutils}/bin/echo "devicetree /dtbs/${config.hardware.deviceTree.name}" >> $filename
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
fi
|
2024-10-29 12:29:05 +00:00
|
|
|
'';
|
|
|
|
hardware.deviceTree.name = "starfive/jh7110-starfive-visionfive-2-v1.3b.dtb";
|
|
|
|
boot.initrd.kernelModules = [
|
|
|
|
"dw_mmc-starfive"
|
|
|
|
"motorcomm"
|
|
|
|
"dwmac-starfive"
|
|
|
|
"cdns3-starfive"
|
|
|
|
"jh7110-trng"
|
|
|
|
"phy-jh7110-usb"
|
|
|
|
"clk-starfive-jh7110-aon"
|
|
|
|
"clk-starfive-jh7110-stg"
|
|
|
|
"clk-starfive-jh7110-vout"
|
|
|
|
"clk-starfive-jh7110-isp"
|
|
|
|
"clk-starfive-jh7100-audio"
|
|
|
|
"phy-jh7110-pcie"
|
|
|
|
"pcie-starfive"
|
|
|
|
"nvme"
|
|
|
|
];
|
|
|
|
}
|