https://github.com/thin-edge/debug-tedge-readonly
test only: test repository to debug a problem when running thin-edge.io under a highly customized setup
https://github.com/thin-edge/debug-tedge-readonly
Last synced: 10 months ago
JSON representation
test only: test repository to debug a problem when running thin-edge.io under a highly customized setup
- Host: GitHub
- URL: https://github.com/thin-edge/debug-tedge-readonly
- Owner: thin-edge
- Created: 2024-06-19T18:42:16.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2024-06-28T07:15:54.000Z (almost 2 years ago)
- Last Synced: 2025-03-25T13:26:08.301Z (about 1 year ago)
- Language: Shell
- Size: 5.21 MB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
* How do you run services if the rootfs is mutable? Can the service definitions be put under /data? How is it done today?
* Can new users be added to the base image?
## Moving forward
* Access to hardware without going through AnyDesk...as debugging is almost impossible
```
./dockcross-linux-armv7l-musl -a "-e LDFLAGS='-static'" bash -c "cd build && cmake -DNNG_ENABLE_SQLITE=ON .. && make clean && make"
```
### arm64 / aarch64
```sh
docker run --rm dockcross/linux-arm64-musl > ./dockcross-linux-arm64-musl
chmod +x ./dockcross-linux-arm64-musl
rm -Rf build
mkdir build
./dockcross-linux-arm64-musl -a "-e LDFLAGS='-static'" bash -c "cd build && cmake -DNNG_ENABLE_SQLITE=ON .. && make clean && make"
```