ubuntu 22.04 flash-kernel errors , unsupported platform: LuckyFox Pico Plus

  • Hello, you need to install the kernel module directly and use the insmod command, not all platforms support the apt package of linux-modules
    The kernel module needs to be compiled, you can run ./build.sh kernelconfig in the root path of the Luckfox Pico SDK, select the module to save and exit, and then execute

    Code: Select all

    ./build.sh kernel
    ./build.sh driver
    ./build.sh firmware
    
    After re-burning the image, the corresponding KO file will be placed in “/oem/usr/ko”
  • Crocodile wrote: 2024-09-11 2:37 Hello, you need to install the kernel module directly and use the insmod command, not all platforms support the apt package of linux-modules
    The kernel module needs to be compiled, you can run ./build.sh kernelconfig in the root path of the Luckfox Pico SDK, select the module to save and exit, and then execute

    Code: Select all

    ./build.sh kernel
    ./build.sh driver
    ./build.sh firmware
    
    After re-burning the image, the corresponding KO file will be placed in “/oem/usr/ko”
    It works! Thank you so much!