In a few cases a license was added: Stuff coming from Linux is "GPL-2.0" (not GPL-2.0-only!), build-release is by me and got the usual GPL-2.0-only treatment. uio_usbdebug and spkmodem had their licenses propagate to all their files. Change-Id: Ia5712bbaa417cb9e937834512351fcc0acfa16be Signed-off-by: Patrick Georgi <pgeorgi@google.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/41202 Reviewed-by: Angel Pons <th3fanbus@gmail.com> Reviewed-by: HAOUAS Elyes <ehaouas@noos.fr> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
		
			
				
	
	
		
			50 lines
		
	
	
		
			940 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			50 lines
		
	
	
		
			940 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
#!/usr/bin/env bash
 | 
						|
# SPDX-License-Identifier: BSD-2-Clause
 | 
						|
 | 
						|
if [ -z "$1" ] || [ -z "$2" ]; then
 | 
						|
	printf "Usage: %s <output file> \"<microcode .h files>\"\\n" "$0"
 | 
						|
fi
 | 
						|
 | 
						|
OUTFILE=$1
 | 
						|
TMPFILE=$(mktemp microcode_XXXX)
 | 
						|
cat > "${TMPFILE}.c" << EOF
 | 
						|
#include <stdio.h>
 | 
						|
unsigned int microcode[] = {
 | 
						|
EOF
 | 
						|
 | 
						|
include_file() {
 | 
						|
	if [ "${1: -4}" == ".inc" ]; then
 | 
						|
		sed '/^;/d' <"$1" | awk '{gsub( /h.*$/, "", $2 ); print "0x" $2 ","; }' \
 | 
						|
			>> "${TMPFILE}.c"
 | 
						|
	else
 | 
						|
		echo "#include \"$1\"" >> "${TMPFILE}.c"
 | 
						|
	fi
 | 
						|
}
 | 
						|
 | 
						|
for UCODE in ${@:2}; do
 | 
						|
	if [ -d "$UCODE" ]; then
 | 
						|
		for f in "$UCODE/"*.inc
 | 
						|
		do
 | 
						|
			include_file "$f"
 | 
						|
		done
 | 
						|
	else
 | 
						|
		include_file "$UCODE"
 | 
						|
	fi
 | 
						|
done
 | 
						|
 | 
						|
cat >> "${TMPFILE}.c" << EOF
 | 
						|
};
 | 
						|
int main(void)
 | 
						|
{
 | 
						|
	FILE *f = fopen("$OUTFILE", "wb");
 | 
						|
	fwrite(microcode, sizeof(microcode), 1, f);
 | 
						|
	fclose(f);
 | 
						|
	return 0;
 | 
						|
}
 | 
						|
EOF
 | 
						|
 | 
						|
gcc -o "$TMPFILE" "${TMPFILE}.c"
 | 
						|
[ -f "${TMPFILE}.exe" ] && mv "${TMPFILE}.exe" "$TMPFILE"
 | 
						|
"./$TMPFILE"
 | 
						|
rm "$TMPFILE" "${TMPFILE}.c"
 |