user2636174
user2636174

Reputation:

necessary kernel module files for beaglebone black

How to compile the necessary kernel module file for beaglebone black? What are the compiled kernel files to copy to the target? make modules_install INSTALL_MOD_PATH=$TARGETDIR generated huge number of files

Upvotes: 0

Views: 75

Answers (1)

Shubhang Borkar
Shubhang Borkar

Reputation: 11

If you want to cross compile to build the kernel, you can use this inside your linux kernel downloaded files

make ARCH=arm CROSS_COMPILE=arm-linux-gnueabihf- modules

Upvotes: 0

Related Questions