summaryrefslogtreecommitdiff
path: root/packages/hostap/build.sh
diff options
context:
space:
mode:
authorViacheslav Hletenko <v.gletenko@vyos.io>2024-10-02 08:02:51 +0000
committerMergify <37929162+mergify[bot]@users.noreply.github.com>2024-10-02 18:46:04 +0000
commiteb70dca3cc4bbc6275a79c664f0a146ba4b59bc9 (patch)
tree0e8f6e11a09eb6267aa68c4708d128d2a15b4a4e /packages/hostap/build.sh
parentb672c89acbc593876d47bf5490d9dcf071cb3816 (diff)
downloadvyos-build-eb70dca3cc4bbc6275a79c664f0a146ba4b59bc9.tar.gz
vyos-build-eb70dca3cc4bbc6275a79c664f0a146ba4b59bc9.zip
T6754: Delete Jenkins build packagesmergify/bp/circinus/pr-781
(cherry picked from commit 2fed892f2746561207aa21a2660f4d8f3f79d24e) # Conflicts: # packages/linux-kernel/.gitignore # packages/linux-kernel/Jenkinsfile # packages/linux-kernel/build-accel-ppp.sh # packages/linux-kernel/build-intel-ixgbe.sh # packages/linux-kernel/build-intel-ixgbevf.sh # packages/linux-kernel/build-intel-qat.sh # packages/linux-kernel/build-jool.py # packages/linux-kernel/build-kernel.sh # packages/linux-kernel/build-nat-rtsp.sh # packages/linux-kernel/build-openvpn-dco.sh # packages/net-snmp/Jenkinsfile
Diffstat (limited to 'packages/hostap/build.sh')
-rwxr-xr-xpackages/hostap/build.sh38
1 files changed, 0 insertions, 38 deletions
diff --git a/packages/hostap/build.sh b/packages/hostap/build.sh
deleted file mode 100755
index c356672a..00000000
--- a/packages/hostap/build.sh
+++ /dev/null
@@ -1,38 +0,0 @@
-#!/bin/bash
-CWD=$(pwd)
-set -e
-
-SRC=hostap
-SRC_DEB=wpa
-
-if [ ! -d ${SRC} ]; then
- echo "${SRC} directory does not exists, please 'git clone'"
- exit 1
-fi
-if [ ! -d ${SRC_DEB} ]; then
- echo "${SRC_DEB} directory does not exists, please 'git clone'"
- exit 1
-fi
-
-echo "I: Copy Debian build instructions"
-cp -a ${SRC_DEB}/debian ${SRC}
-# Preserve Debian's default of allowing TLSv1.0 and legacy renegotiation for
-# compatibility with networks that use legacy crypto
-cat > ${SRC}/debian/patches/series << EOF
-allow-tlsv1.patch
-allow-legacy-renegotiation.patch
-EOF
-
-# Build Debian package
-cd ${SRC}
-
-echo "I: Ensure Debian build dependencies are met"
-sudo mk-build-deps --install --tool "apt-get --yes --no-install-recommends" -Ppkg.wpa.nogui,noudeb
-
-echo "I: Create new Debian Package version"
-version="$(git describe --tags | tr _ .)"
-dch -v ${version:7} "New version to support AES-GCM-256 for MACsec" -b
-
-echo "I: Build Debian hostap Package"
-DEB_CPPFLAGS_SET="-Wno-use-after-free -Wno-deprecated-declarations" \
- dpkg-buildpackage -us -uc -tc -b -Ppkg.wpa.nogui,noudeb