Skip to content

Commit cfc298e

Browse files
This is an auto generated commit. Signed-off-by: Cyber Knight <cyberknight755@gmail.com>
1 parent 384b484 commit cfc298e

438 files changed

Lines changed: 428573 additions & 0 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
*.o
2+
*.cmd
3+
*.ko
4+
*.cm
5+
Module.symvers
6+
modules.order
7+
*.mod.c
8+
.tmp_versions
9+
.cache.mk
10+
*.mod
11+
*.o.d
12+
*.c.orig
Lines changed: 61 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,61 @@
1+
language: c
2+
compiler: gcc
3+
dist: bionic
4+
os: linux
5+
6+
before_install:
7+
- export KERNEL_URL_DETAILS=$(wget --quiet -O - ${KERNEL_URL}v${KVER}/ | grep -A8 'Build for amd64\|Test amd64')
8+
- export ALL_DEB=$(echo "$KERNEL_URL_DETAILS" | grep -m1 'all.deb' | cut -d '"' -f 2)
9+
- export KVER_BUILD=$(echo $ALL_DEB | cut -d '_' -f 2 | rev | cut -c14- | rev)
10+
- wget ${KERNEL_URL}v${KVER}/$(echo "$KERNEL_URL_DETAILS" | grep -m1 'amd64.deb' | cut -d '"' -f 2)
11+
- wget ${KERNEL_URL}v${KVER}/$ALL_DEB
12+
- sudo dpkg -i *.deb
13+
14+
script:
15+
- make CC=$COMPILER KVER=$KVER_BUILD-generic
16+
env:
17+
global:
18+
- KERNEL_URL=https://kernel.ubuntu.com/~kernel-ppa/mainline/
19+
20+
addons:
21+
apt:
22+
packages:
23+
#Force update to GCC-7.5 in order to compile Kernels >= 5.4.
24+
- gcc-7
25+
26+
cache:
27+
- ccache: true
28+
29+
jobs:
30+
include:
31+
- addons:
32+
apt:
33+
sources:
34+
- sourceline: "ppa:ubuntu-toolchain-r/test"
35+
packages:
36+
- gcc-9
37+
env: COMPILER=gcc-9 KVER=$(curl -s https://www.kernel.org/releases.json | grep 'mainline' -B1 | head -1 | cut -d'"' -f4)
38+
- addons:
39+
apt:
40+
packages:
41+
- gcc-8
42+
env: COMPILER=gcc-8 KVER=$(curl -s https://www.kernel.org/releases.json | grep 'mainline' -B1 | head -1 | cut -d'"' -f4)
43+
44+
- env: COMPILER=gcc-7 KVER=$(curl -s https://www.kernel.org/releases.json | grep 'mainline' -B1 | head -1 | cut -d'"' -f4)
45+
- env: COMPILER=gcc-7 KVER=$(curl -s https://www.kernel.org/releases.json | grep -A1 'latest_stable' | tail -1 | cut -d'"' -f4)
46+
#Kernels 5.4 with minor versions > 28 are failing on amd64. Not upgrade the minor version without check https://kernel.ubuntu.com/~kernel-ppa/mainline/
47+
- env: COMPILER=gcc-7 KVER=5.4.28
48+
- env: COMPILER=gcc-7 KVER=4.19.116
49+
- env: COMPILER=gcc-7 KVER=4.14.176
50+
- env: COMPILER=gcc-7 KVER=4.9.219
51+
- env: COMPILER=gcc-7 KVER=4.4.219
52+
53+
#Version 4.15.x requested to test Ubuntu 18.04 LTS version
54+
#TODO identify 4.15.x version dynamically instead of hardcode it.
55+
- addons:
56+
apt:
57+
packages:
58+
- linux-headers-4.15.0-20-generic
59+
#Use the kernel headers from apt instead of download it from an external source
60+
before_install: true
61+
env: COMPILER=gcc-7 $KVER_BUILD=4.15.0-20

drivers/staging/rtl8814au/Kconfig

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
config RTL8814AU
2+
tristate "Realtek 8814A USB WiFi"
3+
depends on USB
4+
help
5+
Help message of RTL8814AU
6+

drivers/staging/rtl8814au/LICENSE

Lines changed: 345 additions & 0 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)