Orange Pi5 kernel

Deprecated Linux kernel 5.10.110 for OrangePi 5/5B/5+ boards

3 Commits   0 Branches   0 Tags
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  1) #!/bin/sh
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  2) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  3) for PYTHON in python2 python3; do
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  4) 	# run check on a text and a binary file
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  5) 	for FILE in Makefile Documentation/logo.gif; do
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  6) 		$PYTHON scripts/spdxcheck.py $FILE
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  7) 		$PYTHON scripts/spdxcheck.py - < $FILE
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  8) 	done
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  9) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 10) 	# run check on complete tree to catch any other issues
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 11) 	$PYTHON scripts/spdxcheck.py > /dev/null
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 12) done