this post was submitted on 24 Oct 2022
24 points (100.0% liked)

Technology

34862 readers
26 users here now

This is the official technology community of Lemmy.ml for all news related to creation and use of technology, and to facilitate civil, meaningful discussion around it.


Ask in DM before posting product reviews or ads. All such posts otherwise are subject to removal.


Rules:

1: All Lemmy rules apply

2: Do not post low effort posts

3: NEVER post naziped*gore stuff

4: Always post article URLs or their archived version URLs as sources, NOT screenshots. Help the blind users.

5: personal rants of Big Tech CEOs like Elon Musk are unwelcome (does not include posts about their companies affecting wide range of people)

6: no advertisement posts unless verified as legitimate and non-exploitative/non-consumerist

7: crypto related posts, unless essential, are disallowed

founded 5 years ago
MODERATORS
 

Always comforting to know that a multi-tonne metal box that costs 50 grand and can travel at 140 KPH and mow down unsuspecting bystanders is running off what's essentially an SD card. Great engineering there, Elon!

Even the higher end phones don't use eMMC anymore, they use NVME single-chip SSDs.

you are viewing a single comment's thread
view the rest of the comments
[–] holdengreen@lemmygrad.ml 3 points 2 years ago (4 children)

I haven't reflowed before so I wouldn't know. I think you are suggesting an SD card instead of a eMMC. That can work and prob wouldn't be more expensive, but that's an SPI interface I think so slower than what might be an 8bit interface on the eMMC.

maybe more components should be socket'd......

[–] AgreeableLandscape@lemmy.ml 3 points 2 years ago* (last edited 2 years ago) (3 children)

I think you are suggesting an SD card instead of a eMMC.

Not really, maybe a socketed eMMC chip like you can find on single board computers?

Or, if we're being honest, why are we using eMMC on a car? It's not exactly a rock solid storage solution and does not inspire confidence when used on a vehicle of all things. Use an mSATA SSD or something, at least. Hell, even mSATA is on its way out in favour of NVME but it's still way better than eMMC. The freaking car is 50 grand or more and they're too cheap to even have a proper SSD?

[–] holdengreen@lemmygrad.ml 5 points 2 years ago* (last edited 2 years ago) (2 children)

I didn't know you can get that, so maybe I'll use it in a design....

Now under normal circumstances, this wouldn’t be an issue. There are literally billions of devices running Linux from an eMMC chip. But any competent embedded Linux developer would take the steps necessary to make sure the operating system’s various log files are not being written to a non-replaceable storage device soldered onto the board

Unfortunately, for reasons that still remain somewhat unclear, the build of Linux running on the MCU is doing exactly that. What’s worse, Tesla’s graphical interface appears to be generating its own additional log messages. Despite the likelihood that nobody will ever actually read them, for every second a Tesla is driving down the road, more lines are being added to the log files.

wow now reading this that's so f*cking stupid.

Or, if we’re being honest, why are we using eMMC on a car? It’s not exactly a rock solid storage solution and does not inspire confidence when used on a vehicle of all things. Use an mSATA SSD or something, at least. The freaking car is 50 grand or more and they’re too cheap to even have a proper SSD?

idk I wouldn't drive one of those things anyways. I just know where eMMCs can be useful.

[–] FuckBigTech347@lemmygrad.ml 2 points 2 years ago (1 children)

Unfortunately, for reasons that still remain somewhat unclear, the build of Linux running on the MCU is doing exactly that. What’s worse, Tesla’s graphical interface appears to be generating its own additional log messages. Despite the likelihood that nobody will ever actually read them, for every second a Tesla is driving down the road, more lines are being added to the log files.

Doesn't this also mean that the eMMC will eventually run out of storage space? I remember when I did something which also generated a lot of log files on an SBC. After a few months of 24/7 operation there was so much stuff in /var/log that the 64GB eMMC was almost completely full.

Please don't tell me they set up a cron job or something to delete some log files every day/week/month so this wouldn't happen. Because that would mean that they are aware of the fact, that they're writing massive amounts of log files to flash memory over and over again.

[–] holdengreen@lemmygrad.ml 1 points 2 years ago

Maybe it was some programmer who's good with code but doesn't bother to understand hardware.