16da00e64d
modules for the initial ramdisk if there were no additional kernel module packages (such as the NVIDIA driver or AUFS), leading to a kernel panic in the initrd. This was because in that case modprobe would print paths referring to the kernel path rather than the module aggregation path, and then `sed "s^$kernel^$out^"' would silently fail. Fixed. * Also, use depmod here rather than doing sed hackery on modules.dep. * Also, `allowMissing' was broken (missing "$" before the variable name). svn path=/nixpkgs/trunk/; revision=15394
36 lines
932 B
Bash
36 lines
932 B
Bash
source $stdenv/setup
|
|
|
|
set -o pipefail
|
|
|
|
PATH=$module_init_tools/sbin:$PATH
|
|
|
|
version=$(cd $kernel/lib/modules && ls -d *)
|
|
|
|
echo "kernel version is $version"
|
|
|
|
export MODULE_DIR=$(readlink -f $kernel/lib/modules/)
|
|
|
|
# Determine the dependencies of each root module.
|
|
closure=
|
|
for module in $rootModules; do
|
|
echo "root module: $module"
|
|
deps=$(modprobe --config /dev/null --set-version "$version" --show-depends "$module" \
|
|
| sed 's/^insmod //') \
|
|
|| if test -z "$allowMissing"; then exit 1; fi
|
|
#for i in $deps; do echo $i; done
|
|
closure="$closure $deps"
|
|
done
|
|
|
|
echo "closure:"
|
|
ensureDir $out
|
|
for module in $closure; do
|
|
target=$(echo $module | sed "s^/nix/store/.*/lib/modules/^$out/lib/modules/^")
|
|
if test -e "$target"; then continue; fi
|
|
mkdir -p $(dirname $target)
|
|
echo $module
|
|
cp $module $target
|
|
echo $target >> $out/insmod-list
|
|
done
|
|
|
|
MODULE_DIR=$out/lib/modules/ depmod -a $version
|