Removed all gui software and configuration

This commit is contained in:
2021-12-09 14:59:51 +01:00
parent 130461c519
commit d19b2f3c1b
49 changed files with 19 additions and 1160 deletions

12
.vscode/tasks.json vendored
View File

@@ -6,7 +6,7 @@
{
"label": "Build IMG all architectures",
"type": "shell",
"command": "make build",
"command": "make prep_buildenv; make build",
"problemMatcher": [],
"group": {
"kind": "build",
@@ -16,7 +16,7 @@
{
"label": "Build IMG amd64",
"type": "shell",
"command": "make build_amd64",
"command": "make prep_buildenv; make build_amd64",
"problemMatcher": [],
"group": {
"kind": "build",
@@ -26,7 +26,7 @@
{
"label": "Build IMG i386",
"type": "shell",
"command": "make build_amd64",
"command": "make prep_buildenv; make build_amd64",
"problemMatcher": [],
"group": {
"kind": "build",
@@ -36,7 +36,7 @@
{
"label": "Build IMG all architectures W DKMS",
"type": "shell",
"command": "make enable_DKMS build",
"command": "make prep_buildenv; make enable_DKMS build",
"problemMatcher": [],
"group": {
"kind": "build",
@@ -46,7 +46,7 @@
{
"label": "Build IMG amd64 W DKMS",
"type": "shell",
"command": "make enable_DKMS build_amd64",
"command": "make prep_buildenv; make enable_DKMS build_amd64",
"problemMatcher": [],
"group": {
"kind": "build",
@@ -56,7 +56,7 @@
{
"label": "Build IMG i386 W DKMS",
"type": "shell",
"command": "make enable_DKMS build_amd64",
"command": "make prep_buildenv; make enable_DKMS build_amd64",
"problemMatcher": [],
"group": {
"kind": "build",