Adding upstream version 4.3+20240723.
Signed-off-by: Daniel Baumann <daniel@debian.org>
This commit is contained in:
parent
c0f6a5a1b7
commit
3ea4f9a80b
70 changed files with 1465 additions and 1206 deletions
10
.github/tools/.checkpatch.conf
vendored
Normal file
10
.github/tools/.checkpatch.conf
vendored
Normal file
|
@ -0,0 +1,10 @@
|
|||
--no-tree
|
||||
--show-types
|
||||
--exclude .github
|
||||
--exclude clustermd_tests
|
||||
--exclude documentation
|
||||
--exclude misc
|
||||
--exclude systemd
|
||||
--exclude tests
|
||||
--ignore FILE_PATH_CHANGES
|
||||
--ignore EMAIL_SUBJECT
|
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