NixOS on RISCV/VisionFive 2: Difference between revisions
→Manually build a SD-card image: Configure different root filesystem type |
m →Setup: Add uboot btrfs config |
||
| Line 98: | Line 98: | ||
expandOnBoot = false; | expandOnBoot = false; | ||
}; | }; | ||
nixpkgs.overlays = [ | |||
(final: prev: { | |||
ubootVisionFive2 = prev.ubootVisionFive2.overrideAttrs (oldAttrs: { | |||
extraConfig = (oldAttrs.extraConfig or "") + '' | |||
CONFIG_FS_BTRFS=y | |||
CONFIG_CMD_BTRFS=y | |||
''; | |||
}); | |||
}) | |||
]; | |||
</nowiki>}} | </nowiki>}} | ||