2023-09-11 15:44:14 +02:00
|
|
|
"""kernel rpms"""
|
|
|
|
|
|
|
|
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_file")
|
|
|
|
|
|
|
|
def kernel_rpms():
|
|
|
|
http_file(
|
|
|
|
name = "kernel",
|
|
|
|
urls = [
|
2023-12-05 09:35:48 +01:00
|
|
|
"https://cdn.confidential.cloud/constellation/cas/sha256/9b19efd281645344a54b31e83900652136901c795dca4021385ec1e2946b725d",
|
|
|
|
"https://cdn.confidential.cloud/constellation/kernel/6.1.64-100.constellation/kernel-6.1.64-100.constellation.fc38.x86_64.rpm",
|
2023-09-11 15:44:14 +02:00
|
|
|
],
|
|
|
|
downloaded_file_path = "kernel.rpm",
|
2023-12-05 09:35:48 +01:00
|
|
|
sha256 = "9b19efd281645344a54b31e83900652136901c795dca4021385ec1e2946b725d",
|
2023-09-11 15:44:14 +02:00
|
|
|
)
|
|
|
|
http_file(
|
|
|
|
name = "kernel_core",
|
|
|
|
urls = [
|
2023-12-05 09:35:48 +01:00
|
|
|
"https://cdn.confidential.cloud/constellation/cas/sha256/46a7b1697fce01cad3c2517ae7d7b35f022296ddf5c615d8b73c633990a23313",
|
|
|
|
"https://cdn.confidential.cloud/constellation/kernel/6.1.64-100.constellation/kernel-core-6.1.64-100.constellation.fc38.x86_64.rpm",
|
2023-09-11 15:44:14 +02:00
|
|
|
],
|
|
|
|
downloaded_file_path = "kernel-core.rpm",
|
2023-12-05 09:35:48 +01:00
|
|
|
sha256 = "46a7b1697fce01cad3c2517ae7d7b35f022296ddf5c615d8b73c633990a23313",
|
2023-09-11 15:44:14 +02:00
|
|
|
)
|
|
|
|
http_file(
|
|
|
|
name = "kernel_modules",
|
|
|
|
urls = [
|
2023-12-05 09:35:48 +01:00
|
|
|
"https://cdn.confidential.cloud/constellation/cas/sha256/b842238c14df63545922dcdcab018c6dc2077dd92853d4b877732628aafc1abe",
|
|
|
|
"https://cdn.confidential.cloud/constellation/kernel/6.1.64-100.constellation/kernel-modules-6.1.64-100.constellation.fc38.x86_64.rpm",
|
2023-09-11 15:44:14 +02:00
|
|
|
],
|
|
|
|
downloaded_file_path = "kernel-modules.rpm",
|
2023-12-05 09:35:48 +01:00
|
|
|
sha256 = "b842238c14df63545922dcdcab018c6dc2077dd92853d4b877732628aafc1abe",
|
2023-09-11 15:44:14 +02:00
|
|
|
)
|
|
|
|
http_file(
|
|
|
|
name = "kernel_modules_core",
|
|
|
|
urls = [
|
2023-12-05 09:35:48 +01:00
|
|
|
"https://cdn.confidential.cloud/constellation/cas/sha256/ab09c4bc8d41676d464475ff29c064a5655985d98554f657cb5b7257358f1b5f",
|
|
|
|
"https://cdn.confidential.cloud/constellation/kernel/6.1.64-100.constellation/kernel-modules-core-6.1.64-100.constellation.fc38.x86_64.rpm",
|
2023-09-11 15:44:14 +02:00
|
|
|
],
|
|
|
|
downloaded_file_path = "kernel-modules-core.rpm",
|
2023-12-05 09:35:48 +01:00
|
|
|
sha256 = "ab09c4bc8d41676d464475ff29c064a5655985d98554f657cb5b7257358f1b5f",
|
2023-09-11 15:44:14 +02:00
|
|
|
)
|