Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Name: hexagonrpc
Version: 0.3.2
Release: %autorelease
Version: 0.4.0
Release: 1
Summary: FastRPC ioctl wrapper and a reverse tunnel

License: GPLv3+
Expand Down Expand Up @@ -85,8 +85,10 @@ install -D -m 644 %{SOURCE5} %{buildroot}%{_udevrulesdir}/10-fastrpc.rules
%{_unitdir}/*.service
%{_bindir}/hexagonrpcd
%{_libexecdir}/hexagonrpc
%{_libdir}/libhexagonrpc.so.*
%{_sysusersdir}/fastrpc.conf
%{_udevrulesdir}/10-fastrpc.rules
%{_mandir}/man1/hexagonrpcd.1*

%files devel
%{_includedir}/libhexagonrpc
Expand Down
Original file line number Diff line number Diff line change
@@ -1,11 +1,9 @@
[Unit]
Description=Daemon to support Qualcomm Hexagon ADSP virtual filesystem for RootPD
ConditionPathExists=/usr/share/hexagonrpcd/hexagonrpcd-adsp-rootpd.conf
ConditionPathExists=/dev/fastrpc-adsp

[Service]
EnvironmentFile=/usr/share/hexagonrpcd/hexagonrpcd-adsp-rootpd.conf
ExecStart=/usr/bin/hexagonrpcd -f /dev/fastrpc-adsp -d adsp -R ${hexagonrpcd_fw_dir}
ExecStart=/usr/bin/hexagonrpcd -f /dev/fastrpc-adsp -d adsp
Restart=always
RestartSec=3
User=fastrpc
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,12 @@
Description=Daemon to support Qualcomm Hexagon ADSP virtual filesystem for SensorPD
Conflicts=suspend.target
Before=suspend.target
ConditionPathExists=/usr/share/hexagonrpcd/hexagonrpcd-adsp-sensorspd.conf
# This service shouldn't be run on devices with an SDSP
ConditionPathExists=!/dev/fastrpc-sdsp
ConditionPathExists=/dev/fastrpc-adsp

[Service]
EnvironmentFile=/usr/share/hexagonrpcd/hexagonrpcd-adsp-sensorspd.conf
ExecStart=/usr/bin/hexagonrpcd -f /dev/fastrpc-adsp -d adsp -s -R ${hexagonrpcd_fw_dir}
ExecStart=/usr/bin/hexagonrpcd -f /dev/fastrpc-adsp -d adsp -s
Restart=always
RestartSec=3
User=fastrpc
Expand Down
Original file line number Diff line number Diff line change
@@ -1,11 +1,9 @@
[Unit]
Description=Daemon to support Qualcomm Hexagon SDSP virtual filesystem
ConditionPathExists=/usr/share/hexagonrpcd/hexagonrpcd-sdsp.conf
ConditionPathExists=/dev/fastrpc-sdsp

[Service]
EnvironmentFile=/usr/share/hexagonrpcd/hexagonrpcd-sdsp.conf
ExecStart=/usr/bin/hexagonrpcd -f /dev/fastrpc-sdsp -d sdsp -s -R ${hexagonrpcd_fw_dir}
ExecStart=/usr/bin/hexagonrpcd -f /dev/fastrpc-sdsp -d sdsp -s
Restart=always
RestartSec=3
User=fastrpc
Expand Down
File renamed without changes.