880 Commits (3c6cfd5bd280ef8ae4788bf536ac96ab78ef7125)
 

Author SHA1 Message Date
Calamares CI 3c6cfd5bd2 Automatic merge of Transifex translations 10 years ago
Teo Mrnjavac 50a413d3c2 Only set the slideshow if the branding component has one. 10 years ago
Teo Mrnjavac 9622888d1d Load QML modules in a central place + dummy QML slideshow. 10 years ago
Teo Mrnjavac 14ddba70ef Initial commit for QML slideshow support. 10 years ago
Calamares CI 46a5796e29 Automatic merge of Transifex translations 10 years ago
Calamares CI 427bf4add3 Automatic merge of Transifex translations 10 years ago
Kevin Kofler 5c6a302112 packages: Ignore error code for "dnf remove".
Unfortunately, dnf treats it as an error if we try to remove a package
that already did not exist. This means that, e.g., if we try to remove
calamares itself, but calamares was not installed on the base image,
only in the overlay, we will fail with an error. So, as long as we do
not have a better solution, we ignore the exit code of "dnf remove"
entirely.

(yum does not show this behavior, it returns success when the package to
remove is already not installed.)
10 years ago
Kevin Kofler 412b959870 packages: Offline package removal for yum and dnf.
When removing packages with yum or dnf, pass the --disablerepo=*
(disable all online repositories) and -C (run from cache) arguments.
Package removals do not normally require network access, and this
measure saves time and bandwidth and prevents possible unnecessary
errors (e.g., if we do not have active network access, or if there is
some problem with the mirrors).
10 years ago
Ramon Buldó 854c19f305 Fix defaulting to first langauge in the list when language and country is not available.
- When it doesnt find a match for a language and a country, find the first value that only matches language.
- If this also fails, default to english.
10 years ago
Calamares CI 58e7e7c006 Automatic merge of Transifex translations 10 years ago
Calamares CI d11088f386 Automatic merge of Transifex translations 10 years ago
demmm 2efd4aff5c Use swap mountpoint
Having swap set at "none" makes hibernating not possible.
AFAIK, no filesystem/partition sets mountpoint as "none" nor has any other besides swap an empty mountpoint at the stage where the fstab module is called.
Tests so far show this change creates a working fstab when using a swap partition.
10 years ago
Calamares CI fe44633e0c Automatic merge of Transifex translations 10 years ago
Calamares CI fdc1b091a6 Automatic merge of Transifex translations 10 years ago
Calamares CI 80d3cb747b Automatic merge of Transifex translations 10 years ago
Teo Mrnjavac 220ea34aeb Fix sgdisk call 10 years ago
Teo Mrnjavac 1f9e7b5ae9 Update main.py 10 years ago
Teo Mrnjavac 7638f80373 Use UUID in resume 10 years ago
Calamares CI 5a86674ee7 Automatic merge of Transifex translations 10 years ago
Calamares CI 06d23871a9 Automatic merge of Transifex translations 10 years ago
Calamares CI 44b3d5ab27 Automatic merge of Transifex translations 10 years ago
Teo Mrnjavac 5742bbd074 Fix issue with partition selection preview not being updated. 10 years ago
Teo Mrnjavac 7cd382b39c Use osProber output in ReplacePage.
CAL-155 #close
10 years ago
Teo Mrnjavac f8f005f53c Store osprober output in GlobalStorage. 10 years ago
Teo Mrnjavac aa70a4b2dd Improve messages in Replace page.
Fixes CAL-155
10 years ago
Teo Mrnjavac c21f426dee Don't rely on the activated signal in ReplacePage. 10 years ago
Teo Mrnjavac a7b4c01ec0 GB -> GiB 10 years ago
Teo Mrnjavac 0da99d0866 Hook up ReplacePage in ChoicePage and PartitionViewStep. 10 years ago
Teo Mrnjavac 2f2ef73f20 Compile ReplacePage 10 years ago
Teo Mrnjavac 8f8e1ad6d4 New ReplacePage 10 years ago
Teo Mrnjavac d3ea92ef3d Also in CalamaresUtilsGui 10 years ago
Teo Mrnjavac 2a5e8c8ee3 Add replace icon. 10 years ago
Teo Mrnjavac 659acde94b Update README.md 10 years ago
Calamares CI 8ae28d513c Automatic merge of Transifex translations 10 years ago
Calamares CI 8ea85638ab Automatic merge of Transifex translations 10 years ago
Kevin Kofler f18ea40bf1 Merge pull request #181 from codeworkx/master
grub: add --target=i386-pc for BIOS systems
10 years ago
Daniel Hillenbrand 113812ad3d grub: add --target=i386-pc for bios systems
From Arch wiki:
--target=i386-pc instructs grub-install to install for BIOS systems only. It is recommended
to always use this option to remove ambiguity in grub-install.
10 years ago
Calamares CI 2ccdbe94d6 Automatic merge of Transifex translations 10 years ago
Calamares CI 08937fd13e Automatic merge of Transifex translations 10 years ago
Teo Mrnjavac eb748cca8e Merge pull request #180 from calamares/displaymanager-cleanups
displaymanager: Various fixes and cleanups.
10 years ago
Calamares CI 42fd75880e Automatic merge of Transifex translations 10 years ago
Kevin Kofler 75adfa03fc locale: timezonewidget: Use the system default font.
Don't hardcode the Cantarell font.
10 years ago
Kevin Kofler 2955c0a5a8 displaymanager: Also look for display managers in /usr/sbin. 10 years ago
Kevin Kofler 9b75999706 keyboard: Preselect the current keyboard layout variant. 10 years ago
Kevin Kofler 3d9116b80e grub: Add an optional efiBootloaderId setting.
If the efiBootloaderId is set, it is used as the --bootloader-id when
installing grub-efi. The rationale is pretty much the same as for the
Gummiboot case.

If the setting is not used, the --bootloader-id is determined from the
branding's bootloaderEntryName (as before).
10 years ago
Kevin Kofler 5209af0182 unpackfs: Fix error in list_excludes.
I accidentally removed the initialization of lst.
10 years ago
Kevin Kofler e6d65d047b Fix unpackfs wrongly excluding separately-mounted partitions.
mount: Remember the extraMounts (and extraMountsEfi, if applicable) in
the global storage (as "extraMounts").

unpackfs: Read the extra mounts from the global storage to generate the
exclude list instead of trying to detect it from the "mount" command's
output, because the latter also includes normally-mounted destination
partitions.

This makes having separate partitions for non-/ mountpoints work again.
10 years ago
Kevin Kofler 20e6cd4ab0 grub/test.yaml: Simulate bootloaderEntryName instead of shortProductName.
That is what grub/main.py now expects in the global storage.
10 years ago
Kevin Kofler 727db05fdf grub: Use bootloaderEntryName instead of shortProductName.
Use bootloaderEntryName instead of shortProductName as the
--bootloader-id.
10 years ago
Calamares CI f892a11a57 Automatic merge of Transifex translations 10 years ago