结论:已完成浏览器侧真实加载验证,M428/M429/M430 的配置入口进一步从 LinuxCNC INI/HALFILE/REMAP 来源生成,native 与 source-link 验证通过。
17 lines
381 B
Bash
Executable File
17 lines
381 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
cd "$(dirname "$0")"
|
|
|
|
manifest=${1:-linuxcnc-kinematics-source-files.txt}
|
|
filter_group=${2:-core}
|
|
output_mode=${3:-relative}
|
|
|
|
./list-linuxcnc-manifest-sources.sh \
|
|
"$manifest" \
|
|
"$filter_group" \
|
|
"$output_mode" \
|
|
core,config,remap,component,generated,header,metadata,asset \
|
|
all \
|
|
"missing kinematics manifest source"
|