Bump to 23.05 and also rename settings in order to compliant with newest namespaces and names. Change-Id: I4a23466bef5c45ebb82d92038ec2595103c984d3 Signed-off-by: Felix Singer <felixsinger@posteo.net> Reviewed-on: https://review.coreboot.org/c/coreboot/+/78399 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Martin L Roth <gaumless@gmail.com>
		
			
				
	
	
		
			15 lines
		
	
	
		
			330 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			330 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
| #!/usr/bin/env sh
 | |
| 
 | |
| config=$1
 | |
| 
 | |
| if [ -z "$config" ] || [ ! -f "$config" ]; then
 | |
| 	echo "Usage: $0 <config.nix>"
 | |
| 	echo "No config given. Exiting."
 | |
| 	exit 1
 | |
| fi
 | |
| 
 | |
| nix-build '<nixpkgs/nixos>' \
 | |
| 	-A config.system.build.isoImage \
 | |
| 	-I nixos-config=$config \
 | |
| 	-I nixpkgs=https://github.com/NixOS/nixpkgs/archive/refs/heads/nixos-23.05.tar.gz
 |