Preserves the device's working-tree progress in Gitea as the canonical source. This is an intermediate state of an unfinished refactor, kept so the work is not lost and the merge into KVM can build on a known point. - Python services removed (superseded by Rust): privacy_gateway, rkllm_server, mem_bridge. - Rust services added/updated: privacy-gateway-rs, info-privacy-rs, kvm-agent-rs (new api-server and runner crates), embed-db-rs, npu_daemon (new rga / rga-sys / mpp-jpeg crates), rkllm-server. - Debian packaging restructured: per-service control / postinst / postrm / conffiles and systemd units. Compiled binaries (debian/*/usr/sbin), NPU model blobs and test-image fixtures are excluded from version control - see .gitignore. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
10 lines
196 B
Bash
Executable File
10 lines
196 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
case "$1" in
|
|
remove|purge)
|
|
systemctl stop embed-db.service 2>/dev/null || true
|
|
systemctl disable embed-db.service 2>/dev/null || true
|
|
;;
|
|
esac
|
|
exit 0
|