Rohan Garg
d67fdccd4c
Make sure we also set a preferred Xsession
2016-11-02 09:51:27 +01:00
Kevin Kofler
075577d948
[netinstall] Support selecting visible groups by default.
...
In other words, support:
hidden: false
selected: true
groups.
This was supposed to work according to README.md, but not actually
implemented. Now it should be working.
2016-11-02 05:58:00 +01:00
Rohan Garg
662656a762
Better handling for when the Autologin section already has things
2016-10-31 17:55:59 +01:00
Rohan Garg
f7ac1a3ede
Use configparser to parse sddm.conf
...
Since sddm.conf follows the INI format we can use configparser
with a few added options to properly parse the config and write
it out instead of manually parsing each line which is slow and
prone to error.
For eg. The old code would fail to parse a conf which had no
commented out User key but where the user had configured autologin
in Calamares.
2016-10-31 17:10:46 +01:00
Kevin Kofler
1548fe4810
[partition] Use FlagEsp instead of sgdisk to scan for ESPs.
...
Address an old FIXME in
PartitionCoreModule::scanForEfiSystemPartitions(): Check the FlagEsp on
the Partition object (that KPMcore has been supporting since 2.1.0)
instead of running sgdisk.
2016-10-29 01:09:14 +02:00
Kevin Kofler
5377003f89
Set the ESP flag in partition rather than bootloader.
...
The manual partitioning setup was already requiring the user to check
the ESP flag for the EFI System Partition. Now the autopartitioning also
sets it directly (a one-line change). The sgdisk call in the bootloader
module is thus no longer necessary (it was only a workaround because
kpmcore < 2.1.0 did not support FlagEsp), so remove that snippet.
This fixes configurations such as NVME disks where splitting boot_device
into boot_device[-1:] and boot_device[:-1] is not the correct split
(because the partition gets a 2-letter suffix) (reported by demmm on
IRC).
2016-10-29 00:52:38 +02:00
Teo Mrnjavac
4488761a63
Only add LUKS keyfile if relevant, and with a 15s timeout.
2016-10-28 10:17:39 +02:00
Teo Mrnjavac
fbe72b3663
Improve user-visible strings in SetPartFlagsJob.
2016-10-28 09:24:00 +02:00
Teo Mrnjavac
de979f8528
Add user to groups separately from useradd.
2016-10-27 15:26:20 +02:00
Philip
22cf2c16a2
[displaymanager] use same pattern for all str.format calls
2016-10-26 21:40:14 +02:00
Bernhard Landauer
c99cdc0fa7
[displaymanager] add Deepin
2016-10-26 03:56:03 +02:00
Kevin Kofler
668284f5f1
[grubcfg] Compare integers to integers, not strings.
...
target_env_call returns an integer, so do not compare its result to the
string "0".
2016-10-21 00:19:22 +02:00
V3n3RiX
11c9e87fd0
dracut : unlock encrypted swap if exists ( #267 )
...
* dracut : unlock encrypted swap if exists
* only check for swap_outer_uuid if dracut exists
2016-10-20 17:00:15 +02:00
V3n3RiX
0bde162a9c
Only write rd.luks.uuid if dracut is present and leave other initramfs generators clean ( #266 )
...
* add rd.luks.uuid to GRUB_CMDLINE (fixes unbootable system with dracut --nohostonly, and doesn't affect any other initramfs generators)
* typo
* only write rd.luks.uuid line if dracut is present, and leave other initramfs generators alone :D
* add missing = operator
2016-10-19 17:41:35 +02:00
V3n3RiX
7e74d48fb6
add rd.luks.uuid to GRUB_CMDLINE (fixes unbootable system with dracut… ( #265 )
...
* add rd.luks.uuid to GRUB_CMDLINE (fixes unbootable system with dracut --nohostonly, and doesn't affect any other initramfs generators)
* typo
2016-10-18 18:59:51 +02:00
Kevin Kofler
d5dfe86525
[dracutlukscfg] New module: pre-configuration for dracut+LUKS.
...
Add a dracutlukscfg module to write a
/etc/dracut.conf.d/calamares-luks.conf file for LUKS full disk
encryption support with Dracut.
You should run:
* partition
* luksbootkeyfile
* dracutlukscfg
* dracut
in that order (not necessarily in immediate sequence). The
luksopenswaphook module is not used with Dracut.
2016-10-16 19:08:16 +02:00
Kevin Kofler
2573731cdb
[grubcfg] Fix mismatched quoting and escaping.
...
If we use .replace("'", "'\\''") for escaping, we also need to use
single quotes, not double quotes.
This was broken by the port from '%' to format, which also randomly
changed quoting characters for no good reason. Changing the outer ones
does not matter, but \" or ' within a string is not the same thing!
2016-10-16 18:44:22 +02:00
Teo Mrnjavac
6e7dc0b437
Use the target system's boot name in partitioning summary widget.
2016-10-14 15:27:24 +02:00
David McKinney
b63ab4df15
[initramfscfg] New module: pre-configuration for update-initramfs.
...
Added an initramfscfg module to handle pre-configuration for the Debian
update-initramfs, such as installing hooks (needed for luks/FDE support
on Debian-based distros).
Closes #254 . (Cherry-picked from the pull request.)
2016-10-13 19:20:20 +02:00
Kevin Kofler
0876af63d0
[fstab] Write configurable options to crypttab (default: luks).
...
fstab.conf: Add a new "crypttabOptions" option that defaults to "luks".
Document that for Debian and Debian-based distributions, the
setting should be changed to "luks,keyscript=/bin/cat".
main.py: Append the options from the above setting to the end of every
line in crypttab.
At least the "luks" option should always be there, because there may be
different encryption types. The Debian initramfs-tools also require the
Debian-specific keyscript option and will otherwise ignore the keyfile
entirely (see pull request #254 ).
2016-10-13 19:01:13 +02:00
Kevin Kofler
4d28544e6f
[fstab] Do not omit "/" from crypttab.
...
At least the Debian update-initramfs needs the entry to be there (see
pull request #254 ). Dracut will probably need it too. And logically, it
should be there.
2016-10-13 18:44:07 +02:00
Kevin Kofler
0ae41dd286
New dummycpp C++ job module (ported from dummypython).
2016-09-27 17:25:09 +02:00
Kevin Kofler
00d9f211f5
Add support for C++/Qt batch job plugins
...
These job plugins work similarly to view modules, with the following
differences:
* These jobs need to link only libcalamares, not libcalamaresui. For
this reason, PluginFactory was moved from libcalamaresui to
libcalamares. (It depends only on QtCore.)
* Instead of deriving from ViewModule, derive from CppJob (which is a
subclass of Job).
* Like process and Python jobs, a job plugin is a single job, whereas a
ViewModule can generate a whole list of jobs.
The CppJob and CppJobModule classes are new. In Module::fromDescriptor,
the combination type=job, intf=qtplugin is now supported and mapped to
CppJobModule.
2016-09-27 17:25:09 +02:00
Teo Mrnjavac
5796b05fda
Allow disabling automated LUKS modes.
2016-09-26 13:14:54 +02:00
Teo Mrnjavac
5bf4bb8787
Make writeEtcDefaultKeyboard an option in keyboard.conf.
2016-09-26 10:57:57 +02:00
Teo Mrnjavac
40cb168468
Fix typo.
2016-09-26 10:57:56 +02:00
Teo Mrnjavac
6f3dc32bfe
Config file comment.
2016-09-26 10:57:56 +02:00
Kevin Kofler
1b2cce4be3
Fix locale filtering for UTF-8 on Fedora.
...
locale -a returns the locales using ".utf8" names rather than ".UTF-8".
The case-insensitive match does not help because it is "utf8" rather
than "UTF-8". So we need to match both with and without the dash.
2016-09-26 01:47:58 +02:00
Teo Mrnjavac
567ac87440
Remove target resolv.conf before proceeding.
2016-09-22 15:43:41 +02:00
Teo Mrnjavac
37384279e5
Add support for writing keymap data to /etc/default/keyboard.
2016-09-22 12:32:30 +02:00
shainer
479b67f696
In the netinstall page, always show the arrow-down button.
...
The arrow no longer changes direction depending on whether
the button is clicked or not.
2016-09-21 12:56:38 +02:00
shainer
d45a6bd856
In the netinstall page, fix the group button.
...
The button is "not checked" by default, and becomes
checked when clicked; the packageview becomes visible
when the button is checked.
2016-09-20 18:20:53 +02:00
Teo Mrnjavac
4662c9c877
Remove irrelevant debug output.
2016-09-19 12:34:45 +02:00
Teo Mrnjavac
3408eb5c56
Fix VFAT filename handling in bootloader module.
...
CAL-385 #close
2016-09-16 16:31:38 +02:00
Teo Mrnjavac
a48dadf757
Warning in debug output when the RequirementsChecker is misconfigured.
...
CAL-390 #close
2016-09-16 10:54:39 +02:00
Kevin Kofler
0ad215bcca
users: Drop dependency on chfn. ( #260 )
...
Pass the full name directly to useradd instead, using the "-c" (comment)
parameter, which is "currently used as the field for the user's full
name" according to the documentation.
The chfn utility is no longer installed by default on current Fedora
releases due to its dependency on libuser. (They split out chfn and chsh
from util-linux into an optional subpackage.) It could be added as a
dependency of Calamares, but since it is needed inside the chroot, it
has to be on the base live image, not the overlay. Thus, to allow
testing Calamares with a simple "dnf install calamares" again, the
dependency needs to go away. And it is unnecessary anyway.
2016-09-16 07:55:04 +02:00
Philip Müller
ea1c8a0e5d
[plymouthcfg] add module to configure Plymouth ( #256 )
2016-09-12 07:59:17 +02:00
Jonathan Carter
c83ca9af44
Fix spelling mistake in kdsingleapplicationguard.cpp ( #257 )
...
s/emty/empty/g.
2016-09-12 07:56:13 +02:00
Chantara Tith
64db6d5ba1
Use device's immutable copy instead of rescanning.
2016-09-11 16:20:50 +07:00
Teo Mrnjavac
c316d22b08
Keep an immutable copy for every scanned Device* to avoid rescans.
2016-09-09 11:28:39 +02:00
Teo Mrnjavac
464336d609
Assert on nullptr Device*.
2016-09-09 11:28:39 +02:00
Chantara Tith
23026252a8
Update to KPMcore LUKS' API changes
2016-09-09 11:28:39 +02:00
Chantara Tith
aa10fe982a
API Changes, logicalSectorSize -> logicalSize, totalSectors -> totalLogical.
2016-09-09 11:28:39 +02:00
Teo Mrnjavac
cbb2162ee9
Merge pull request #255 from stikonas/master
...
Port away from most cases of Q_FOREACH to C++11 ranged for loop.
2016-09-02 15:14:25 +02:00
Teo Mrnjavac
6c928e0404
Exclude ISO9660 volumes.
2016-09-02 15:12:48 +02:00
Teo Mrnjavac
ad219e1b8e
Exclude loop devices with mounted children from devices list.
2016-09-02 12:08:00 +02:00
Andrius Štikonas
9f0ca042fe
Port away from most cases of Q_FOREACH to C++11 ranged for loop.
...
In order to avoid deep copies, Qt containers over which we iterate must be const
The remaining unported cases require qAsConst (Qt 5.7) or std::as_const (C++17)
2016-09-01 16:46:14 +01:00
Teo Mrnjavac
1a1657a7fc
Set timezone on the live system too.
2016-08-26 17:20:48 +02:00
Teo Mrnjavac
f2a087c348
Write timezone correctly.
2016-08-26 15:05:42 +02:00
Teo Mrnjavac
83b341b0f7
Handle a variety of case-insensitive situations on the VFAT ESP.
...
This fixes CAL-385 #close
2016-08-23 10:23:22 +02:00
Teo Mrnjavac
7104ef915a
Merge pull request #251 from udeved/master
...
displaymanager: write processed DM list to globalstorage
2016-08-19 13:30:28 +02:00
Teo Mrnjavac
0684a761bd
Copyright.
2016-08-19 12:49:36 +02:00
Teo Mrnjavac
d99d7bfdff
Expose CalamaresUtils::obscure as libcalamares.utils.obscure.
2016-08-19 12:49:36 +02:00
Teo Mrnjavac
f8078be2fd
Wrap CalamaresUtils::obscure in CalamaresPython.
2016-08-19 12:49:36 +02:00
udeved
c2d7890f3e
displaymanager: write process DM list to globalstorage so other modules can use it
2016-08-19 09:42:28 +02:00
Teo Mrnjavac
8daac2cba5
Recompute defaults after init.
2016-08-18 16:18:24 +02:00
Teo Mrnjavac
3146d2093e
Add support for freegeoip.net in locale module.
...
This is disabled by default. To enable, provide a geoipUrl setting in
locale.conf.
Relies on the RequirementsChecker output, in the welcome module.
2016-08-18 15:38:41 +02:00
Teo Mrnjavac
cd1268cb63
Fix defaults.
2016-08-18 15:30:08 +02:00
Teo Mrnjavac
9a1c65a23e
Style.
2016-08-18 15:29:32 +02:00
Teo Mrnjavac
0521f8a3b9
Be sure to always write hasInternet into GlobalStorage.
2016-08-18 15:28:55 +02:00
Teo Mrnjavac
6926f239f7
Write hasInternet into GlobalStorage.
2016-08-18 11:27:53 +02:00
Philip Müller
239c7534d2
[locale] default to the states
...
Since our default locale setting is **en_US** anyway, it makes more sense to default to New York.
2016-08-15 10:06:06 +02:00
V3n3RiX
ef3600891f
improve portage backend, so that it removes ALL calamares deps
2016-08-12 15:32:35 +01:00
Teo Mrnjavac
701d7d8a62
Be sure to validate user name even if empty.
2016-08-12 12:40:15 +02:00
Teo Mrnjavac
e6cabe277b
Fix locale names and user-visible locale names.
2016-08-10 16:10:06 +02:00
Teo Mrnjavac
2b26f6e6c9
Fix localecfg to work with new locale module.
2016-08-10 12:11:48 +02:00
Teo Mrnjavac
dee87f68aa
And in GS, it's called localeConf now.
2016-08-10 11:47:36 +02:00
Teo Mrnjavac
160d00a47a
Write locales map into GS.
2016-08-10 11:47:24 +02:00
Teo Mrnjavac
8f44f76443
Use LocaleConfiguration in LocalePage. Add relevant widgets.
...
Also fix error reporting.
Move guesswork to LocaleConfiguration + a total rewrite.
Locale is now a LocaleConfiguration, that converts to QMap.
2016-08-10 11:45:22 +02:00
Teo Mrnjavac
f60f1c6220
New LocaleConfiguration class which also deals with locale guesswork.
2016-08-10 11:43:13 +02:00
Teo Mrnjavac
471d94a02e
Read country codes from zone.tab.
2016-08-10 11:43:13 +02:00
Teo Mrnjavac
2e27c3b84b
Don't try to overwrite resolv.conf in no-chroot mode.
2016-08-02 13:25:33 +02:00
Teo Mrnjavac
5e12096e4b
Only use UTF-8 locales.
2016-08-02 13:25:33 +02:00
Teo Mrnjavac
849137c20b
Use UUIDs instead of paths to match osprober entries with partitions.
2016-07-28 17:53:54 +02:00
Teo Mrnjavac
811261258b
Try to load filesystem UUIDs into the OsproberEntryList structure.
2016-07-28 17:53:54 +02:00
Teo Mrnjavac
f13f6a1faf
Add filesystem UUID to OsproberEntry structure.
2016-07-28 17:53:54 +02:00
Teo Mrnjavac
18b6e56271
nullptr safety.
2016-07-28 17:53:54 +02:00
Teo Mrnjavac
754cfc78b3
Make che color cache indexed by UUID instead of by path.
2016-07-28 17:53:54 +02:00
Philip
8768c3af66
[machineid] simplify code
2016-07-28 02:37:51 +02:00
Philip
ca9f4bc053
[manchineid] proper cleanup
2016-07-28 02:00:47 +02:00
Philip
24c0da3fb1
[machineid] fix copyright
2016-07-28 01:28:53 +02:00
Philip
23789675c8
[machineid] cleanup first
...
- to garantie a random new ID also dbus machine-id needs to be removed
2016-07-28 01:27:41 +02:00
Teo Mrnjavac
003456594e
Try with new enumeration but no cache reset.
2016-07-27 16:55:22 +02:00
Teo Mrnjavac
1da4360ed6
Go on with colors enumeration even when there's a new partition.
2016-07-27 16:53:17 +02:00
Teo Mrnjavac
c08eecbbaf
Invalidate colors cache on delete.
2016-07-27 16:49:53 +02:00
Teo Mrnjavac
9f1f3a8f54
Add invalidateCache to ColorUtils.
2016-07-27 16:49:13 +02:00
Teo Mrnjavac
39782f80c9
Fix warnings.
2016-07-27 13:38:30 +02:00
Teo Mrnjavac
01607d878a
Write more LC variables in localecfg.
2016-07-26 17:39:55 +02:00
Teo Mrnjavac
41ee4096a6
Merge pull request #244 from hmikihth/master
...
Support the already mounted loop fs (example in the blackPanther OS)
2016-07-26 10:05:53 +02:00
Teo Mrnjavac
e9da3acd95
Fix EncryptWidget height.
2016-07-22 16:36:26 +02:00
Teo Mrnjavac
04ab71bad9
Fix default new partition text.
2016-07-22 16:36:26 +02:00
Teo Mrnjavac
9c90a2a500
Useless margins are useless.
2016-07-22 16:36:26 +02:00
Teo Mrnjavac
edeee85cd3
Write reuse Home check box string.
2016-07-22 16:36:26 +02:00
Teo Mrnjavac
e6f9714f84
Avoid homePartitionPath going out of scope.
2016-07-22 16:36:26 +02:00
Teo Mrnjavac
90bb64fb17
Pass current index by value.
2016-07-22 16:36:26 +02:00
Teo Mrnjavac
aaf85407fb
Only look for a separate /home partition if a partition was found.
2016-07-22 16:36:26 +02:00
Teo Mrnjavac
d65df112dd
If reuseHome is set and if /home/<username> exists, backup dotfiles.
2016-07-22 16:36:26 +02:00
Teo Mrnjavac
6c6e4a1f88
Write reuseHome to GlobalStorage.
2016-07-22 16:36:26 +02:00
Teo Mrnjavac
8b0b4c73de
Add Q_UNUSED where relevant.
2016-07-22 16:36:26 +02:00
Teo Mrnjavac
d44a3d831b
Warning fixes: avoid C-style casts.
2016-07-22 16:36:26 +02:00
Teo Mrnjavac
30ff216dea
Warning fix: implicit cast.
2016-07-22 16:36:26 +02:00
Teo Mrnjavac
90c06bd733
Warning fixage (init list order, lossy cast, Q_UNUSED).
2016-07-22 16:36:26 +02:00
Teo Mrnjavac
c1e535a8e8
Hide reuse checkbox on action selection change.
2016-07-22 16:36:26 +02:00
Teo Mrnjavac
a17f369cee
React to reuse home checkbox by setting /home mount point.
...
Rearranged Replace workflow a bit: onPartitionReplaceSelected is now
the on choice slot, which in turn calls doReplaceSelectedPartition.
onHomeCheckBoxStateChanged also calls doReplaceSelectedPartition if we
need to redo the Replace task with/without a separate home to keep.
m_reuseHomeCheckBox is hidden by default.
2016-07-22 16:36:26 +02:00
Teo Mrnjavac
bc345b3ddc
Add "reuse home" check box to .ui.
2016-07-22 16:36:26 +02:00
Teo Mrnjavac
45ed210192
Add OsproberHomePartitionPathRole to PartitionModel.
2016-07-22 16:36:26 +02:00
Teo Mrnjavac
be3070ca48
Populate /home partition path, if any.
2016-07-22 16:36:26 +02:00
Teo Mrnjavac
1443b335d3
OsproberEntry.cpp be gone!
2016-07-22 16:36:26 +02:00
Teo Mrnjavac
edecccfa46
Build it.
2016-07-22 16:36:26 +02:00
Teo Mrnjavac
5fe5b8a4f3
Add some guesswork to acquire a part node from a fstab entry for /home.
2016-07-22 16:36:26 +02:00
Teo Mrnjavac
f2f5a18984
Reading a system's fstab lines into the osprober entries list.
2016-07-22 16:36:26 +02:00
Teo Mrnjavac
098aa5546c
Add struct FstabEntry to OsproberEntry.h.
2016-07-22 16:36:26 +02:00
Teo Mrnjavac
2951c88990
Init filesystems asynchronously.
2016-07-20 13:02:04 +02:00
Teo Mrnjavac
45f6e6c55b
Rearrange asynchronous scan in PartitionCoreModule a bit.
2016-07-19 13:04:00 +02:00
Teo Mrnjavac
92eb947cc5
Merge pull request #245 from shainer/netinstall
...
Netinstall module. See README for complete guide. Allows to configure...groups and packages; selected packages are installed through the 'packages' module.
2016-07-15 18:01:43 +02:00
shainer
5e2ed69629
Set a descriptive User Agent for requests, so sourceforge.net does not complain.
2016-07-15 14:02:14 +01:00
shainer
e462c3c8d8
Use QNetworkAccessManager instead of KIO to download the config; remove KIO dep.
2016-07-15 13:27:10 +01:00
Teo Mrnjavac
8704a799ad
Merge pull request #249 from shainer/networkcfg
...
networkcfg needs to copy resolv.conf in the chroot
2016-07-12 12:25:30 +02:00
shainer
8798dc03ea
README for netinstall now explains how to require a working connection when launching Calamares.
2016-07-11 22:07:42 +01:00
Teo Mrnjavac
611f81761b
Merge pull request #247 from shainer/master
...
packageOperations should be a map between operation type and list of …
2016-07-11 11:20:59 +02:00
shainer
a45f78e9ac
networkcfg needs to copy resolv.conf in the chroot.
2016-07-10 15:29:49 +01:00
shainer
d16691ae44
Add netinstall module setup instructions and lessons in README.md
2016-07-09 17:14:10 +01:00
shainer
53214a15bc
Add pkgman to run_operations invocation.
2016-07-05 21:06:27 +01:00
shainer
2349f7125e
Add conversion utilities from QHash to py dict. When translating from pydict, however, translate into a QMap as before to keep current behaviour.
2016-07-04 22:30:45 +01:00
shainer
d0321fdf4f
When setting packageOperations, use QMap, not QHash, since QHash is not currently supported.
2016-07-04 22:20:54 +01:00
shainer
058c7d8913
packageOperations should be a map between operation type and list of packages. It does not make sense for it to be a list of dictionaries, all with the same format. Also makes conversions with QVariant harder.
2016-07-04 22:18:21 +01:00
shainer
f84da1e013
Fix build failure seen in the live test.
2016-07-02 23:54:32 +01:00
shainer
f2658f5eb0
Left commented code in previous commit, switch to cDebug().
2016-06-30 23:00:03 +01:00
shainer
aa54d82d85
Last connect() conversion in the module.
2016-06-30 22:59:29 +01:00
shainer
c54fae2f6e
Delete redundant include
2016-06-30 22:33:00 +01:00
shainer
793717e145
Change view name to 'Package selection'
2016-06-30 22:32:31 +01:00
shainer
afedf9e024
Switch two connects to Qt5 style.
2016-06-30 22:27:37 +01:00
Teo Mrnjavac
0f40e8f3fa
Refresh summary widgets on leave.
2016-06-29 19:25:52 +02:00
Teo Mrnjavac
2c68802446
Reapply the action choice instead.
2016-06-29 18:46:02 +02:00
Teo Mrnjavac
b2b202d190
Do a full revert.
2016-06-29 18:34:02 +02:00
Teo Mrnjavac
f1a29033a2
Revert PCM before applying Alongside operation.
2016-06-29 18:21:38 +02:00
shainer
877eb71886
Use utils from the YamlUtils package to read nodes more elegantly.
2016-06-27 23:23:10 +01:00
shainer
631dcc18f5
Use nullptr instead of 0 for pointers.
2016-06-27 23:03:15 +01:00
shainer
b043b42795
Add copyright statements when missing, make them all the same.
2016-06-27 23:00:47 +01:00
shainer
a5cc9f2a9d
Netinstall module. See README for complete guide. Allows to configure groups and packages; selected packages are installed through the 'packages' module.
2016-06-25 23:26:08 +01:00
Teo Mrnjavac
9d4a636a16
Revert "Improve debug output in PartitionBarsView."
...
This reverts commit 9e186190fc
.
2016-06-24 17:38:52 +02:00
Teo Mrnjavac
59f0e9cc2d
Revert "Improve debug output."
...
This reverts commit 3d5ccb2712
.
2016-06-24 17:38:45 +02:00
Teo Mrnjavac
e96c7f95ef
Improve debug output.
2016-06-24 17:15:26 +02:00
Teo Mrnjavac
9888a4e5d3
Only make it dirty if something changes.
2016-06-24 17:06:39 +02:00
Teo Mrnjavac
a96b7c1596
Reset previous spinBox value on resizer widget reset.
2016-06-24 17:00:55 +02:00
Teo Mrnjavac
1f664f1eec
Keep track of previous spinbox value.
2016-06-24 16:58:23 +02:00
Teo Mrnjavac
cd94768850
Revert "Try to work around spinbox dirty status change on apply issue."
...
This reverts commit 9c90d54eda
.
2016-06-24 16:46:56 +02:00
Teo Mrnjavac
9c90d54eda
Try to work around spinbox dirty status change on apply issue.
2016-06-24 16:28:17 +02:00
Teo Mrnjavac
5450a18c85
Copyright.
2016-06-24 16:05:33 +02:00
Teo Mrnjavac
2e173c183f
Do not align partition boundaries unless explicitly requested.
2016-06-24 16:04:48 +02:00
Teo Mrnjavac
9d995f3625
Use length instead of calculating sectors count.
2016-06-24 15:10:20 +02:00
Teo Mrnjavac
4f41cf54a9
Hook up PartitionLabelsView to model.
2016-06-23 10:01:13 +02:00
Teo Mrnjavac
3940e2b09d
Add config option for always showing partition labels.
2016-06-23 10:00:55 +02:00
Teo Mrnjavac
5520972e5a
Add labels view to manual partitioning page.
2016-06-23 10:00:00 +02:00
Teo Mrnjavac
3d5ccb2712
Improve debug output.
2016-06-23 09:48:03 +02:00
Teo Mrnjavac
9e186190fc
Improve debug output in PartitionBarsView.
2016-06-22 18:18:53 +02:00
Teo Mrnjavac
d6676b2245
Retry mke2fs before giving up.
2016-06-21 17:20:45 +02:00
Teo Mrnjavac
66a516038b
Check for existence of LUKS information.
2016-06-17 17:35:33 +02:00
Teo Mrnjavac
0f8ef4220c
Lint.
2016-06-17 17:10:09 +02:00
Teo Mrnjavac
e6806048e4
Add support for generating crypttab.
...
This relies on the luksbootkeyfile module, which should create a keyfile
at / and add it to all interested partitions.
2016-06-17 17:04:20 +02:00
Teo Mrnjavac
73e4cee81b
Copyright.
2016-06-17 15:58:32 +02:00
Teo Mrnjavac
5a6bc95859
Support NVME device naming.
2016-06-17 15:57:53 +02:00
Teo Mrnjavac
ce8ffb8e52
Bump KPMcore.
2016-06-17 15:24:14 +02:00
Teo Mrnjavac
49cb6d304d
Add a controlled number of retries to fsck, 2sec apart.
2016-06-17 13:55:37 +02:00
Teo Mrnjavac
e7c5a2b1a5
Try running fsck twice before giving up.
2016-06-17 12:07:57 +02:00
Teo Mrnjavac
fba8e448bb
Fix build on very old GCC.
2016-06-13 17:47:54 +02:00
Teo Mrnjavac
bea6b5f17e
Stupid compilers are stupid.
2016-06-13 15:13:26 +02:00
Teo Mrnjavac
8ff943e5b5
Improve check for encryption status.
2016-06-10 17:52:54 +02:00
Teo Mrnjavac
7a03dc102d
Update fields when the default filesystem is chosen.
2016-06-10 16:05:34 +02:00
Teo Mrnjavac
fe107ac762
Obey default FS type setting in EditExistingPartitionDialog.
2016-06-10 15:41:53 +02:00
Teo Mrnjavac
395fb340b7
Make the Create Partition dialog obey the default FS type setting.
2016-06-10 15:37:11 +02:00
Teo Mrnjavac
a00ebc01e7
Use EncryptWidget for relevant partition types in CreatePartitionDialog.
2016-06-10 15:22:40 +02:00
Teo Mrnjavac
d75d5c76fe
Add EncryptWidget to CreatePartitionDialog.ui.
2016-06-10 15:22:40 +02:00
Teo Mrnjavac
99e719882f
Add setText/reset to EncryptWidget, and fix tooltip string.
2016-06-10 15:22:40 +02:00
Teo Mrnjavac
18742d2afd
Ignore encrypt widget if the choice is Manual.
2016-06-10 15:22:40 +02:00
Teo Mrnjavac
f5ff716369
Make everything obey the default filesystem type setting.
2016-06-10 15:22:21 +02:00
Teo Mrnjavac
6fa467715c
Add default value to partition.conf.
2016-06-10 15:08:37 +02:00
Teo Mrnjavac
498af8deef
Add defaultFileSystemType to settings.
2016-06-10 15:08:24 +02:00
Teo Mrnjavac
84d60ba856
Force reboot with systemctl -i.
2016-06-09 17:26:26 +02:00
Teo Mrnjavac
326ff5e724
Provide sane defaults for restart command, and make it optional.
...
CAL-372 #close
2016-06-09 17:23:40 +02:00
Teo Mrnjavac
936e7fab7c
Initial support for Alongside install with LUKS.
2016-06-07 17:35:39 +02:00
hmikihth
42ceffa2e9
.
2016-06-05 13:16:31 +01:00
hmikihth
f18dc02459
A comment has been deleted
2016-06-04 12:23:59 +01:00
hmikihth
062e9b764c
blackPanther OS and Fedora compatibility
2016-06-04 12:11:02 +01:00
hmikihth
377a1c3a17
Support the already mounted loop fs (example in the blackPanther OS)
2016-06-04 03:15:43 +01:00
Teo Mrnjavac
fd2d24d650
Always show encrypt widget for Replace.
2016-06-03 17:56:31 +02:00
Teo Mrnjavac
4113207e00
Fix next status handling in alongside and replace.
2016-06-03 17:55:14 +02:00
Teo Mrnjavac
e84108e234
Add encryption support in PartitionActions::doReplacePartition.
2016-06-03 16:39:28 +02:00
Teo Mrnjavac
6cd1bf6b3d
Initial work on having the Replace feature obey the encryption setting.
2016-06-02 18:29:17 +02:00
Teo Mrnjavac
09f650ecf5
Use KeyboardLayoutModel+QListView instead of QListWidget, and defer setxkbmap until keyboardSearch is over.
2016-05-31 19:06:53 +02:00
Teo Mrnjavac
4a2cd903f7
New KeyboardLayoutModel.
2016-05-31 19:06:07 +02:00
Teo Mrnjavac
f00d1dd654
Apparently it needs a full LANG line.
2016-05-30 17:10:18 +02:00
Teo Mrnjavac
9272d3d5b0
Write locale to /etc/default/locale.
2016-05-30 16:15:59 +02:00
Teo Mrnjavac
92d3f5fe85
Only strip from the left.
2016-05-27 18:18:10 +02:00
Teo Mrnjavac
9450290212
Add support for locales in /usr/share/i18n/SUPPORTED
2016-05-27 17:14:17 +02:00
Teo Mrnjavac
893417d26e
Strip spaces when uncommenting locales.
2016-05-27 16:58:39 +02:00
Teo Mrnjavac
c9fac9bc5c
Manage PCM loading with QtConcurrent.
2016-05-26 15:35:24 +02:00
Teo Mrnjavac
0666fb4977
Defer PartitionCoreModule initialization so it doesn't block startup.
2016-05-26 15:08:37 +02:00
Teo Mrnjavac
92ca79c2f8
Improve debug output for startup profiling.
2016-05-26 12:02:16 +02:00
Teo Mrnjavac
a4ab8dad46
Hide encryption widget if not Erase.
2016-05-18 07:22:13 +02:00