Changes between Version 26 and Version 27 of venice/bsp
- Timestamp:
- 03/13/2024 10:36:21 PM (8 months ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
venice/bsp
v26 v27 257 257 258 258 [=#modules] 259 == Building External or Out-of-Tree Kernel Modules 259 == Building External or Out-of-Tree Kernel Modules on Target 260 260 261 261 Gateworks Venice BSP now creates images that have built in support for building external or out-of-tree kernel modules on a target board, allowing users to extend the functionality of the kernel with custom or third-party modules. Below are some examples demonstrating how to build and install external modules on a one of our Venice boards: … … 267 267 }}} 268 268 269 {{{#!bash 270 cryptodev-linux: 271 git clone http://github.com/cryptodev-linux/cryptodev-linux 272 cd cryptodev-linux 273 make && make modules_install 274 modprobe cryptodev 275 276 nrc7292 (mac80211): 277 git clone http://github.com/Gateworks/nrc7292 278 cd nrc7292/package/src/nrc/ 279 make && make modules_install 280 modprobe nrc 269 Examples: 270 1. cryptodev-linux: 271 {{{#!bash 272 git clone http://github.com/cryptodev-linux/cryptodev-linux 273 cd cryptodev-linux 274 make && make modules_install 275 modprobe cryptodev 276 }}} 277 1. nrc7292 (mac80211): 278 {{{#!bash 279 git clone http://github.com/Gateworks/nrc7292 280 cd nrc7292/package/src/nrc/ 281 make && make modules_install 282 modprobe nrc 281 283 }}} 282 284