forked from microsoft/docker
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Improve checking dummy kernel module
Signed-off-by: Stefan Scherer <[email protected]>
- Loading branch information
1 parent
9ad946e
commit 53ba08c
Showing
2 changed files
with
17 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -28,3 +28,18 @@ So for example in order to build a Docker binary one has to | |
1. clone the Docker/Docker repository on an ARM device `git clone [email protected]:docker/docker.git` | ||
2. change into the checked out repository with `cd docker` | ||
3. execute `make binary` to create a Docker Engine binary for ARM | ||
|
||
## Kernel modules | ||
A few libnetwork integration tests require that the kernel be | ||
configured with "dummy" network interface and has the module | ||
loaded. However, the dummy module may be not loaded automatically. | ||
|
||
To load the kernel module permanently, run these commands as `root`. | ||
|
||
modprobe dummy | ||
echo "dummy" >> /etc/modules | ||
|
||
On some systems you also have to sync your kernel modules. | ||
|
||
oc-sync-kernel-modules | ||
depmod |