21 lines
671 B
Plaintext
21 lines
671 B
Plaintext
|
|
#!/bin/bash
|
||
|
|
|
||
|
|
export LC_ALL=C
|
||
|
|
|
||
|
|
# Create or clear the LICENSE file
|
||
|
|
echo "# License Information" > LICENSE
|
||
|
|
echo "" >> LICENSE
|
||
|
|
echo "This file lists all licenses used by recipes in the meta-freescale layer." >> LICENSE
|
||
|
|
echo "" >> LICENSE
|
||
|
|
|
||
|
|
# Find all .bb and .inc files and extract license information
|
||
|
|
find . -type f \( -name "*.bb" -o -name "*.inc" \) | sort | while read -r file; do
|
||
|
|
# Extract the license line from each recipe file, if it exists
|
||
|
|
license_line=$(grep -i "^LICENSE" "$file")
|
||
|
|
if [ -n "$license_line" ]; then
|
||
|
|
echo "$file: $license_line" >> LICENSE
|
||
|
|
fi
|
||
|
|
done
|
||
|
|
|
||
|
|
echo "LICENSE file has been generated and updated with current recipe licenses."
|