Merge pull request #4 from calamares/2.4.x-stable
Merge upstream changes
This commit is contained in:
commit
9dfbc54fda
@ -220,15 +220,14 @@ def install_grub(efi_directory, fw_type):
|
|||||||
"--force"])
|
"--force"])
|
||||||
|
|
||||||
# VFAT is weird, see issue CAL-385
|
# VFAT is weird, see issue CAL-385
|
||||||
efi_directory_firmware = case_insensitive_subdir(efi_directory,
|
efi_directory_firmware = os.path.join(efi_directory, "EFI")
|
||||||
["EFI", "Efi", "efi"])
|
if os.path.exists(efi_directory_firmware):
|
||||||
if not efi_directory_firmware:
|
efi_directory_firmware = vfat_correct_case(efi_directory, "EFI")
|
||||||
efi_directory_firmware = os.path.join(efi_directory, "EFI")
|
|
||||||
|
|
||||||
efi_boot_directory = case_insensitive_subdir(efi_directory_firmware,
|
efi_boot_directory = os.path.join(efi_directory_firmware, "boot")
|
||||||
["Boot", "boot", "BOOT"])
|
if os.path.exists(efi_boot_directory):
|
||||||
if not efi_boot_directory:
|
efi_boot_directory = vfat_correct_case(efi_directory_firmware, "boot")
|
||||||
efi_boot_directory = os.path.join(efi_directory_firmware, "boot")
|
else:
|
||||||
check_target_env_call(["mkdir", "-p", efi_boot_directory])
|
check_target_env_call(["mkdir", "-p", efi_boot_directory])
|
||||||
|
|
||||||
# Workaround for some UEFI firmwares
|
# Workaround for some UEFI firmwares
|
||||||
@ -251,11 +250,11 @@ def install_grub(efi_directory, fw_type):
|
|||||||
libcalamares.job.configuration["grubCfg"]])
|
libcalamares.job.configuration["grubCfg"]])
|
||||||
|
|
||||||
|
|
||||||
def case_insensitive_subdir(parent, candidate_dirnames):
|
def vfat_correct_case(parent, name):
|
||||||
for dirname in candidate_dirnames:
|
for candidate in os.listdir(parent):
|
||||||
if os.path.isdir(os.path.join(parent, dirname)):
|
if name.lower() == candidate.lower():
|
||||||
return os.path.join(parent, dirname)
|
return candidate
|
||||||
return ""
|
return os.path.join(parent, name)
|
||||||
|
|
||||||
|
|
||||||
def prepare_bootloader(fw_type):
|
def prepare_bootloader(fw_type):
|
||||||
|
@ -20,6 +20,7 @@
|
|||||||
|
|
||||||
#include "WelcomePage.h"
|
#include "WelcomePage.h"
|
||||||
#include "checker/RequirementsChecker.h"
|
#include "checker/RequirementsChecker.h"
|
||||||
|
#include "utils/Logger.h"
|
||||||
|
|
||||||
|
|
||||||
#include <QVariant>
|
#include <QVariant>
|
||||||
@ -128,5 +129,8 @@ WelcomeViewStep::setConfigurationMap( const QVariantMap& configurationMap )
|
|||||||
if ( configurationMap.contains( "requirements" ) &&
|
if ( configurationMap.contains( "requirements" ) &&
|
||||||
configurationMap.value( "requirements" ).type() == QVariant::Map )
|
configurationMap.value( "requirements" ).type() == QVariant::Map )
|
||||||
m_requirementsChecker->setConfigurationMap( configurationMap.value( "requirements" ).toMap() );
|
m_requirementsChecker->setConfigurationMap( configurationMap.value( "requirements" ).toMap() );
|
||||||
|
else
|
||||||
|
cDebug() << "WARNING: no valid requirements map found in welcome "
|
||||||
|
"module configuration.";
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -185,6 +185,7 @@ RequirementsChecker::widget() const
|
|||||||
void
|
void
|
||||||
RequirementsChecker::setConfigurationMap( const QVariantMap& configurationMap )
|
RequirementsChecker::setConfigurationMap( const QVariantMap& configurationMap )
|
||||||
{
|
{
|
||||||
|
bool incompleteConfiguration = false;
|
||||||
if ( configurationMap.contains( "requiredStorage" ) &&
|
if ( configurationMap.contains( "requiredStorage" ) &&
|
||||||
( configurationMap.value( "requiredStorage" ).type() == QVariant::Double ||
|
( configurationMap.value( "requiredStorage" ).type() == QVariant::Double ||
|
||||||
configurationMap.value( "requiredStorage" ).type() == QVariant::Int ) )
|
configurationMap.value( "requiredStorage" ).type() == QVariant::Int ) )
|
||||||
@ -199,6 +200,7 @@ RequirementsChecker::setConfigurationMap( const QVariantMap& configurationMap )
|
|||||||
else
|
else
|
||||||
{
|
{
|
||||||
m_requiredStorageGB = 3.;
|
m_requiredStorageGB = 3.;
|
||||||
|
incompleteConfiguration = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
if ( configurationMap.contains( "requiredRam" ) &&
|
if ( configurationMap.contains( "requiredRam" ) &&
|
||||||
@ -208,11 +210,15 @@ RequirementsChecker::setConfigurationMap( const QVariantMap& configurationMap )
|
|||||||
bool ok = false;
|
bool ok = false;
|
||||||
m_requiredRamGB = configurationMap.value( "requiredRam" ).toDouble( &ok );
|
m_requiredRamGB = configurationMap.value( "requiredRam" ).toDouble( &ok );
|
||||||
if ( !ok )
|
if ( !ok )
|
||||||
|
{
|
||||||
m_requiredRamGB = 1.;
|
m_requiredRamGB = 1.;
|
||||||
|
incompleteConfiguration = true;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
m_requiredRamGB = 1.;
|
m_requiredRamGB = 1.;
|
||||||
|
incompleteConfiguration = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
if ( configurationMap.contains( "check" ) &&
|
if ( configurationMap.contains( "check" ) &&
|
||||||
@ -221,6 +227,8 @@ RequirementsChecker::setConfigurationMap( const QVariantMap& configurationMap )
|
|||||||
m_entriesToCheck.clear();
|
m_entriesToCheck.clear();
|
||||||
m_entriesToCheck.append( configurationMap.value( "check" ).toStringList() );
|
m_entriesToCheck.append( configurationMap.value( "check" ).toStringList() );
|
||||||
}
|
}
|
||||||
|
else
|
||||||
|
incompleteConfiguration = true;
|
||||||
|
|
||||||
if ( configurationMap.contains( "required" ) &&
|
if ( configurationMap.contains( "required" ) &&
|
||||||
configurationMap.value( "required" ).type() == QVariant::List )
|
configurationMap.value( "required" ).type() == QVariant::List )
|
||||||
@ -228,6 +236,19 @@ RequirementsChecker::setConfigurationMap( const QVariantMap& configurationMap )
|
|||||||
m_entriesToRequire.clear();
|
m_entriesToRequire.clear();
|
||||||
m_entriesToRequire.append( configurationMap.value( "required" ).toStringList() );
|
m_entriesToRequire.append( configurationMap.value( "required" ).toStringList() );
|
||||||
}
|
}
|
||||||
|
else
|
||||||
|
incompleteConfiguration = true;
|
||||||
|
|
||||||
|
if ( incompleteConfiguration )
|
||||||
|
{
|
||||||
|
cDebug() << "WARNING: The RequirementsChecker configuration map provided by "
|
||||||
|
"the welcome module configuration file is incomplete or "
|
||||||
|
"incorrect.\n"
|
||||||
|
"Startup will continue for debugging purposes, but one or "
|
||||||
|
"more checks might not function correctly.\n"
|
||||||
|
"RequirementsChecker configuration map:\n"
|
||||||
|
<< configurationMap;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user