Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion debian/control.in
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@ Standards-Version: 4.6.2
Build-Depends: debhelper-compat (= 13),
bc, bison, flex, libssl-dev, libelf-dev, dwarves,
python3, kmod, cpio, rsync, pkg-config, gcc, make,
dkms, kgsl-dkms
dkms, kgsl-dkms, camx-dkms, iris-vpu-dkms,
audioreach-dkms,
Homepage: https://kernel.org
Rules-Requires-Root: binary-targets

Expand Down
3 changes: 3 additions & 0 deletions debian/dkms-modules
Original file line number Diff line number Diff line change
Expand Up @@ -10,3 +10,6 @@
# To disable a module temporarily: comment out the line with #.
# debian/rules and debian/scripts/bundle-dkms-modules.sh are untouched in either case.
kgsl
camx
iris-vpu
audioreach
14 changes: 9 additions & 5 deletions debian/scripts/bundle-dkms-modules.sh
Original file line number Diff line number Diff line change
Expand Up @@ -447,11 +447,15 @@ for name in $DKMS_MODULES; do
| sed -n 's/^[[:space:]]*BUILD_EXCLUSIVE_CONFIG=//p' \
| tr -d '"')"
[[ -n "$c" ]] || continue
if grep -q "^${c}=[ym]" "$kernel_config" 2>/dev/null; then
echo " | $c is set in this kernel's config" >&2
else
echo " | $c is NOT set in this kernel's config" >&2
fi
# BUILD_EXCLUSIVE_CONFIG may name several options, space
# separated, all of which must be set.
for one in $c; do
if grep -q "^${one}=[ym]" "$kernel_config" 2>/dev/null; then
echo " | $one is set in this kernel's config" >&2
else
echo " | $one is NOT set in this kernel's config" >&2
fi
done
done <<< "$gates"
echo " This kernel: $KVER, dkms arch $DKMS_ARCH." >&2
else
Expand Down
Loading