Skip to content

Commit be912a4

Browse files
authored
Revert "Revert "Add kata metapackage change""
1 parent c2c263a commit be912a4

File tree

2 files changed

+2
-65
lines changed

2 files changed

+2
-65
lines changed

tools/osbuilder/rootfs-builder/cbl-mariner/config.sh

+2-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,8 @@
55
OS_NAME=cbl-mariner
66
OS_VERSION=${OS_VERSION:-2.0}
77
LIBC="gnu"
8-
PACKAGES="core-packages-base-image ca-certificates device-mapper"
8+
PACKAGES="kata-packages-uvm"
9+
[ "$CONF_GUEST" = yes ] && PACKAGES+=" kata-packages-uvm-coco"
910
[ "$AGENT_INIT" = no ] && PACKAGES+=" systemd"
1011
[ "$SECCOMP" = yes ] && PACKAGES+=" libseccomp"
1112
[ "$AGENT_POLICY" = yes ] && PACKAGES+=" opa" || true

tools/osbuilder/rootfs-builder/cbl-mariner/rootfs_lib.sh

-64
Original file line numberDiff line numberDiff line change
@@ -22,69 +22,5 @@ build_rootfs()
2222
info "install packages for rootfs"
2323
$DNF install ${EXTRA_PKGS} ${PACKAGES}
2424

25-
# Reduce the image size, for faster TEE memory measurement.
26-
local MARINER_REMOVED_PACKAGES=( \
27-
"bc" \
28-
"bridge-utils" \
29-
"bzip2" \
30-
"chkconfig" \
31-
"cracklib-dicts" \
32-
"curl" \
33-
"curl-libs" \
34-
"cyrus-sasl-lib" \
35-
"e2fsprogs" \
36-
"expat" \
37-
"file" \
38-
"findutils" \
39-
"gdbm" \
40-
"gmp" \
41-
"gnupg2" \
42-
"gpgme" \
43-
"gzip" \
44-
"iana-etc" \
45-
"iproute" \
46-
"iputils" \
47-
"krb5" \
48-
"libarchive" \
49-
"libassuan" \
50-
"libdb" \
51-
"libksba" \
52-
"libpwquality" \
53-
"libsolv" \
54-
"libssh2" \
55-
"libtool" \
56-
"libuv" \
57-
"libxml2" \
58-
"lua-libs" \
59-
"mariner-rpm-macros" \
60-
"ncurses" \
61-
"nghttp2" \
62-
"net-tools" \
63-
"nettle" \
64-
"newt" \
65-
"npth" \
66-
"openldap" \
67-
"openssh-clients" \
68-
"openssl" \
69-
"pinentry" \
70-
"pcre" \
71-
"rpm" \
72-
"rpm-libs" \
73-
"sed" \
74-
"shadow-utils" \
75-
"sqlite-libs" \
76-
"slang" \
77-
"sudo" \
78-
"tar" \
79-
"tzdata" \
80-
"xz" \
81-
)
82-
83-
for MARINER_REMOVED_PACKAGE in ${MARINER_REMOVED_PACKAGES[@]}
84-
do
85-
info "removing package ${MARINER_REMOVED_PACKAGE}"
86-
rpm -e "${MARINER_REMOVED_PACKAGE}" --nodeps --root=${ROOTFS_DIR}
87-
done
88-
8925
rm -rf ${ROOTFS_DIR}/usr/share/{bash-completion,cracklib,doc,info,locale,man,misc,pixmaps,terminfo,zoneinfo,zsh}
9026
}

0 commit comments

Comments
 (0)