Testing 6.11.0 - No audio
Valdis Kl=?utf-8?Q?=c4=93?=tnieks
valdis.kletnieks at vt.edu
Fri Sep 27 21:10:43 EDT 2024
On Fri, 27 Sep 2024 17:22:41 -0700, Manuel Quintero F said:
> I already have audio with the compiled kernel. I copied the
> configuration /boot/config-6.10.9-amd64
>
> I had to do it by hand, copy it and rename it to .config because the
> command shown in https://kernelnewbies.org/KernelBuild, does not work:
>
> cp /boot/config-`uname -r`* .config
>
> it shows me the error that the ".config" directory does not exist.
I'm willing to bet that you have a /boot/config-6.10.9-amd64 and also a
/boot/config-6.10.9-i686 or similar, so when you did the cp command, the *
expanded to 2 filenames. And if there's 3 or more filenames total, the last one needs
to be the target directory to copy the 2+ preceding files into.
Moral of the story - beware of shell metacharacter expansions.
If you're unsure of what's going on, try sticking an 'echo' in front
of the command:
$ echo cp /boot/config-`uname -r`* .config
Having said that, I'm not sure what changes to make to the webpage to
avoid this issue....
More information about the Kernelnewbies
mailing list