| 791 | } |
| 792 | |
| 793 | bool launcherPartitionIsRemovableInstallData(const LauncherPartitionEntry &entry) { |
| 794 | if (!entry.isData()) return false; |
| 795 | if (entry.subtype != 0x81 && entry.subtype != 0x82 && entry.subtype != 0x83) return false; |
| 796 | return strcmp(entry.label, "spiffs") == 0 || strcmp(entry.label, "sys") == 0 || |
| 797 | strcmp(entry.label, "vfs") == 0; |
| 798 | } |
| 799 | |
| 800 | bool launcherPartitionRemoveInstallDataPartitions(LauncherPartitionTable &table, bool removeSpiffs) { |
| 801 | bool removed = false; |
no test coverage detected