Closed mluggy closed 3 years ago
You mean you don't want the archiving functionality? Use export ARCHIVE_SYSTEM=none
in the config.
What would be the minimal steps to get Tesla to only recognize my Pi's SD card as USB storage?
The core is of course the original basic configuration of the OS to enable the USB storage emulation, as acknowledged at the bottom of this repository start document, implemented in this particular design by cimryan then extended by marcone:
Given basic emulation (link from above) you could in theory do whatever you want on any distribution of Linux. But what you have here already works if you avoid a couple of documented pitfalls and known "limitations" ('21 refresh USB warning).
But what you will lose and have to re-implement, even if you don't want this design for getting files off the device, is at least:
The main problem is 5 in my opinion. The principle use case is that it's a smart/network capable USB stick. So until the car and device can access the data at the same time (read and write) it has to be way more complicated than necessary. Having written a SCSI device driver in the past, I don't see the requirement as a show stopper (it can be done). The difficulty, I guess, is somebody has to invest a significant amount time and effort to write a new Linux USB emulation driver. I'm interested but don't have time at the moment. Maybe later if Tesla still don't fix the USB warnings.
Until then, I wonder if there is an existing configuration of Linux which can create a volume with USB SCSI disk emulation. If that were acceptable to the car and the OS maybe no new driver is necessary. Or is there a Linux disk virtualization system which could act as a shim to both sides, the key being arbitration between the USB and OS IO requests/locks. In enterprise servers/clusters this is known as a DLM (Distributed Lock Manager).
If we can improve the USB<->disk emulation, everything else is easy.
I want to write a new cloud syncer that doesn't change/move files. what are the minimal steps I need from this basic emulation to get Tesla to start writing files?
Follow the link above, then the instructions.
I want to write a new cloud syncer that doesn't change/move files. what are the minimal steps I need from this basic emulation to get Tesla to start writing files?
It's not entirely clear to me what exactly you want to do, but keeping in mind your "minimal steps" requirement:
If you want to create something completely independent of teslausb, then Google "g_mass_storage" and take it from there, but that no longer qualifies as "minimal steps" IMO.
Using a USB drive only works with Pi4. It's easiest to just make that USB drive the boot drive also (i.e. instead of using an sd card, use the USB drive exclusively). You don't need to specify the USB_DRIVE variable in that case.
Thanks! I have Pi4. So I should write the prebuilt image on that USB and just boot without an SD card? my intention is to have the USB easily detachable to be read in a computer if I want to.
Yes, though note that you need a recent-ish firmware on the Pi to let it boot from USB. If your Pi is relatively new, it should be good to go (otherwise you'll have to update the firmware first)
Setup worked really well (after a few reboots and minor diagnostic). The pi shows TeslaCam when plugged in entirely but if you connect solely the thumb drive it will only show boot, at least on windows.
That's expected. There is only one partition that Windows can read, the other 3 partitions are readable by linux. Additionally the emulated drive(s) that the car sees are backed by files in one of the linux partitions, not by an actual partition.
Also, is there a way to read/access the mp4 files while pi is connected to the car? I couldn't find / -name *.mp4 anything (snapshots are disabled, archive set to none and cam_size is 100%).
Sort of. You can mount the disk image used for drive emulation on the Pi, however if it is also connected to the car at the same time, then the Pi would see a file system that keeps changing out from under it.
Explain?
I already did. I'm not sure how else I can explain it. I suggest looking at the scripts to see how teslausb actually works.
What would be the minimal steps to get Tesla to only recognize my Pi's SD card as USB storage?