[iso] remove Ubuntu's splash screen for persistent drives

* This is accomplished by removing the 'maybe-ubiquity' option
* UEFI only
This commit is contained in:
Pete Batard 2020-06-11 13:52:14 +01:00
parent e554d2b4e0
commit 68d42d4153
No known key found for this signature in database
GPG key ID: 38E0CF5E69EDD671
3 changed files with 10 additions and 6 deletions

View file

@ -1100,7 +1100,7 @@ char* replace_in_token_data(const char* filename, const char* token, const char*
if ((filename == NULL) || (token == NULL) || (src == NULL) || (rep == NULL))
return NULL;
if ((filename[0] == 0) || (token[0] == 0) || (src[0] == 0) || (rep[0] == 0))
if ((filename[0] == 0) || (token[0] == 0) || (src[0] == 0))
return NULL;
if (strcmp(src, rep) == 0) // No need for processing is source is same as replacement
return NULL;