mirror of
https://github.com/dragonpilot/dragonpilot.git
synced 2026-03-03 10:43:52 +08:00
version: lp-dp v0.9.2 for EON/C2 date: 2023-05-09T02:32:30 commit: cb8adff9d368de2e442e1e7f4309b70a4a2013ad
9 lines
215 B
Python
Executable File
9 lines
215 B
Python
Executable File
#!/usr/bin/env python3
|
|
import sys
|
|
from common.xattr import removexattr
|
|
from selfdrive.loggerd.uploader import UPLOAD_ATTR_NAME
|
|
|
|
for fn in sys.argv[1:]:
|
|
print(f"unmarking {fn}")
|
|
removexattr(fn, UPLOAD_ATTR_NAME)
|