The resolute and stonking kernels declare libelf-dev, libdw-dev and libssl-dev unqualified, unlike the Debian control which carries the same names qualified :native for the host-side tools (resolve_btfids, gendwarfksyms, sign-file). The dpkg cross rules resolve an unqualified Multi-Arch: same name against the host architecture only, so a cross build installs no build-architecture variants and the kernel's host-side tools cannot link (-ldw, -lelf, -lssl all fail). Inject the :native variants for the affected series — the declared unqualified dependencies stay, so the target-side tools keep their host-architecture libraries. Series-scoped so the entry can be dropped once the control is fixed upstream.
68 lines
2.5 KiB
YAML
68 lines
2.5 KiB
YAML
# Quirks configuration for package-specific workarounds
|
|
# This file defines package-specific quirks that are applied during pull and deb operations
|
|
#
|
|
# `pull` and `deb` hold one entry per scope: several entries can carry
|
|
# different `series` lists, and every matching entry applies in file
|
|
# order. Entries can be scoped with `series`: an empty list applies to
|
|
# every series, otherwise only the listed ones. Packaging workarounds
|
|
# should carry the series they were verified against so they can be
|
|
# dropped once the upstream packaging catches up.
|
|
|
|
quirks:
|
|
|
|
# The resolute kernels declare `llvm-21-dev` unqualified while their
|
|
# other llvm pieces are `:native`; the dpkg cross rules then resolve it
|
|
# against the host architecture, whose dependency closure conflicts with
|
|
# the `:native` python3. Resolve it against the build architecture
|
|
# until the control is fixed upstream.
|
|
# The resolute and stonking kernels declare the host-tool libraries
|
|
# unqualified (libelf-dev for resolve_btfids, libdw-dev for
|
|
# gendwarfksyms, libssl-dev for sign-file), unlike the Debian control,
|
|
# which carries the same names qualified `:native`. The dpkg cross
|
|
# rules resolve an unqualified Multi-Arch: same name against the host
|
|
# architecture only, so a cross build installs no build-architecture
|
|
# variants and the kernel's host-side tools cannot link. Inject the
|
|
# build-architecture variants until the control is fixed upstream.
|
|
linux:
|
|
deb:
|
|
- series: [resolute]
|
|
dependencies:
|
|
replace:
|
|
llvm-21-dev: llvm-21-dev:native <!stage1>
|
|
- series: [resolute, stonking]
|
|
dependencies:
|
|
inject:
|
|
- libelf-dev:native
|
|
- libdw-dev:native
|
|
- libssl-dev:native
|
|
linux-riscv:
|
|
deb:
|
|
- series: [resolute]
|
|
dependencies:
|
|
replace:
|
|
llvm-21-dev: llvm-21-dev:native <!stage1>
|
|
- series: [resolute, stonking]
|
|
dependencies:
|
|
inject:
|
|
- libelf-dev:native
|
|
- libdw-dev:native
|
|
- libssl-dev:native
|
|
|
|
# Add more packages and their quirks as needed
|
|
# example-package:
|
|
# pull:
|
|
# - series: [noble]
|
|
# package_directory:
|
|
# - linux-main
|
|
# deb:
|
|
# - series: [resolute]
|
|
# dependencies:
|
|
# replace:
|
|
# llvm-21-dev: llvm-21-dev:native <!stage1>
|
|
# - series: [stonking]
|
|
# dependencies:
|
|
# replace:
|
|
# llvm-22-dev: llvm-22-dev:native <!stage1>
|
|
# parameters:
|
|
# key: value
|