2023-09-11 09:51:42 -04:00
|
|
|
load("@aspect_bazel_lib//lib:copy_file.bzl", "copy_file")
|
|
|
|
load("@aspect_bazel_lib//lib:copy_to_directory.bzl", "copy_to_directory")
|
2023-10-17 08:04:41 -04:00
|
|
|
load("@rules_pkg//:pkg.bzl", "pkg_tar")
|
2023-09-11 09:51:42 -04:00
|
|
|
load("//bazel/mkosi:mkosi_image.bzl", "mkosi_image")
|
|
|
|
|
|
|
|
copy_to_directory(
|
|
|
|
name = "rpms",
|
|
|
|
srcs = [
|
|
|
|
"@kernel//file",
|
|
|
|
"@kernel_core//file",
|
|
|
|
"@kernel_modules//file",
|
|
|
|
"@kernel_modules_core//file",
|
|
|
|
],
|
|
|
|
include_external_repositories = ["kernel*"],
|
|
|
|
replace_prefixes = {"file": ""},
|
|
|
|
)
|
|
|
|
|
|
|
|
[
|
|
|
|
copy_file(
|
|
|
|
name = name,
|
|
|
|
src = "@" + name + "//file",
|
|
|
|
out = name + ".rpm",
|
|
|
|
allow_symlink = True,
|
|
|
|
)
|
|
|
|
for name in [
|
|
|
|
"kernel",
|
|
|
|
"kernel_core",
|
|
|
|
"kernel_modules",
|
|
|
|
"kernel_modules_core",
|
|
|
|
]
|
|
|
|
]
|
|
|
|
|
|
|
|
mkosi_image(
|
|
|
|
name = "base",
|
|
|
|
srcs = [
|
|
|
|
"mkosi.postinst",
|
|
|
|
"mkosi.prepare",
|
|
|
|
] + glob([
|
|
|
|
"mkosi.skeleton/**",
|
|
|
|
]),
|
|
|
|
outs = [
|
|
|
|
"image",
|
|
|
|
"image.tar",
|
2023-10-17 08:04:41 -04:00
|
|
|
"image-.rpm.lock",
|
|
|
|
"image-packagemanifest",
|
|
|
|
"image-rpmdb.sqlite",
|
|
|
|
"image-rpmdb.sqlite-shm",
|
|
|
|
"image-rpmdb.sqlite-wal",
|
2023-09-11 09:51:42 -04:00
|
|
|
],
|
|
|
|
extra_trees = [
|
|
|
|
"//image:sysroot_tar",
|
2023-11-23 11:53:57 -05:00
|
|
|
"//image:cryptsetup_closure",
|
2023-09-11 09:51:42 -04:00
|
|
|
],
|
2023-10-16 10:45:36 -04:00
|
|
|
local_mirror = ["@mkosi_rpms//:repo"],
|
2023-09-11 09:51:42 -04:00
|
|
|
mkosi_conf = "mkosi.conf",
|
|
|
|
package_files = [
|
|
|
|
":kernel",
|
|
|
|
":kernel_core",
|
|
|
|
":kernel_modules",
|
|
|
|
":kernel_modules_core",
|
|
|
|
],
|
|
|
|
tags = [
|
|
|
|
"manual",
|
|
|
|
"no-cache",
|
|
|
|
],
|
|
|
|
visibility = ["//visibility:public"],
|
|
|
|
)
|
2023-10-17 08:04:41 -04:00
|
|
|
|
|
|
|
pkg_tar(
|
|
|
|
name = "rpmdb",
|
|
|
|
srcs = [
|
|
|
|
"image-.rpm.lock",
|
|
|
|
"image-packagemanifest",
|
|
|
|
"image-rpmdb.sqlite",
|
|
|
|
"image-rpmdb.sqlite-shm",
|
|
|
|
"image-rpmdb.sqlite-wal",
|
|
|
|
],
|
|
|
|
remap_paths = {
|
|
|
|
"/image-.rpm.lock": "/var/lib/rpm/.rpm.lock",
|
|
|
|
"/image-packagemanifest": "/usr/share/constellation/packagemanifest",
|
|
|
|
"/image-rpmdb.sqlite": "/var/lib/rpm/rpmdb.sqlite",
|
|
|
|
"/image-rpmdb.sqlite-shm": "/var/lib/rpm/rpmdb.sqlite-shm",
|
|
|
|
"/image-rpmdb.sqlite-wal": "/var/lib/rpm/image-rpmdb.sqlite-wal",
|
|
|
|
},
|
|
|
|
tags = ["manual"],
|
|
|
|
visibility = ["//visibility:public"],
|
|
|
|
)
|