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
It also has the compiler version and you can potentially figure out the toolchain and build environment they used from that. I always try to reproduce the build and compare it because I don't want to be missing anything like a switch set in the environment rather than defconfig.
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