internal/rosa/meson: migrate to helper interface

This change also removes some unused options.

Signed-off-by: Ophestra <cat@gensokyo.uk>
This commit is contained in:
2026-03-02 14:07:16 +09:00
parent 145ccd1c92
commit 04d9984da0
6 changed files with 123 additions and 124 deletions

View File

@@ -7,13 +7,13 @@ func (t Toolchain) newKmod() pkg.Artifact {
version = "34.2"
checksum = "0K7POeTKxMhExsaTsnKAC6LUNsRSfe6sSZxWONPbOu-GI_pXOw3toU_BIoqfBhJV"
)
return t.NewViaMeson("kmod", version, pkg.NewHTTPGetTar(
return t.NewPackage("kmod", version, pkg.NewHTTPGetTar(
nil, "https://www.kernel.org/pub/linux/utils/kernel/"+
"kmod/kmod-"+version+".tar.gz",
mustDecode(checksum),
pkg.TarGzip,
), &MesonAttr{
Configure: [][2]string{
), nil, &MesonHelper{
Setup: [][2]string{
{"Dsysconfdir", "/system/etc"},
{"Dbashcompletiondir", "no"},
{"Dfishcompletiondir", "no"},
@@ -22,12 +22,12 @@ func (t Toolchain) newKmod() pkg.Artifact {
},
// makes assumptions about the running kernel
SkipCheck: true,
SkipTest: true,
},
t.Load(Zlib),
t.Load(Zstd),
t.Load(OpenSSL),
t.Load(KernelHeaders),
Zlib,
Zstd,
OpenSSL,
KernelHeaders,
)
}
func init() { artifactsF[Kmod] = Toolchain.newKmod }