@@ -22,15 +22,24 @@ DEBIAN_FRONTEND="noninteractive" apt-get install --no-install-recommends -y \
22
22
libvirglrenderer-dev libvirglrenderer1 \
23
23
debhelper-compat libdbus-1-dev libglib2.0-dev meson ninja-build dbus
24
24
25
+ # `riscv64` specific
26
+ if [ " $ARCH " == " riscv64" ]; then
27
+ DEBIAN_FRONTEND=" noninteractive" apt-get install --no-install-recommends -y \
28
+ openssh-server systemd init ifupdown busybox udev isc-dhcp-client
29
+ fi
30
+
25
31
# cleanup
26
32
apt-get clean && rm -rf /var/lib/apt/lists/*
27
33
28
34
# help musl-gcc find linux headers
29
- pushd /usr/include/$ARCH -linux-musl
30
- ln -s ../$ARCH -linux-gnu/asm asm
31
- ln -s ../linux linux
32
- ln -s ../asm-generic asm-generic
33
- popd
35
+ # Skip on `riscv64` for now
36
+ if [ " $ARCH " != " riscv64" ]; then
37
+ pushd /usr/include/$ARCH -linux-musl
38
+ ln -s ../$ARCH -linux-gnu/asm asm
39
+ ln -s ../linux linux
40
+ ln -s ../asm-generic asm-generic
41
+ popd
42
+ fi
34
43
35
44
pip3 install --no-cache-dir pytest pexpect boto3 pytest-timeout && apt purge -y python3-pip
36
45
@@ -52,46 +61,67 @@ rustup component add miri rust-src --toolchain nightly
52
61
rustup component add llvm-tools-preview # needed for coverage
53
62
54
63
# Install other rust targets.
55
- rustup target add $ARCH -unknown-linux-musl $ARCH -unknown-none
64
+ # Skip on `riscv64` for now
65
+ if [ " $ARCH " != " riscv64" ]; then
66
+ rustup target add $ARCH -unknown-linux-musl $ARCH -unknown-none
67
+ fi
56
68
57
69
cargo install cargo-llvm-cov
58
70
59
71
# Install aemu, gfxstream, libgpiod and libpipewire (required by vhost-device crate)
60
- pushd /opt
61
- git clone https://android.googlesource.com/platform/hardware/google/aemu
62
- pushd aemu
63
- git checkout v0.1.2-aemu-release
64
- cmake -DAEMU_COMMON_GEN_PKGCONFIG=ON \
65
- -DAEMU_COMMON_BUILD_CONFIG=gfxstream \
66
- -DENABLE_VKCEREAL_TESTS=OFF -B build
67
- cmake --build build -j
68
- cmake --install build
69
- popd
70
- rm -rf aemu
71
- git clone https://android.googlesource.com/platform/hardware/google/gfxstream
72
- pushd gfxstream
73
- git checkout v0.1.2-gfxstream-release
74
- meson setup host-build/
75
- meson install -C host-build/
76
- popd
77
- rm -rf gfxstream
78
- git clone --depth 1 --branch v2.0 https://git.kernel.org/pub/scm/libs/libgpiod/libgpiod.git/
79
- pushd libgpiod
80
- ./autogen.sh --prefix=/usr && make && make install
81
- popd
82
- rm -rf libgpiod
83
- wget https://gitlab.freedesktop.org/pipewire/pipewire/-/archive/0.3.71/pipewire-0.3.71.tar.gz
84
- tar xzvf pipewire-0.3.71.tar.gz
85
- pushd pipewire-0.3.71
86
- meson setup builddir --prefix=" /usr" -Dbuildtype=release \
87
- -Dauto_features=disabled -Ddocs=disabled -Dtests=disabled \
88
- -Dexamples=disabled -Dinstalled_tests=disabled -Dsession-managers=[] && \
89
- meson compile -C builddir && \
90
- meson install -C builddir
91
- popd
92
- rm -rf pipewire-0.3.71
93
- rm pipewire-0.3.71.tar.gz
94
- popd
72
+ # `aemu` has yet supported `riscv64`, skipping `vhost-device` related
73
+ # dependencies for `riscv64` at the time being
74
+ if [ " $ARCH " != " riscv64" ]; then
75
+ pushd /opt
76
+ git clone https://android.googlesource.com/platform/hardware/google/aemu
77
+ pushd aemu
78
+ git checkout v0.1.2-aemu-release
79
+ cmake -DAEMU_COMMON_GEN_PKGCONFIG=ON \
80
+ -DAEMU_COMMON_BUILD_CONFIG=gfxstream \
81
+ -DENABLE_VKCEREAL_TESTS=OFF -B build
82
+ cmake --build build -j
83
+ cmake --install build
84
+ popd
85
+ rm -rf aemu
86
+ git clone https://android.googlesource.com/platform/hardware/google/gfxstream
87
+ pushd gfxstream
88
+ git checkout v0.1.2-gfxstream-release
89
+ meson setup host-build/
90
+ meson install -C host-build/
91
+ popd
92
+ rm -rf gfxstream
93
+ git clone --depth 1 --branch v2.0 https://git.kernel.org/pub/scm/libs/libgpiod/libgpiod.git/
94
+ pushd libgpiod
95
+ ./autogen.sh --prefix=/usr && make && make install
96
+ popd
97
+ rm -rf libgpiod
98
+ wget https://gitlab.freedesktop.org/pipewire/pipewire/-/archive/0.3.71/pipewire-0.3.71.tar.gz
99
+ tar xzvf pipewire-0.3.71.tar.gz
100
+ pushd pipewire-0.3.71
101
+ meson setup builddir --prefix=" /usr" -Dbuildtype=release \
102
+ -Dauto_features=disabled -Ddocs=disabled -Dtests=disabled \
103
+ -Dexamples=disabled -Dinstalled_tests=disabled -Dsession-managers=[] && \
104
+ meson compile -C builddir && \
105
+ meson install -C builddir
106
+ popd
107
+ rm -rf pipewire-0.3.71
108
+ rm pipewire-0.3.71.tar.gz
109
+ popd
110
+ fi
95
111
96
112
# dbus-daemon expects this folder
97
113
mkdir /run/dbus
114
+
115
+ # `riscv64` specific
116
+ if [ " $ARCH " == " riscv64" ]; then
117
+ # Set passwd for debugging
118
+ echo ' root:rustvmm' | chpasswd
119
+ # Allow root login
120
+ sed -i ' s/#PermitRootLogin prohibit-password/PermitRootLogin yes/g' /etc/ssh/sshd_config
121
+ sed -i ' s/#PermitUserEnvironment no/PermitUserEnvironment yes/g' /etc/ssh/sshd_config
122
+ # Enable ssh
123
+ systemctl enable ssh
124
+ mkdir -p /root/.ssh
125
+ # Setup network
126
+ echo $' auto lo\n iface lo inet loopback\n\n auto eth0\n iface eth0 inet dhcp\n ' > /etc/network/interfaces
127
+ fi
0 commit comments