Added DKMS Drivers for Broadcom

This commit is contained in:
2021-11-10 15:54:21 +01:00
parent e87f065256
commit c5d18ac19c
6 changed files with 128 additions and 16 deletions

95
.vscode/tasks.json vendored Normal file
View File

@@ -0,0 +1,95 @@
{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
"label": "Build IMG all architectures",
"type": "shell",
"command": "make build",
"problemMatcher": [],
"group": {
"kind": "build",
"isDefault": true
}
},
{
"label": "Build IMG amd64",
"type": "shell",
"command": "make build_amd64",
"problemMatcher": [],
"group": {
"kind": "build",
"isDefault": true
}
},
{
"label": "Build IMG i386",
"type": "shell",
"command": "make build_amd64",
"problemMatcher": [],
"group": {
"kind": "build",
"isDefault": true
}
},
{
"label": "Build IMG all architectures W DKMS",
"type": "shell",
"command": "make enable_DKMS build",
"problemMatcher": [],
"group": {
"kind": "build",
"isDefault": true
}
},
{
"label": "Build IMG amd64 W DKMS",
"type": "shell",
"command": "make enable_DKMS build_amd64",
"problemMatcher": [],
"group": {
"kind": "build",
"isDefault": true
}
},
{
"label": "Build IMG i386 W DKMS",
"type": "shell",
"command": "make enable_DKMS build_amd64",
"problemMatcher": [],
"group": {
"kind": "build",
"isDefault": true
}
},
{
"label": "Clean",
"type": "shell",
"command": "make clean",
"problemMatcher": [],
"group": {
"kind": "build",
"isDefault": true
}
}
],
"inputs": [
{
"id": "BuildVariant",
"description": "Wich Variant shoud be build",
"type": "promptString"
},
{
"type": "pickString",
"id": "Distro",
"description": "Wich Distro shoud be used",
"options": [
"Debian",
"Alpine",
"OtherTesting"
],
"default": "Debian"
},
]
}