mirror of
				https://github.com/NixOS/nixos-hardware.git
				synced 2025-11-04 09:17:14 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			17 lines
		
	
	
		
			273 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			273 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
{ buildUBoot
 | 
						|
, opensbi
 | 
						|
}:
 | 
						|
 | 
						|
buildUBoot {
 | 
						|
  extraMakeFlags = [
 | 
						|
    "OPENSBI=${opensbi}/share/opensbi/lp64/generic/firmware/fw_dynamic.bin"
 | 
						|
  ];
 | 
						|
 | 
						|
  defconfig = "starfive_visionfive2_defconfig";
 | 
						|
 | 
						|
  filesToInstall = [
 | 
						|
    "spl/u-boot-spl.bin.normal.out"
 | 
						|
    "u-boot.itb"
 | 
						|
  ];
 | 
						|
}
 |