WildernessLabs / Meadow_Issues

Public repo for bugs and issues with Meadow
15 stars 0 forks source link

In Meadow.OS there compile options to build without partitioning, that's never been used. #793

Open Peter-Moody opened 1 week ago

Peter-Moody commented 1 week ago

Describe the bug In the Meadow.OS there is code like this in several places.

  // Check for Mono runtime binary on filesystem.
#ifdef CONFIG_MTD_PARTITION
  const char runtimePath[] = "/meadow0/" HCOM_NX_FS_MONO_RUNTIME_FILENAME;
#else
  const char runtimePath[] = "/meadow/" HCOM_NX_FS_MONO_RUNTIME_FILENAME;
#endif

In the 4 years since I wrote this code, we have always built without partitioning. The compile time check should be removed.