mirror of
https://github.com/pentoo/pentoo-overlay
synced 2026-05-06 19:42:31 +02:00
5 lines
235 B
Bash
Executable file
5 lines
235 B
Bash
Executable file
#!/bin/sh
|
|
printf 'This script outputs firmware information in the format expected by /etc/genkernel.conf\n'
|
|
printf 'FIRMWARE_FILES="'
|
|
sudo dmesg | awk '/Loading firmware:/{print $7}' | sort -u | paste -sd ',' | tr -d '\n'
|
|
printf '"\n'
|