From 7fd81f9e3236705865a64fd750ecfc16f6281ad5 Mon Sep 17 00:00:00 2001 From: chendexi Date: Wed, 28 Jun 2023 08:07:02 +0000 Subject: [PATCH] update build.sh. Signed-off-by: chendexi --- build.sh | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/build.sh b/build.sh index 8a34af81..a2e60630 100755 --- a/build.sh +++ b/build.sh @@ -50,6 +50,11 @@ install_rpms() { *) fatal "Architecture ${arch} not supported" esac + case $arch in + "x86_64") yum install virglrenderer;; + *) echo "Only x86_64 need to install virglrenderer additionally" + esac + yum install -y libsolv rpm-devel grubby initscripts iptables nftables python3-setuptools linux-firmware bubblewrap json-c ostree json-glib polkit-libs ostree-devel dnf-plugins-core container-selinux oci-runtime arch=$(uname -m) case $arch in -- Gitee