mirror of
https://github.com/linuxkit/linuxkit.git
synced 2025-12-25 07:52:44 +00:00
13 lines
205 B
Bash
Executable File
13 lines
205 B
Bash
Executable File
#!/bin/sh
|
|
|
|
function failed {
|
|
printf "Kernel config test suite FAILED\n"
|
|
}
|
|
|
|
/check-kernel-config.sh || failed
|
|
bash /check-config.sh || failed
|
|
|
|
printf "Kernel config test suite PASSED\n"
|
|
|
|
cat /etc/linuxkit
|