From bbf90b1f4bc01e0f6fb1344dee0853ac7e51135f Mon Sep 17 00:00:00 2001 From: Jordan Carlin Date: Wed, 24 Jul 2024 19:55:18 -0700 Subject: [PATCH] Add cpio to installation for buildroot --- bin/wally-package-install.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bin/wally-package-install.sh b/bin/wally-package-install.sh index ae70c1358..c2a3bb1aa 100755 --- a/bin/wally-package-install.sh +++ b/bin/wally-package-install.sh @@ -54,7 +54,7 @@ if [ "$FAMILY" == rhel ]; then QEMU_PACKAGES+=(glib2-devel libfdt-devel pixman-devel bzip2 ninja-build) SPIKE_PACKAGES+=(dtc boost-regex boost-system) VERILATOR_PACKAGES+=(help2man perl clang ccache gperftools numactl mold) - BUILDROOT_PACKAGES+=(ncurses-base ncurses ncurses-libs ncurses-devel gcc-gfortran) + BUILDROOT_PACKAGES+=(ncurses-base ncurses ncurses-libs ncurses-devel gcc-gfortran cpio) # Extra packages not availale in rhel8, nice for Verilator and needed for sail respectively if (( RHEL_VERSION >= 9 )); then VERILATOR_PACKAGES+=(perl-doc) @@ -81,7 +81,7 @@ elif [ "$FAMILY" == ubuntu ]; then SPIKE_PACKAGES+=(device-tree-compiler libboost-regex-dev libboost-system-dev) VERILATOR_PACKAGES+=(help2man perl g++ clang ccache libunwind-dev libgoogle-perftools-dev numactl perl-doc libfl2 libfl-dev zlib1g) SAIL_PACKAGES+=(opam z3) - BUILDROOT_PACKAGES+=(ncurses-base ncurses-bin libncurses-dev gfortran) + BUILDROOT_PACKAGES+=(ncurses-base ncurses-bin libncurses-dev gfortran cpio) fi