Merging upstream version 4.3+20240723.
Signed-off-by: Daniel Baumann <daniel@debian.org>
This commit is contained in:
parent
9d4f96bc70
commit
aa881a3626
70 changed files with 1465 additions and 1206 deletions
12
.github/tools/install_ubuntu_packages.sh
vendored
Executable file
12
.github/tools/install_ubuntu_packages.sh
vendored
Executable file
|
@ -0,0 +1,12 @@
|
|||
#!/usr/bin/bash
|
||||
|
||||
VERSION_CODENAME=$(grep -oP '(?<=^VERSION_CODENAME=).+' /etc/os-release | tr -d '"')
|
||||
echo "Detected VERSION_CODENAME: $VERSION_CODENAME"
|
||||
|
||||
# Add ubuntu repository
|
||||
sudo add-apt-repository -y "deb [arch=amd64] http://archive.ubuntu.com/ubuntu $VERSION_CODENAME \
|
||||
main universe"
|
||||
# Install gcc
|
||||
sudo apt-get -y update && sudo apt-get -y install gcc-$1
|
||||
# Install dependencies
|
||||
sudo apt-get -y install make gcc libudev-dev devscripts
|
Loading…
Add table
Add a link
Reference in a new issue