The package 'bluezFull' got superseded by 'bluez'. So just remove the related line since 'bluez' is the default. Change-Id: Ibf72c37205017b27012064b311a9510136351c0f Signed-off-by: Felix Singer <felixsinger@posteo.net> Reviewed-on: https://review.coreboot.org/c/coreboot/+/79416 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Marvin Evers <marvin.n.evers@gmail.com> Reviewed-by: Maximilian Brune <maximilian.brune@9elements.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.11.tar.gz
 |