mirror of
https://github.com/rancher/os-kernel.git
synced 2025-04-29 11:03:19 +00:00
If you have a script that build a custom driver, you could place it in scripts/hooks directory, the ci script will build it in order.
10 lines
357 B
Bash
Executable File
10 lines
357 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# This should be an excutable shell script, which builds your customized driver in to kernel.
|
|
#
|
|
# To minimize maintenance, it is better to be self-sufficent, or with minimum external dependencies.
|
|
# e.g. gcc mydriver.c
|
|
#
|
|
# A real world example is shown at https://github.com/rancher/os-kernel/commit/93b71d24fb6368d38f562184d6fb5a97926265df
|
|
#
|