Skip to content

Latest commit

 

History

History
20 lines (14 loc) · 527 Bytes

README.md

File metadata and controls

20 lines (14 loc) · 527 Bytes

Clounix-modules Device drivers for support of Clounix platform

Step 1~4 show how to build and execute CLX Kernel modules.

  1. Modify modules/Makefile to specify the output directory to BUILD_OUTPUT_DIR. The default output path is modules/build.

  2. Compile: cd modules/ && make

  3. The output kernel modules will be found in $(BUILD_OUTPUT_DIR)/module/

    • clx_dev.ko
    • clx_netif.ko
  4. Load modules: (1) insmod clx_dev.ko (2) insmod clx_netif.ko

    Note that the module inserting sequence cannot be changed.