05-27-2021, 12:58 PM
The DT overlay list in Audio Config is genereted by the PHP function below which corresponds to the -o option in the moodeutl command. There is no preference being applied. It just lists all the audio overlays in kernel directory /boot/overlays.
Audio overlay files should contain the string 'sound-dai-cells'.
Whats the name of the overlay for the Wolfson card?
Code:
function list_audio_overlays () {
$dir = '/boot/overlays/';
$files = scandir($dir);
foreach ($files as $file) {
$contents = file_get_contents($dir . $file);
if (strpos($contents, 'sound-dai-cells') !== false) {
echo $file . "\n";
}
}
}
Audio overlay files should contain the string 'sound-dai-cells'.
Whats the name of the overlay for the Wolfson card?