diff options
author | Eric Anholt <[email protected]> | 2020-03-05 15:26:28 -0800 |
---|---|---|
committer | Marge Bot <[email protected]> | 2020-03-11 21:36:47 +0000 |
commit | d51da8610f6c5c0a22f2a7b1c9bfd596a7c46949 (patch) | |
tree | 16957f6b5fa2de48e23a434958f7ed4b55dd267f /.gitlab-ci | |
parent | ff1183648a69f8d082a3fa0b067ccc66b5a78c23 (diff) |
ci: Fix installation of firmware for db410c's nic.
The debian firmware package doesn't actually contain it, costing us a
minute of boot time waiting for it to show up.
Lightly-reviewed-by: Kristian H. Kristensen <[email protected]>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/4076>
Diffstat (limited to '.gitlab-ci')
-rw-r--r-- | .gitlab-ci/create-rootfs.sh | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/.gitlab-ci/create-rootfs.sh b/.gitlab-ci/create-rootfs.sh index 2baaeeb22d9..21e0ee153fc 100644 --- a/.gitlab-ci/create-rootfs.sh +++ b/.gitlab-ci/create-rootfs.sh @@ -11,7 +11,6 @@ apt-get -y install --no-install-recommends \ libdrm2 \ libdrm-nouveau2 \ firmware-qcom-media \ - firmware-realtek \ wget \ xz-utils passwd root -d @@ -24,6 +23,9 @@ exec sh EOF chmod +x /init +mkdir -p /lib/firmware/rtl_nic +wget https://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git/tree/rtl_nic/rtl8153a-3.fw -O /lib/firmware/rtl_nic/rtl8153a-3.fw + ####################################################################### # Strip the image to a small minimal system without removing the debian # toolchain. |