moved the adapted /usr/src/linux/.config file to my configs folder
you don't need to move the .config. It needs to be in /usr/src/linux for the kernel to compile correctly and for make menuconfig to use it. I see you are using genkernel, doesn't that copy the .config to /etc/kernels anyway? You shouldn't need to move it anywhere.
Bottom line....leave the .config file in /usr/src/linux and all should be well.
HTH
/edit
as you use genkernel you can edit the /etc/genkernel.conf file to do a make oldconfig, and then do a make menuconfig automatically when you run genkernel.
Code: Select all
# =========Common Command Line Option Defaults=========
# Run 'make oldconfig' before compiling this kernel?
# If set to "yes", also suppresses the fetch of the kernel .config file from
# /etc/kernels, thus preserving the .config file in /usr/src/linux.
OLDCONFIG="YES"
# Run 'make menuconfig' before compiling this kernel?
MENUCONFIG="YES"
I don't actually use genkernel, but there are other settings in the genkernel.conf files that you may want to check. The file seems to have good explanations for each variable in the comments.