mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
linux module handling: support kernels without modules
This commit is contained in:
parent
59ddb3ebfb
commit
30bff42231
2 changed files with 20 additions and 0 deletions
|
@ -1,5 +1,19 @@
|
|||
source $stdenv/setup
|
||||
|
||||
# When no modules are built, the $out/lib/modules directory will not
|
||||
# exist. Because the rest of the script assumes it does exist, we
|
||||
# handle this special case first.
|
||||
if ! test -d "$out/lib/modules"; then
|
||||
if test -z "$rootModules" || test -n "$allowMissing"; then
|
||||
mkdir -p "$out"
|
||||
exit 0
|
||||
else
|
||||
echo "Required modules: $rootModules"
|
||||
echo "Can not derive a closure of kernel modules because no modules were provided."
|
||||
exit 1
|
||||
fi
|
||||
fi
|
||||
|
||||
version=$(cd $kernel/lib/modules && ls -d *)
|
||||
|
||||
echo "kernel version is $version"
|
||||
|
|
|
@ -9,6 +9,12 @@ buildEnv {
|
|||
''
|
||||
source ${stdenv}/setup
|
||||
|
||||
if ! test -d "$out/lib/modules"; then
|
||||
echo "No modules found."
|
||||
# To support a kernel without modules
|
||||
exit 0
|
||||
fi
|
||||
|
||||
kernelVersion=$(cd $out/lib/modules && ls -d *)
|
||||
if test "$(echo $kernelVersion | wc -w)" != 1; then
|
||||
echo "inconsistent kernel versions: $kernelVersion"
|
||||
|
|
Loading…
Reference in a new issue