Last change
on this file since 103996 was 103996, checked in by vboxsync, 13 months ago |
Additions/3D/mesa: export mesa-24.0.2 to OSE. bugref:10606
|
File size:
845 bytes
|
Line | |
---|
1 | #!/usr/bin/env bash
|
---|
2 | # shellcheck disable=SC1091 # The relative paths in this file only become valid at runtime.
|
---|
3 | # When changing this file, you need to bump the following
|
---|
4 | # .gitlab-ci/image-tags.yml tags:
|
---|
5 | # KERNEL_ROOTFS_TAG
|
---|
6 | set -ex
|
---|
7 |
|
---|
8 | export DEBIAN_FRONTEND=noninteractive
|
---|
9 |
|
---|
10 | # Needed for ci-fairy, this revision is able to upload files to
|
---|
11 | # MinIO and doesn't depend on git
|
---|
12 | pip3 install --break-system-packages git+http://gitlab.freedesktop.org/freedesktop/ci-templates@ffe4d1b10aab7534489f0c4bbc4c5899df17d3f2
|
---|
13 |
|
---|
14 | # Needed for manipulation with traces yaml files.
|
---|
15 | pip3 install --break-system-packages yq
|
---|
16 |
|
---|
17 | passwd root -d
|
---|
18 | chsh -s /bin/sh
|
---|
19 |
|
---|
20 | cat > /init <<EOF
|
---|
21 | #!/bin/sh
|
---|
22 | export PS1=lava-shell:
|
---|
23 | exec sh
|
---|
24 | EOF
|
---|
25 | chmod +x /init
|
---|
26 |
|
---|
27 | # Copy timezone file and remove tzdata package
|
---|
28 | rm -rf /etc/localtime
|
---|
29 | cp /usr/share/zoneinfo/Etc/UTC /etc/localtime
|
---|
30 |
|
---|
31 | . strip-rootfs.sh
|
---|
Note:
See
TracBrowser
for help on using the repository browser.