File tree Expand file tree Collapse file tree 5 files changed +5
-29
lines changed Expand file tree Collapse file tree 5 files changed +5
-29
lines changed Original file line number Diff line number Diff line change 40
40
mkdir -p .debpkg/usr/sbin
41
41
mkdir -p .debpkg/etc/meshtasticd
42
42
mkdir -p .debpkg/usr/lib/systemd/system/
43
- cp release/meshtasticd_linux_arm64 .debpkg/usr/sbin/meshtasticd
43
+ cp release/meshtasticd_linux .debpkg/usr/sbin/meshtasticd
44
44
cp bin/config-dist.yaml .debpkg/etc/meshtasticd/config.yaml
45
45
chmod +x .debpkg/usr/sbin/meshtasticd
46
46
cp bin/meshtasticd.service .debpkg/usr/lib/systemd/system/meshtasticd.service
Original file line number Diff line number Diff line change @@ -23,6 +23,7 @@ lib_deps =
23
23
${env.lib_deps}
24
24
${networking_base.lib_deps}
25
25
rweather/Crypto@^0.4.0
26
+ lovyan03/LovyanGFX@^1.1.12
26
27
27
28
build_flags =
28
29
${arduino_base.build_flags}
Original file line number Diff line number Diff line change @@ -14,14 +14,7 @@ rm -r $OUTDIR/* || true
14
14
15
15
# Important to pull latest version of libs into all device flavors, otherwise some devices might be stale
16
16
platformio pkg update
17
-
18
- if command -v raspi-config & > /dev/null; then
19
- pio run --environment raspbian
20
- cp .pio/build/raspbian/program $OUTDIR /meshtasticd_linux_arm64
21
- else
22
- pio run --environment native
23
- cp .pio/build/native/program $OUTDIR /meshtasticd_linux_amd64
24
- fi
25
-
17
+ pio run --environment native
18
+ cp .pio/build/native/program $OUTDIR /meshtasticd_linux
26
19
cp bin/device-install.* $OUTDIR
27
20
cp bin/device-update.* $OUTDIR
Original file line number Diff line number Diff line change 1
1
#! /usr/bin/env bash
2
2
3
- cp release/meshtasticd_linux_arm64 /usr/sbin/meshtasticd
3
+ cp release/meshtasticd_linux /usr/sbin/meshtasticd
4
4
mkdir /etc/meshtasticd
5
5
if [[ -f " /etc/meshtasticd/config.yaml" ]]; then
6
6
cp bin/config-dist.yaml /etc/meshtasticd/config-upgrade.yaml
Original file line number Diff line number Diff line change @@ -3,22 +3,4 @@ extends = portduino_base
3
3
build_flags = ${portduino_base.build_flags} -O0 -I variants/portduino
4
4
board = cross_platform
5
5
lib_deps = ${portduino_base.lib_deps}
6
- lovyan03/LovyanGFX@^1.1.12
7
- build_src_filter = ${portduino_base.build_src_filter}
8
-
9
- ; The Portduino based sim environment on top of a linux OS and touching linux hardware devices
10
- [env:linux]
11
- extends = portduino_base
12
- build_flags = ${portduino_base.build_flags} -O0 -lgpiod -I variants/portduino
13
- board = linux_hardware
14
- lib_deps = ${portduino_base.lib_deps}
15
- build_src_filter = ${portduino_base.build_src_filter}
16
-
17
- ; The Raspberry Pi actually has accessible SPI and GPIO, so we can support real hardware there.
18
- [env:raspbian]
19
- extends = portduino_base
20
- build_flags = ${portduino_base.build_flags} -O0 -lgpiod -I variants/portduino -DARCH_RASPBERRY_PI -lyaml-cpp
21
- board = linux_arm
22
- lib_deps = ${portduino_base.lib_deps}
23
- https://github.com/jp-bennett/LovyanGFX.git# jp-bennett-patch-1 ; lovyan03/LovyanGFX@^1.1.9
24
6
build_src_filter = ${portduino_base.build_src_filter}
You can’t perform that action at this time.
0 commit comments