Changes between Version 26 and Version 27 of venice/bsp


Ignore:
Timestamp:
03/13/2024 10:36:21 PM (8 weeks ago)
Author:
Tim Harvey
Comment:

update formatting

Legend:

Unmodified
Added
Removed
Modified
  • venice/bsp

    v26 v27  
    257257
    258258[=#modules]
    259 == Building External or Out-of-Tree Kernel Modules
     259== Building External or Out-of-Tree Kernel Modules on Target
    260260
    261261Gateworks 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:
     
    267267}}}
    268268
    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
     269Examples:
     270 1. cryptodev-linux:
     271{{{#!bash
     272git clone http://github.com/cryptodev-linux/cryptodev-linux
     273cd cryptodev-linux
     274make && make modules_install
     275modprobe cryptodev
     276}}}
     277 1. nrc7292 (mac80211):
     278{{{#!bash
     279git clone http://github.com/Gateworks/nrc7292
     280cd nrc7292/package/src/nrc/
     281make && make modules_install
     282modprobe nrc
    281283}}}
    282284