Compare commits
13 Commits
Author | SHA1 | Date | |
---|---|---|---|
![]() |
a30683ea61 | ||
![]() |
8577821884 | ||
![]() |
8161e77d1f | ||
![]() |
ad5226c8f7 | ||
![]() |
06bd19be90 | ||
![]() |
4c9faf3c98 | ||
![]() |
7947a06b60 | ||
![]() |
d4b84cd9a8 | ||
![]() |
3accd30ad1 | ||
![]() |
3b88b45c9f | ||
![]() |
14869bec6a | ||
![]() |
1161b169ee | ||
![]() |
a9b9fcd9ad |
@@ -101,7 +101,7 @@ set( CALAMARES_TRANSLATION_LANGUAGES ar ast bg ca cs_CZ da de el en en_GB es_MX
|
|||||||
|
|
||||||
set( CALAMARES_VERSION_MAJOR 2 )
|
set( CALAMARES_VERSION_MAJOR 2 )
|
||||||
set( CALAMARES_VERSION_MINOR 2 )
|
set( CALAMARES_VERSION_MINOR 2 )
|
||||||
set( CALAMARES_VERSION_PATCH 2 )
|
set( CALAMARES_VERSION_PATCH 3 )
|
||||||
set( CALAMARES_VERSION_RC 0 )
|
set( CALAMARES_VERSION_RC 0 )
|
||||||
|
|
||||||
set( CALAMARES_VERSION ${CALAMARES_VERSION_MAJOR}.${CALAMARES_VERSION_MINOR}.${CALAMARES_VERSION_PATCH} )
|
set( CALAMARES_VERSION ${CALAMARES_VERSION_MAJOR}.${CALAMARES_VERSION_MINOR}.${CALAMARES_VERSION_PATCH} )
|
||||||
|
@@ -8,5 +8,5 @@ Exec=pkexec /usr/bin/calamares
|
|||||||
Comment=Calamares — System Installer
|
Comment=Calamares — System Installer
|
||||||
Icon=calamares
|
Icon=calamares
|
||||||
Terminal=false
|
Terminal=false
|
||||||
StartupNotify=false
|
StartupNotify=true
|
||||||
Categories=Qt;System;
|
Categories=Qt;System;
|
||||||
|
@@ -86,7 +86,11 @@ CalamaresApplication::init()
|
|||||||
setWindowIcon( QIcon( Calamares::Branding::instance()->
|
setWindowIcon( QIcon( Calamares::Branding::instance()->
|
||||||
imagePath( Calamares::Branding::ProductIcon ) ) );
|
imagePath( Calamares::Branding::ProductIcon ) ) );
|
||||||
|
|
||||||
|
cDebug() << "STARTUP: initQmlPath, initSettings, initBranding done";
|
||||||
|
|
||||||
initModuleManager(); //also shows main window
|
initModuleManager(); //also shows main window
|
||||||
|
|
||||||
|
cDebug() << "STARTUP: initModuleManager: module init started";
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@@ -328,7 +332,9 @@ CalamaresApplication::initModuleManager()
|
|||||||
void
|
void
|
||||||
CalamaresApplication::initView()
|
CalamaresApplication::initView()
|
||||||
{
|
{
|
||||||
|
cDebug() << "STARTUP: initModuleManager: all modules init done";
|
||||||
initJobQueue();
|
initJobQueue();
|
||||||
|
cDebug() << "STARTUP: initJobQueue done";
|
||||||
|
|
||||||
m_mainwindow = new CalamaresWindow(); //also creates ViewManager
|
m_mainwindow = new CalamaresWindow(); //also creates ViewManager
|
||||||
|
|
||||||
@@ -340,15 +346,19 @@ CalamaresApplication::initView()
|
|||||||
m_mainwindow->move(
|
m_mainwindow->move(
|
||||||
this->desktop()->availableGeometry().center() -
|
this->desktop()->availableGeometry().center() -
|
||||||
m_mainwindow->rect().center() );
|
m_mainwindow->rect().center() );
|
||||||
|
|
||||||
|
cDebug() << "STARTUP: CalamaresWindow created; loadModules started";
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
void
|
void
|
||||||
CalamaresApplication::initViewSteps()
|
CalamaresApplication::initViewSteps()
|
||||||
{
|
{
|
||||||
|
cDebug() << "STARTUP: loadModules for all modules done";
|
||||||
m_mainwindow->show();
|
m_mainwindow->show();
|
||||||
ProgressTreeModel* m = new ProgressTreeModel( this );
|
ProgressTreeModel* m = new ProgressTreeModel( this );
|
||||||
ProgressTreeView::instance()->setModel( m );
|
ProgressTreeView::instance()->setModel( m );
|
||||||
|
cDebug() << "STARTUP: Window now visible and ProgressTreeView populated";
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@@ -1,6 +1,6 @@
|
|||||||
/* === This file is part of Calamares - <http://github.com/calamares> ===
|
/* === This file is part of Calamares - <http://github.com/calamares> ===
|
||||||
*
|
*
|
||||||
* Copyright 2014-2015, Teo Mrnjavac <teo@kde.org>
|
* Copyright 2014-2016, Teo Mrnjavac <teo@kde.org>
|
||||||
*
|
*
|
||||||
* Calamares is free software: you can redistribute it and/or modify
|
* Calamares is free software: you can redistribute it and/or modify
|
||||||
* it under the terms of the GNU General Public License as published by
|
* it under the terms of the GNU General Public License as published by
|
||||||
@@ -225,41 +225,60 @@ LocalePage::init( const QString& initialRegion,
|
|||||||
}
|
}
|
||||||
emit m_tzWidget->locationChanged( m_tzWidget->getCurrentLocation() );
|
emit m_tzWidget->locationChanged( m_tzWidget->getCurrentLocation() );
|
||||||
|
|
||||||
// Fill in meaningful locale/charset lines from locale.gen
|
// Some distros come with a meaningfully commented and easy to parse locale.gen,
|
||||||
|
// and others ship a separate file /usr/share/i18n/SUPPORTED with a clean list of
|
||||||
|
// supported locales. We first try that one, and if it doesn't exist, we fall back
|
||||||
|
// to parsing the lines from locale.gen
|
||||||
m_localeGenLines.clear();
|
m_localeGenLines.clear();
|
||||||
QFile localeGen( localeGenPath );
|
QFile supported( "/usr/share/i18n/SUPPORTED" );
|
||||||
QByteArray ba;
|
QByteArray ba;
|
||||||
if ( localeGen.open( QIODevice::ReadOnly | QIODevice::Text ) )
|
|
||||||
|
if ( supported.exists() &&
|
||||||
|
supported.open( QIODevice::ReadOnly | QIODevice::Text ) )
|
||||||
{
|
{
|
||||||
ba = localeGen.readAll();
|
ba = supported.readAll();
|
||||||
localeGen.close();
|
supported.close();
|
||||||
|
|
||||||
|
foreach ( QByteArray line, ba.split( '\n' ) )
|
||||||
|
{
|
||||||
|
m_localeGenLines.append( QString::fromLatin1( line.simplified() ) );
|
||||||
|
}
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
cDebug() << "Cannot open file" << localeGenPath
|
QFile localeGen( localeGenPath );
|
||||||
<< ". Assuming the supported languages are already built into "
|
if ( localeGen.open( QIODevice::ReadOnly | QIODevice::Text ) )
|
||||||
"the locale archive.";
|
{
|
||||||
QProcess localeA;
|
ba = localeGen.readAll();
|
||||||
localeA.start( "locale", QStringList() << "-a" );
|
localeGen.close();
|
||||||
localeA.waitForFinished();
|
}
|
||||||
ba = localeA.readAllStandardOutput();
|
else
|
||||||
}
|
{
|
||||||
foreach ( QByteArray line, ba.split( '\n' ) )
|
cDebug() << "Cannot open file" << localeGenPath
|
||||||
{
|
<< ". Assuming the supported languages are already built into "
|
||||||
if ( line.startsWith( "## " ) ||
|
"the locale archive.";
|
||||||
line.startsWith( "# " ) ||
|
QProcess localeA;
|
||||||
line.simplified() == "#" )
|
localeA.start( "locale", QStringList() << "-a" );
|
||||||
continue;
|
localeA.waitForFinished();
|
||||||
|
ba = localeA.readAllStandardOutput();
|
||||||
|
}
|
||||||
|
foreach ( QByteArray line, ba.split( '\n' ) )
|
||||||
|
{
|
||||||
|
if ( line.startsWith( "## " ) ||
|
||||||
|
line.startsWith( "# " ) ||
|
||||||
|
line.simplified() == "#" )
|
||||||
|
continue;
|
||||||
|
|
||||||
QString lineString = QString::fromLatin1( line.simplified() );
|
QString lineString = QString::fromLatin1( line.simplified() );
|
||||||
if ( lineString.startsWith( "#" ) )
|
if ( lineString.startsWith( "#" ) )
|
||||||
lineString.remove( '#' );
|
lineString.remove( '#' );
|
||||||
lineString = lineString.simplified();
|
lineString = lineString.simplified();
|
||||||
|
|
||||||
if ( lineString.isEmpty() )
|
if ( lineString.isEmpty() )
|
||||||
continue;
|
continue;
|
||||||
|
|
||||||
m_localeGenLines.append( lineString );
|
m_localeGenLines.append( lineString );
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@@ -27,7 +27,7 @@ import libcalamares
|
|||||||
|
|
||||||
def run():
|
def run():
|
||||||
""" Create locale """
|
""" Create locale """
|
||||||
us = '#en_US'
|
en_us_locale = '#en_US'
|
||||||
locale = libcalamares.globalstorage.value("lcLocale")
|
locale = libcalamares.globalstorage.value("lcLocale")
|
||||||
|
|
||||||
if not locale:
|
if not locale:
|
||||||
@@ -50,23 +50,30 @@ def run():
|
|||||||
# always enable en_US
|
# always enable en_US
|
||||||
with open("{!s}/etc/locale.gen".format(install_path), "w") as gen:
|
with open("{!s}/etc/locale.gen".format(install_path), "w") as gen:
|
||||||
for line in text:
|
for line in text:
|
||||||
if us in line and line[0] == "#":
|
if en_us_locale in line and line[0] == "#":
|
||||||
# uncomment line
|
# uncomment line
|
||||||
line = line[1:]
|
line = line[1:].lstrip()
|
||||||
|
|
||||||
if locale in line and line[0] == "#":
|
if locale in line and line[0] == "#":
|
||||||
# uncomment line
|
# uncomment line
|
||||||
line = line[1:]
|
line = line[1:].lstrip()
|
||||||
|
|
||||||
gen.write(line)
|
gen.write(line)
|
||||||
|
|
||||||
libcalamares.utils.target_env_call(['locale-gen'])
|
libcalamares.utils.target_env_call(['locale-gen'])
|
||||||
print('locale.gen done')
|
print('locale.gen done')
|
||||||
|
|
||||||
|
# write /etc/locale.conf
|
||||||
locale_conf_path = os.path.join(install_path, "etc/locale.conf")
|
locale_conf_path = os.path.join(install_path, "etc/locale.conf")
|
||||||
|
|
||||||
with open(locale_conf_path, "w") as locale_conf:
|
with open(locale_conf_path, "w") as locale_conf:
|
||||||
locale_split = locale.split(' ')[0]
|
locale_split = locale.split(' ')[0]
|
||||||
locale_conf.write("LANG={!s}\n".format(locale_split))
|
locale_conf.write("LANG={!s}\n".format(locale_split))
|
||||||
|
|
||||||
|
# write /etc/default/locale if /etc/default exists and is a dir
|
||||||
|
etc_default_path = os.path.join(install_path, "etc/default")
|
||||||
|
if os.path.isdir(etc_default_path):
|
||||||
|
with open(os.path.join(etc_default_path, "locale"), "w") as etc_default_locale:
|
||||||
|
locale_split = locale.split(' ')[0]
|
||||||
|
etc_default_locale.write("LANG={!s}\n".format(locale_split))
|
||||||
|
|
||||||
return None
|
return None
|
||||||
|
@@ -112,11 +112,12 @@ void
|
|||||||
PartitionCoreModule::init()
|
PartitionCoreModule::init()
|
||||||
{
|
{
|
||||||
CoreBackend* backend = CoreBackendManager::self()->backend();
|
CoreBackend* backend = CoreBackendManager::self()->backend();
|
||||||
auto devices = backend->scanDevices( true );
|
QList< Device* > devices = backend->scanDevices( true );
|
||||||
|
|
||||||
// Remove the device which contains / from the list
|
// Remove the device which contains / from the list
|
||||||
for ( auto it = devices.begin(); it != devices.end(); )
|
for ( QList< Device* >::iterator it = devices.begin(); it != devices.end(); )
|
||||||
if ( hasRootPartition( *it ) )
|
if ( hasRootPartition( *it ) ||
|
||||||
|
(*it)->deviceNode().startsWith( "/dev/zram") )
|
||||||
it = devices.erase( it );
|
it = devices.erase( it );
|
||||||
else
|
else
|
||||||
++it;
|
++it;
|
||||||
|
@@ -54,6 +54,7 @@
|
|||||||
PartitionPage::PartitionPage( PartitionCoreModule* core, QWidget* parent )
|
PartitionPage::PartitionPage( PartitionCoreModule* core, QWidget* parent )
|
||||||
: QWidget( parent )
|
: QWidget( parent )
|
||||||
, m_ui( new Ui_PartitionPage )
|
, m_ui( new Ui_PartitionPage )
|
||||||
|
, m_lastSelectedBootLoaderIndex(-1)
|
||||||
, m_core( core )
|
, m_core( core )
|
||||||
{
|
{
|
||||||
m_ui->setupUi( this );
|
m_ui->setupUi( this );
|
||||||
@@ -74,6 +75,11 @@ PartitionPage::PartitionPage( PartitionCoreModule* core, QWidget* parent )
|
|||||||
{
|
{
|
||||||
updateFromCurrentDevice();
|
updateFromCurrentDevice();
|
||||||
} );
|
} );
|
||||||
|
connect( m_ui->bootLoaderComboBox, static_cast<void(QComboBox::*)(const QString &)>(&QComboBox::activated),
|
||||||
|
[ this ]( const QString& /* text */ )
|
||||||
|
{
|
||||||
|
m_lastSelectedBootLoaderIndex = m_ui->bootLoaderComboBox->currentIndex();
|
||||||
|
} );
|
||||||
|
|
||||||
connect( m_ui->bootLoaderComboBox, &QComboBox::currentTextChanged,
|
connect( m_ui->bootLoaderComboBox, &QComboBox::currentTextChanged,
|
||||||
[ this ]( const QString& /* text */ )
|
[ this ]( const QString& /* text */ )
|
||||||
@@ -94,7 +100,7 @@ PartitionPage::PartitionPage( PartitionCoreModule* core, QWidget* parent )
|
|||||||
m_ui->bootLoaderComboBox->hide();
|
m_ui->bootLoaderComboBox->hide();
|
||||||
m_ui->label_3->hide();
|
m_ui->label_3->hide();
|
||||||
}
|
}
|
||||||
|
|
||||||
CALAMARES_RETRANSLATE( m_ui->retranslateUi( this ); )
|
CALAMARES_RETRANSLATE( m_ui->retranslateUi( this ); )
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -152,6 +158,9 @@ PartitionPage::onNewPartitionTableClicked()
|
|||||||
m_core->createPartitionTable( device, type );
|
m_core->createPartitionTable( device, type );
|
||||||
}
|
}
|
||||||
delete dlg;
|
delete dlg;
|
||||||
|
// PartionModelReset isn't emmited after createPartitionTable, so we have to manually update
|
||||||
|
// the bootLoader index after the reset.
|
||||||
|
updateBootLoaderIndex();
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
void
|
||||||
@@ -188,6 +197,7 @@ PartitionPage::onEditClicked()
|
|||||||
updatePartitionToCreate( model->device(), partition );
|
updatePartitionToCreate( model->device(), partition );
|
||||||
else
|
else
|
||||||
editExistingPartition( model->device(), partition );
|
editExistingPartition( model->device(), partition );
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
void
|
||||||
@@ -217,7 +227,12 @@ PartitionPage::onRevertClicked()
|
|||||||
m_ui->deviceComboBox->setCurrentIndex( oldIndex );
|
m_ui->deviceComboBox->setCurrentIndex( oldIndex );
|
||||||
updateFromCurrentDevice();
|
updateFromCurrentDevice();
|
||||||
} ),
|
} ),
|
||||||
[]{},
|
[ this ]{
|
||||||
|
m_lastSelectedBootLoaderIndex = -1;
|
||||||
|
if( m_ui->bootLoaderComboBox->currentIndex() < 0 ) {
|
||||||
|
m_ui->bootLoaderComboBox->setCurrentIndex( 0 );
|
||||||
|
}
|
||||||
|
},
|
||||||
this );
|
this );
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -336,4 +351,14 @@ PartitionPage::onPartitionModelReset()
|
|||||||
{
|
{
|
||||||
m_ui->partitionTreeView->expandAll();
|
m_ui->partitionTreeView->expandAll();
|
||||||
updateButtons();
|
updateButtons();
|
||||||
|
updateBootLoaderIndex();
|
||||||
|
}
|
||||||
|
|
||||||
|
void
|
||||||
|
PartitionPage::updateBootLoaderIndex()
|
||||||
|
{
|
||||||
|
// set bootloader back to user selected index
|
||||||
|
if ( m_lastSelectedBootLoaderIndex >= 0 && m_ui->bootLoaderComboBox->count() ) {
|
||||||
|
m_ui->bootLoaderComboBox->setCurrentIndex( m_lastSelectedBootLoaderIndex );
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
@@ -60,8 +60,10 @@ private:
|
|||||||
void editExistingPartition( Device*, Partition* );
|
void editExistingPartition( Device*, Partition* );
|
||||||
void updateBootLoaderInstallPath();
|
void updateBootLoaderInstallPath();
|
||||||
void updateFromCurrentDevice();
|
void updateFromCurrentDevice();
|
||||||
|
void updateBootLoaderIndex();
|
||||||
|
|
||||||
QMutex m_revertMutex;
|
QMutex m_revertMutex;
|
||||||
|
int m_lastSelectedBootLoaderIndex;
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif // PARTITIONPAGE_H
|
#endif // PARTITIONPAGE_H
|
||||||
|
@@ -52,13 +52,15 @@
|
|||||||
#include <QProcess>
|
#include <QProcess>
|
||||||
#include <QStackedWidget>
|
#include <QStackedWidget>
|
||||||
#include <QTimer>
|
#include <QTimer>
|
||||||
|
#include <QtConcurrent/QtConcurrent>
|
||||||
|
#include <QFutureWatcher>
|
||||||
|
|
||||||
PartitionViewStep::PartitionViewStep( QObject* parent )
|
PartitionViewStep::PartitionViewStep( QObject* parent )
|
||||||
: Calamares::ViewStep( parent )
|
: Calamares::ViewStep( parent )
|
||||||
, m_widget( new QStackedWidget() )
|
, m_widget( new QStackedWidget() )
|
||||||
, m_core( new PartitionCoreModule( this ) )
|
, m_core( nullptr )
|
||||||
, m_choicePage( nullptr )
|
, m_choicePage( nullptr )
|
||||||
, m_manualPartitionPage( new PartitionPage( m_core ) )
|
, m_manualPartitionPage( nullptr )
|
||||||
{
|
{
|
||||||
m_widget->setContentsMargins( 0, 0, 0, 0 );
|
m_widget->setContentsMargins( 0, 0, 0, 0 );
|
||||||
|
|
||||||
@@ -70,10 +72,21 @@ PartitionViewStep::PartitionViewStep( QObject* parent )
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
void
|
||||||
|
PartitionViewStep::initPartitionCoreModule()
|
||||||
|
{
|
||||||
|
Q_ASSERT( !m_core );
|
||||||
|
m_core = new PartitionCoreModule( this );
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
void
|
void
|
||||||
PartitionViewStep::continueLoading()
|
PartitionViewStep::continueLoading()
|
||||||
{
|
{
|
||||||
Q_ASSERT( !m_choicePage );
|
Q_ASSERT( !m_choicePage );
|
||||||
|
Q_ASSERT( !m_manualPartitionPage );
|
||||||
|
|
||||||
|
m_manualPartitionPage = new PartitionPage( m_core );
|
||||||
m_choicePage = new ChoicePage();
|
m_choicePage = new ChoicePage();
|
||||||
|
|
||||||
m_choicePage->init( m_core );
|
m_choicePage->init( m_core );
|
||||||
@@ -463,7 +476,20 @@ PartitionViewStep::setConfigurationMap( const QVariantMap& configurationMap )
|
|||||||
gs->insert( "drawNestedPartitions", false );
|
gs->insert( "drawNestedPartitions", false );
|
||||||
}
|
}
|
||||||
|
|
||||||
QTimer::singleShot( 0, this, &PartitionViewStep::continueLoading );
|
// Now that we have the config, we load the PartitionCoreModule in the background
|
||||||
|
// because it could take a while. Then when it's done, we can set up the widgets
|
||||||
|
// and remove the spinner.
|
||||||
|
QFutureWatcher< void >* watcher = new QFutureWatcher< void >();
|
||||||
|
connect( watcher, &QFutureWatcher< void >::finished,
|
||||||
|
this, [ this, watcher ]
|
||||||
|
{
|
||||||
|
continueLoading();
|
||||||
|
watcher->deleteLater();
|
||||||
|
} );
|
||||||
|
|
||||||
|
QFuture< void > future =
|
||||||
|
QtConcurrent::run( this, &PartitionViewStep::initPartitionCoreModule );
|
||||||
|
watcher->setFuture( future );
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@@ -44,8 +44,6 @@ public:
|
|||||||
explicit PartitionViewStep( QObject* parent = 0 );
|
explicit PartitionViewStep( QObject* parent = 0 );
|
||||||
virtual ~PartitionViewStep();
|
virtual ~PartitionViewStep();
|
||||||
|
|
||||||
void continueLoading();
|
|
||||||
|
|
||||||
QString prettyName() const override;
|
QString prettyName() const override;
|
||||||
QWidget* createSummaryWidget() const override;
|
QWidget* createSummaryWidget() const override;
|
||||||
|
|
||||||
@@ -68,6 +66,9 @@ public:
|
|||||||
QList< Calamares::job_ptr > jobs() const override;
|
QList< Calamares::job_ptr > jobs() const override;
|
||||||
|
|
||||||
private:
|
private:
|
||||||
|
void initPartitionCoreModule();
|
||||||
|
void continueLoading();
|
||||||
|
|
||||||
PartitionCoreModule* m_core;
|
PartitionCoreModule* m_core;
|
||||||
QStackedWidget* m_widget;
|
QStackedWidget* m_widget;
|
||||||
ChoicePage* m_choicePage;
|
ChoicePage* m_choicePage;
|
||||||
|
Reference in New Issue
Block a user