mirror of
https://github.com/edgelesssys/constellation.git
synced 2024-10-01 01:36:09 -04:00
27 lines
567 B
Python
27 lines
567 B
Python
load("//bazel/mkosi:mkosi_image.bzl", "mkosi_image")
|
|
|
|
mkosi_image(
|
|
name = "initrd",
|
|
srcs = [
|
|
"mkosi.postinst",
|
|
] + glob([
|
|
"mkosi.skeleton/**",
|
|
]),
|
|
outs = [
|
|
"image",
|
|
"image.cpio.zst",
|
|
],
|
|
extra_trees = [
|
|
"//image:sysroot_tar",
|
|
"//image:cryptsetup_closure",
|
|
"//disk-mapper/cmd:disk-mapper-package.tar",
|
|
],
|
|
local_mirror = ["@mkosi_rpms//:repo"],
|
|
mkosi_conf = "mkosi.conf",
|
|
tags = [
|
|
"manual",
|
|
"no-cache",
|
|
],
|
|
visibility = ["//visibility:public"],
|
|
)
|