Conversation

Lazyweb, anyone know good tricks for discovering the kernel .config used on a device (old dev board) where /proc/config.gz was omitted and source was probably published but it's not clear where the relevant version is?
1
1
Replying to
You should check /proc/version since scripts/setlocalversion sets the version based on git describe. It might have a commit hash to help with finding the correct version of the sources and hopefully the kernel configuration. I'm used to a defconfig in sources but it isn't always.
1
Replying to and
One issue that I encountered recently is that the 32-bit ARM vdso wasn't being built because of a weird bug in the standard build system requiring an extra variable to be set in some build environments, which is not supposed to be necessary. I think it's still buggy upstream too.
1
Replying to
I think my issue is that it's just not accepting the kernel command line from u-boot, but I'm not sure what options are affecting this. CONFIG_ATAGS was missing and I added it but still no output. Any ideas?
1
Show replies