Added DKMS Drivers for Broadcom
This commit is contained in:
95
.vscode/tasks.json
vendored
Normal file
95
.vscode/tasks.json
vendored
Normal 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"
|
||||
},
|
||||
]
|
||||
}
|
||||
Reference in New Issue
Block a user