We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ec46f27 commit 5580e8fCopy full SHA for 5580e8f
config/default.ini
@@ -20,4 +20,4 @@ temp = temp
20
default =
21
22
[platform]
23
-target = rk3588
+processor = rk3588
server.sh
@@ -97,9 +97,6 @@ if [ -z "$PROCESSOR" ]; then
97
elif [ -n "$RKLLAMA_PLATFORM_PROCESSOR" ]; then
98
# Use platform.processor setting from config
99
PROCESSOR="$RKLLAMA_PLATFORM_PROCESSOR"
100
- elif [ -n "$RKLLAMA_PLATFORM_TARGET" ]; then
101
- # Use platform.target for backward compatibility
102
- PROCESSOR="$RKLLAMA_PLATFORM_TARGET"
103
else
104
# Try to extract the processor type from cpuinfo if not defined
105
PROCESSOR=$(grep -i "cpu model" /proc/cpuinfo | head -n 1 | sed 's/.*Rockchip \(RK[0-9]*\).*/\1/' | tr '[:upper:]' '[:lower:]')
0 commit comments