Skip to content

Commit

Permalink
Move tools/ -> docker/
Browse files Browse the repository at this point in the history
  • Loading branch information
GDYendell committed Oct 5, 2022
1 parent a678887 commit 7427ddc
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions .vscode/tasks.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,25 +12,25 @@
{
"label": "Test x86 hello world",
"type": "shell",
"command": "cd ${workspaceFolder}/tools && mkdir -p build && g++ hello.cpp -o build/hello_x86 && ./build/hello_x86",
"command": "cd ${workspaceFolder}/docker && mkdir -p build && g++ hello.cpp -o build/hello_x86 && ./build/hello_x86",
"problemMatcher": []
},
{
"label": "Build ARM container",
"type": "shell",
"command": "cd ${workspaceFolder}/tools && podman build --tag arm-crosscompiler .",
"command": "cd ${workspaceFolder}/docker && podman build --tag arm-crosscompiler .",
"problemMatcher": []
},
{
"label": "Test ARM hello world",
"type": "shell",
"command": "${workspaceFolder}/tools/run_arm_container.sh",
"command": "${workspaceFolder}/docker/run_arm_container.sh",
"problemMatcher": []
},
{
"label": "Run command in ARM container",
"type": "shell",
"command": "${workspaceFolder}/tools/run_arm_container.sh ${input:command}",
"command": "${workspaceFolder}/docker/run_arm_container.sh ${input:command}",
"problemMatcher": []
},
],
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion docs/how-to/development/ppmac_deploy.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ $ make install

## Building pmacFilterControl for ppmac

A docker container is defined in `tools/Dockerfile` to provide a cross-compiling
A docker container is defined in `docker/Dockerfile` to provide a cross-compiling
toolchain for ARM. This can be used to build pmacFilterControl for the ppmac. There are
vscode tasks to build the container itself and for running commands inside the
container.
Expand Down

0 comments on commit 7427ddc

Please sign in to comment.