EXTRA_INI_SOURCE

only:hellen-honda-k
This commit is contained in:
rusefillc 2024-09-28 16:15:39 -04:00
parent 2d6f16e1ca
commit 83578ea51b
2 changed files with 5 additions and 1 deletions

View File

@ -18,6 +18,7 @@ public class SignatureHelper {
// todo: find a way to reference Fields.PROTOCOL_SIGNATURE_PREFIX
private static final String PREFIX = "rusEFI ";
private static final char SLASH = '/';
private static final String EXTRA_INI_SOURCE = System.getProperty("extra_local_ini_file_name");
public static Pair<String, String> getUrl(String signature) {
RusEfiSignature s = parse(signature);
@ -43,6 +44,9 @@ public class SignatureHelper {
File file = new File(localIniFile);
if (file.exists() && file.length() > 10000)
return localIniFile;
if (EXTRA_INI_SOURCE != null) {
return EXTRA_INI_SOURCE;
}
log.info("Failed to locate " + localIniFile + ", trying to download " + p.first);
try (BufferedInputStream in = new BufferedInputStream(new URL(p.first).openStream());
FileOutputStream fileOutputStream = new FileOutputStream(localIniFile)) {

View File

@ -10,7 +10,7 @@ public interface rusEFIVersion {
* *** BE CAREFUL WE HAVE SEPARATE AUTOUPDATE_VERSION also managed manually ***
* @see com.rusefi.autoupdate.Autoupdate#AUTOUPDATE_VERSION
*/
int CONSOLE_VERSION = 20240928;
int CONSOLE_VERSION = 20240929;
AtomicReference<String> firmwareVersion = new AtomicReference<>("N/A");
static long classBuildTimeMillis() {