[VIM3] [Fenix] Modified Linux config does not take effect

Which Khadas SBC do you use?

VIM3

Which system do you use? Android, Ubuntu, OOWOW or others?

Ubuntu

Which version of system do you use? Khadas official images, self built images, or others?

Self built images

Please describe your issue below:

I’m using fenix and built gnome-ubuntu-20.04 adding a module. But that module is included when I flash the image that is built finally. Steps I followed to build the image.

  1. cd fenix
  2. make kernel-config // Include the module and save as .config
  3. make kernel-saveconfig // changes are seen in kvims_defconfig now
  4. make
  5. Once the image is built, I burnt the image using burn-tool in TST mode.
  6. Successful login into ubuntu OS.
  7. zcat /proc/config.gz // Module shown as not set.
  8. Device is not recognized after connected. dmesg throws error message “unsupported device”

Post a console log of your issue below:

NA

Help to get the module included with latest image.

What is the mistake I’m doing? Any way I can reduce the build and flash time for including new device drivers??

When you change the kernel you need to regenerate the kernel debian package, please follow the steps to rebulid the image.

$ make kernel-deb
$ make

Thank you very much. It works.