785 Commits (cf64b2ce273f4fc59053b5f3e9382ecec3035896)

Author SHA1 Message Date
Teo Mrnjavac d2288d0961 Write lc locale setting from GlobalStorage. 10 years ago
Teo Mrnjavac 6049267cf6 Load lcLocale value into GlobalStorage. Also allow localeGenPath setting
in locale.conf.
10 years ago
Teo Mrnjavac 2ca58c6f91 Massive cleanup in LocalePage. Add LCLocale setting, with autodetect. 10 years ago
Teo Mrnjavac 100f08518b Build LCLocale dialog. 10 years ago
Teo Mrnjavac ddfb8dfbc5 Add relevant strings. 10 years ago
Teo Mrnjavac 6cb072acc4 New LC LOCALE picker dialog. 10 years ago
Teo Mrnjavac f72f1ae5ca README.md for branding. 10 years ago
Teo Mrnjavac da0afd6e55 Better error reporting in CreatePartitionTableJob.cpp 10 years ago
Teo Mrnjavac 0d64c849fd Unbreak build. Sorry. 10 years ago
Teo Mrnjavac 0d89ba761a Uic in GreetingPage. 10 years ago
Teo Mrnjavac 01c3244396 Merge pull request #155 from calamares/fix-issue-128
grubcfg: Create /etc/default/grub if missing.
10 years ago
Kevin Kofler ab4d31f1a6 bootloader: Allow overriding the bootloaderEntryName setting.
Allow setting bootloaderEntryName in bootloader.conf. If not specified
there, the setting will be taken from branding.desc.
10 years ago
Kevin Kofler 462819060b branding: Add a dedicated bootloaderEntryName setting.
Use it in the bootloader and grubcfg modules instead of
shortProductName.
10 years ago
Kevin Kofler 4df754ef29 Move detect_firmware_type to the prepare module.
This avoids the duplication between the bootloader and grub modules.
10 years ago
Kevin Kofler 930a49677a grub/test.yaml: Define the shortProductName. 10 years ago
Kevin Kofler 132628c175 grub: Add EFI support.
Fixes #110.

This is based on Daniel Hillenbrand's submissions, but it makes the same
adjustments already done in the bootloader module that's already merged:

* Put detect_firmware_type into the grub module itself until a better
  place is found.

* Get the distribution name from the branding configuration and use the
  file_name_sanitizer on it.

* Get the grub-install executable name from the module configuration.

It also fixes a Python syntax error in the original submission.
10 years ago
Teo Mrnjavac fb37a0bf2f Fix focus in UsersPage. 10 years ago
Kevin Kofler 00604a8bca PythonHelper: Add support for bool.
Convert Python bool type from/to C++/QVariant bool (QVariant::Bool) in
PythonHelper::variantToPyObject and PythonHelper::variantFromPyObject.

This fixes the "override" option and any booleans in the "defaults" list
in grubcfg.conf.
10 years ago
Kevin Kofler 1499963920 grubcfg: Create /etc/default/grub if missing.
Also adds a grubcfg.conf with the following settings:

* overwrite: If set to true, always creates /etc/default/grub from
  scratch even if the file already existed. If set to false, edits the
  existing file instead. The default is "false".

* defaults: Default entries to write to /etc/default/grub if it does not
  exist yet or if we are overwriting it. Note that in addition,
  GRUB_CMDLINE_LINUX_DEFAULT and GRUB_DISTRIBUTOR will always be
  written, with automatically detected values. The default in the code
  is empty. The shipped grubcfg.conf currently reproduces the default
  settings from the Fedora installer Anaconda.

Fixes #128.
10 years ago
Kevin Kofler d5b95d79e5 grubcfg: Handle the case where expected lines are missing.
Check whether we actually had a GRUB_CMDLINE_LINUX_DEFAULT and a
GRUB_DISTRIBUTOR line, add any of them if it was missing.
10 years ago
Kevin Kofler f58cca1bb2 grubcfg: Don't error if /etc/default is missing.
It is created later in the function.
10 years ago
Kevin Kofler 5cae4e0632 partition: Don't assume that an unknown OS is Windows 7.
Don't talk about "Windows 7 programs, documents, photos, music, and
other files" when we actually have no idea what the other operating
system is or when there are multiple ones.
10 years ago
Kevin Kofler 75921ec125 bootloader/test.yaml: Define the shortProductName. 10 years ago
Kevin Kofler 48eca95a26 grubcfg: Use shortProductName.
This is particularly useful if the full product name contains
"GNU/Linux" or "Linux", because e.g. "Generic GNU/Linux GNU/Linux" does
not make sense.
10 years ago
Kevin Kofler e420341ba6 bootloader: Use shortProductName.
This is particularly useful if the full product name contains
"GNU/Linux" or "Linux", because e.g. "Generic GNU/Linux GNU/Linux" does
not make sense.
10 years ago
Kevin Kofler 538b457ea8 branding: Add a shortProductName entry.
This is what the bootloader modules really want, and it was also missing
for consistency with the other branding entries.
10 years ago
Kevin Kofler cde7356f0d grubcfg: Quote the GRUB_DISTRIBUTOR value. 10 years ago
Kevin Kofler 76450b44a3 bootloader: Ensure that the file names are valid.
Change any '/' slashes to '-' dashes. Also change spaces to underscores
while we are at it.
10 years ago
Kevin Kofler 8f5b0585cb grubcfg: Get the distribution name from the branding.
Remove the redundant "distributor" setting from grubcfg.conf (and the
entire grubcfg.conf file that has no settings left for now).
10 years ago
Kevin Kofler 3cf5baadc1 bootloader: Get the distribution name from the branding.
Remove the redundant "distribution" setting from bootloader.conf.
10 years ago
Kevin Kofler 98f99fa5bf Introduce and use a Calamares::Branding::setGlobals method.
The method creates a map called "branding" in the global storage, and
inserts an entry for each of the branding strings. This makes the
branding information accessible to the Python modules.

The method is called by CalamaresApplication::initJobQueue.

This is necessary because the Branding class is in libcalamaresui, so
Python modules cannot access it directly.
10 years ago
Kevin Kofler 7478c1266b Point the lib/calamares/libcalamares.so symlink to the versioned so.
Point the lib/calamares/libcalamares.so symlink for the Python modules
directly to the versioned lib/libcalamares.so.VERSION library rather
than to the lib/libcalamares.so symlink. This allows distributions to
install the lib/libcalamares.so symlink to a development package and
only ship lib/libcalamares.so.VERSION and lib/calamares/libcalamares.so
in the runtime package. It is also marginally faster (because only one
level of symlinks has to be resolved instead of two).

(I know this works because I have been manually fixing up this symlink
in the Fedora specfile so far.)
10 years ago
Teo Mrnjavac 78de47eb8c Retranslate Users module. 10 years ago
Teo Mrnjavac ecc2d27a18 Merge pull request #151 from calamares/localecfg
adding localecfg
10 years ago
Rohan Garg 60eb9cfae6 Use the correct file to write things into 10 years ago
Teo Mrnjavac 0f9496babe Finish up retranslation in PreparePage. 10 years ago
Teo Mrnjavac 280baf7326 Move PrepareCheckWidget text out of ctor. 10 years ago
Teo Mrnjavac 9b2dfdf1ec Use Retranslator in Prepare module (partial). 10 years ago
demmm ff1383d7f5 adding localecfg
locale hardcoded to en_US until local globalstorage is available
run pep8 on bootloader main.py, plain switch from subprocess to chroot_call fails for gummiboot call
10 years ago
Kevin Kofler 7e1ec78d35 grub, bootloader: Make the grub-* and /boot/grub names configurable.
Some distributions (e.g. Fedora) use grub2-* (resp. /boot/grub2/) names.

Fixes #123.
10 years ago
Rohan Garg d9187c25c7 check_chroot_call does not actually return a error code, use chroot_call
instead.

Thanks to Kevin Kofler for pointing this out.
10 years ago
Rohan Garg 1f6feb9417 Make sure we return a message when dracut or initramfs fail 10 years ago
Teo Mrnjavac 388363c1f2 Merge pull request #148 from calamares/gummibot
make gummiboot kernel/distro agnostic
10 years ago
Teo Mrnjavac faa77d7f5e Use Retranslator in Partitioning module. 10 years ago
Teo Mrnjavac 8575240b95 Capture by-val in Retranslator macro. 10 years ago
Teo Mrnjavac 688cc8f798 Use Retranslator in KeyboardPage. 10 years ago
Rohan Garg fb92697a93 Make sure our return value is correct 10 years ago
Teo Mrnjavac 99114e04d8 Merge pull request #147 from kkofler/fix-issue-31
keyboard: Write the keyboard model and layout settings to the root mount point.
10 years ago
Teo Mrnjavac 1d9535053a Use Retranslator in GreetingPage. 10 years ago
Teo Mrnjavac e5c3888be2 Allow multiple CALAMARES_RETRANSLATE blocks in the same widget. 10 years ago
Teo Mrnjavac 945b59748a Add RETRANSLATE macro to CalamaresUtils::Retranslator. 10 years ago
Kevin Kofler 3e9de2a05a keyboard: Allow absolute paths for the xOrgConfFileName setting.
This should ensure it works on all distributions.
10 years ago
Rohan Garg 2c8aa950a3 Update README.md 10 years ago
Kevin Kofler 86d51b4a9c keyboard: Pass settings directly, not through GlobalStorage.
Pass the settings from keyboard.conf directly to the
SetKeyboardLayoutJob rather than through GlobalStorage.
10 years ago
Kevin Kofler 2fec6e3202 keyboard: kbd-model-map: Add link to the original.
In particular, to the upstream git log for the file.
10 years ago
Kevin Kofler bfdcf0dbc0 keyboard: Coding style fixes. 10 years ago
Teo Mrnjavac 6f3898a73d Use Retranslator in LocalePage. 10 years ago
Teo Mrnjavac 08b90e975b Add retranslator class to CalamaresUtils. 10 years ago
demmm 53da965bb1 make gummiboot kernel/distro agnostic
add hibernate option to .conf
create a fallback entry in gummiboot menu
re-add firmware to globalstorage, simplifies this module, will be needed to add more OS to gummi
10 years ago
Kevin Kofler 4f9f7d7858 keyboard: Write the keyboard model and layout settings to the root mount point.
This is implemented as a new SetKeyboardLayout job that does the work.

Portions of the code are adapted from systemd-localed's source code,
which is under a compatible license (LGPLv2.1+, can be converted to our
GPLv3+ license). I ported it from C to to C++/Qt and made some minor
tweaks to the mapping logic (from X11 to vconsole layouts) though.

Fixes #31.

Tested on a Fedora Remix (Kannolo 21) with the default module settings
(finds the converted X11 keymaps for the virtual console) and with
convertedKeymapPath: "" (does the legacy keymap conversion as expected).
10 years ago
Rohan Garg 2b26be4162 Fix copyright holder 10 years ago
Rohan Garg ce96b13c0d Add a initramfs module that updates the initramfs post install 10 years ago
Teo Mrnjavac dec452f9b5 Make LocalePage retranslatable. 10 years ago
Teo Mrnjavac 2617ef369e Use retranslate pattern in GreetingPage. 10 years ago
Teo Mrnjavac 9e9a922498 Language selector + focus fix in GreetingPage. 10 years ago
Teo Mrnjavac 78075d7412 Use the new CalamaresUtils::installTranslator. 10 years ago
Teo Mrnjavac 058be8beb2 Ensure viewpages will have focus. To choose a focused widget inside it,
a viewpage should override void focusInEvent( QFocusEvent* ).
10 years ago
Teo Mrnjavac 8b343ace4a QTranslator switching in CalamaresUtils. 10 years ago
Teo Mrnjavac fc4ce3d23b Make progress view unfocusable. 10 years ago
Teo Mrnjavac 0849a5983c Actually build translations qrc. 10 years ago
Rohan Garg d3d9ea130c Fix build, last merge was a bit broken 10 years ago
Teo Mrnjavac 294d6a34ca Merge pull request #142 from shadeslayer/github_master
Make sure we also write to the /etc/hosts file
10 years ago
Rohan Garg 7a2fe5e647 Make sure we also write to the /etc/hosts file 10 years ago
Manjaro Linux 36e8ed5f46 adjust LXDE startup scripts
- add LXQT support
- add LXDE 0.5 changes in Archlinux
10 years ago
Teo Mrnjavac 7c89613332 Merge pull request #140 from kkofler/detect-sddm-session-type
displaymanager: Detect SDDM session type
10 years ago
Kevin Kofler 8512e43405 displaymanager: Set Session= for sddm autologin.
Detect the correct value using find_desktop_environment.
10 years ago
Kevin Kofler 467d78dde6 displaymanager: Use a regex to match User= in sddm.conf.
This ensures we really only match the User= line and not the
RememberLastUser= one.
10 years ago
Kevin Kofler e365864c05 displaymanager: Detect the KDE Plasma (5 and 4) and GNOME desktop environments.
Add them to the front of the list of desktop environments because users
are more likely to expect those as the default if they have them
installed.
10 years ago
Kevin Kofler 4990b8e3f8 displaymanager: Refactor the desktop environment detection to eliminate the copy&paste.
This also fixes some issues with the previous code:

* The code for LightDM only supported Xfce.

* The case where multiple desktop environments are installed was not
  handled in a good way.

* We now also check that the xsession definition actually exists. This
  allows handling the case where upstream changed the xsession
  definition's name without renaming the invoked binary.
10 years ago
Kevin Kofler 5a4ae7f62c displaymanager: Run "sddm --example-config > /etc/sddm.conf" in a shell.
Otherwise, the output redirection cannot work (and the argument was also
misinterpreted as part of the command name).
10 years ago
Teo Mrnjavac 1df44eddba Fix displaymanager sddm config call. 10 years ago
demmm 3828eb6d2a add the define 10 years ago
demmm a186c7e44b Missing define, check_chroot_call replaced
not really needed here, subprocess.call well tested
10 years ago
Teo Mrnjavac 486f160ca9 Merge pull request #134 from calamares/sddm
Generate sddm.conf if not present.
10 years ago
demmm 49bdb25f30 remove erronous line line, wrongly left in 10 years ago
Teo Mrnjavac fef448833e And some more debug output readability improvements. 10 years ago
Teo Mrnjavac f2f73b2e87 More meaningful debug output. 10 years ago
Teo Mrnjavac a51251fdc6 Expose list of build-time available translation languages. 10 years ago
Teo Mrnjavac aaa696f543 Even less debug noise. 10 years ago
Teo Mrnjavac 5b01925d99 Remove debug noise. 10 years ago
Teo Mrnjavac 8026a287d3 Shut up Qt lupdate warnings. 10 years ago
Teo Mrnjavac 10ca85338d Yet another Qt 5.4 fix. 10 years ago
Teo Mrnjavac 519ba038cf Fix build on Qt 5.4, again. 10 years ago
Teo Mrnjavac 633c8512c2 Try to make compile on Qt 5.4 10 years ago
demmm 8cefd1dcb8 remove indent 10 years ago
demmm e26335d2da proper check for existing sddm.conf
second set of if/else is obsolete with this, sddm.conf always exists at this point
10 years ago
Teo Mrnjavac a97297a3fe Attempt to fix #125 10 years ago
demmm 231c93a513 missed colon 10 years ago
demmm f26406daa4 actually create a sddm.conf 10 years ago
Rohan Garg 6a9c9cbaae Fix typo 10 years ago
Teo Mrnjavac 8b0ad2f675 Merge pull request #129 from shadeslayer/master
Add support to set the hostname
10 years ago
Rohan Garg fdd84d1f99 Don't crash when packageOperations is empty 10 years ago
demmm 972fe23131 create sddm.conf if not present 10 years ago
Rohan Garg a0a3b4dc49 Style fixes
Run calamaresstyle over new classes
10 years ago
Teo Mrnjavac ee2ed0921e Allow mounting a Fedora image.
Fixes #127
10 years ago
Rohan Garg 4a4dc74f5c Drop useless line 10 years ago
Rohan Garg b587a0ff00 Add support to set the hostname 10 years ago
demmm c84a98c23c set option to select higlighted text color
keep it independent from background color, should make it easier to add a color section option to branding
10 years ago
Rohan Garg 8a623cc118 Fix function call 10 years ago
Teo Mrnjavac 97867af2aa Autopep8 pass on bootloader module. 10 years ago
Teo Mrnjavac 8f250311e8 Allow links in Greeting page. 10 years ago
Teo Mrnjavac c2d6237d31 Merge pull request #119 from calamares/efi
adding new bootloader job
10 years ago
Rohan Garg 34befb9cb8 Refactor CPU detection code to be more reliable
Instead of parsing hwinfo output, which might or might be present
on systems, just parse the /proc/cpuinfo file, it's much more
reliable.
10 years ago
Rohan Garg b8b2c2b735 Properly break lines in Python 10 years ago
Teo Mrnjavac 2e2bd78deb Use Branding in partition viewmodule. 10 years ago
Teo Mrnjavac 4c51d320f6 Use branding in Prepare viewmodule. 10 years ago
Teo Mrnjavac 8e38a03cca Branding in greeting module. 10 years ago
Teo Mrnjavac 90e10f63fa Use Branding in main window. 10 years ago
Teo Mrnjavac 7594c85f2e Add ImageRegistry support to Branding. 10 years ago
Teo Mrnjavac 5e8ab97de4 Actually load branding data from default component. 10 years ago
Rohan Garg 6513c6400e Handle line breaks properly 10 years ago
Teo Mrnjavac fc60bcb313 Update partitionmanager submodule. 10 years ago
demmm 58bc7c86c1 remove globalstorage entry for efi 10 years ago
Rohan Garg f9bd0dfcfc Make sure the hwinfo executable exists before calling it 10 years ago
Rohan Garg eed387f7a4 Make sure to check things exist before actually modifying them
This fixes crashes when a system does not have squashfs-tools or
a grub dir does not exist.
10 years ago
Teo Mrnjavac 9c10b49802 Check if the filesystem to be resized actually supports grow/shrink. 10 years ago
demmm 7a310ef27b rename grub to bootloader calls 10 years ago
demmm c1a1399958 adding new bootloader job
options are to use grub for BIOS, gummiboot for efi
set extra mountpoint when efi is found
10 years ago
Teo Mrnjavac a58857baa6 Hook up the branding component code path in CalamaresApplication. 10 years ago
Teo Mrnjavac 2182918476 Groundwork for branding loader/manager. 10 years ago
Teo Mrnjavac 97cf2a796c Load branding component name from Settings. 10 years ago
Teo Mrnjavac f952b44922 Works better when you actually add it to CMakeLists.txt. 10 years ago
Teo Mrnjavac 8618d85b8f Dummy default branding component. 10 years ago
Teo Mrnjavac 006f0e3eef Make sure the window doesn't grow out of QScreen bounds. 10 years ago
Teo Mrnjavac 9e84581354 Only add wheel to sudoers if a wheel group is defined in conf. 10 years ago
Teo Mrnjavac ad68ce0187 Make default groups, users group and autologin group configurable. 10 years ago
Teo Mrnjavac 0d1fb79ec8 New config file for users module. 10 years ago
Teo Mrnjavac ce407a5ec4 Use good old C++ template instead of auto parameter which needs C++1y. 11 years ago
Teo Mrnjavac 961eadada4 New UI and logic for Alongside autopartitioning+install. 11 years ago
Teo Mrnjavac 08a2ab94e7 Use PMUtils::findPartitionByPath in PVS + fix back button in Alongside. 11 years ago
Teo Mrnjavac 2347ead200 Remove bad debug feature. 11 years ago
Teo Mrnjavac 6d60ca5e63 Fix item order in ChoicePage 11 years ago
Teo Mrnjavac 6bd5736d35 Add findPartitionByPath to PMUtils 11 years ago
Teo Mrnjavac 51d12b2b35 The vfat driver apparently supports FAT16 too, be consistent. 11 years ago
Teo Mrnjavac 482b2c0da2 Fix fstype names for mount -t syntax. 11 years ago
Teo Mrnjavac e7995ad540 Improve Osprober logic to immediately check if entries are resizable. 11 years ago
Teo Mrnjavac 9ebc881223 Prevent segfault on exit when module not found. 11 years ago
Teo Mrnjavac 045d9cdf8c Fix layout in partitioning choice page. 11 years ago
Teo Mrnjavac faa39e1746 Enable resize+alongside radiobutton if osprober reports multiple lines. 11 years ago
Teo Mrnjavac 0801756cd1 Stub for Alongside page, and logic to detect if alongside is possible. 11 years ago
Teo Mrnjavac dbd6573ed4 Write required disk space into GlobalStorage. 11 years ago
Teo Mrnjavac c070b1c836 Const correctness. 11 years ago
Teo Mrnjavac c6eb0721d9 Check for root mount point before going ahead. 11 years ago
Teo Mrnjavac aeb20761cc Add preview and partitioning operations to Erase+Autopartition code path 11 years ago
Teo Mrnjavac 8a50685c75 Add clearJobs to PCM 11 years ago
Teo Mrnjavac b7f2d5d9d3 Fix page flow issue in partition module. 11 years ago
Teo Mrnjavac a943d55063 Size policy on erase page. 11 years ago
Teo Mrnjavac fdaea27475 Attempt at a window size fix. 11 years ago
Teo Mrnjavac ef703b0859 Add page for erase+install operation. 11 years ago
Teo Mrnjavac dab5a05116 Add isDirty check to PartitionCoreModule 11 years ago
Teo Mrnjavac 4cadbf9b98 Expose icon and tooltip in DeviceModel. 11 years ago
Teo Mrnjavac a98a4bb614 Add ChoicePage to partition module + OS detection with os-prober. 11 years ago
Teo Mrnjavac 73246b47c6 Prefer nullptr over 0. 11 years ago
Teo Mrnjavac d39e77f7e8 New PrettyRadioButton, an alternative to QRadioButton with rich text. 11 years ago
Teo Mrnjavac 4d9f887c58 Make the prepare viewmodule use WaitingWidget 11 years ago
Teo Mrnjavac 8651b33843 Make the locale viewmodule use WaitingWidget. 11 years ago
Teo Mrnjavac 13ccede630 Add new icons to CalamaresUtilsGui 11 years ago
Teo Mrnjavac 41cb09ea01 Add ClickableLabel, a QLabel which emits the clicked signal. 11 years ago
Teo Mrnjavac 382317dcaf Added WaitingWidget to libcalamaresui, wrapper for QtWaitingSpinner 11 years ago
Teo Mrnjavac b14a715300 Add icons to qrc. 11 years ago
Teo Mrnjavac 33569085b7 Merge pull request #116 from plfiorini/packages
Add packages job
11 years ago
Pier Luigi Fiorini 5624132172 Add packages job
This job can be used to install and remove packages.
11 years ago
Teo Mrnjavac 14130ae9c0 Only allow a ViewStep to change next button status if it's active now. 11 years ago
demmm 631649ea69 1.0 Gb RAM should be a good default 11 years ago
Teo Mrnjavac a9aa3e9aa6 Show an error or warning if there are unsatisfied requirements. 11 years ago
Teo Mrnjavac 2182fd2f0c Add info and fail icons to libcalamaresui. 11 years ago
Teo Mrnjavac 5434a04ebc Block the install process if an entry is required but unsatisfied. 11 years ago
Teo Mrnjavac 87711c89fc Use common icons in users viewmodule. 11 years ago
Teo Mrnjavac d97bb47f09 Add proper QResrouce system to libcalamaresui, finish up prepare checks
This also adds ImageRegistry, a SVG cache, a bunch of utility functions
for shared pixmaps in CalamaresUtilsGui and renames several qrc files
in viewmodules.
11 years ago
Teo Mrnjavac 0404413b05 Store active user in GlobalStorage as username. 11 years ago
Teo Mrnjavac 3bef0b835a Check for mains power in prepare viewmodule. 11 years ago
Teo Mrnjavac 26419f2c8a Check for internet connection in prepare viewmodule. 11 years ago
Teo Mrnjavac b32bbf2b9a Add check for enough RAM to prepare viewmodule. 11 years ago
Teo Mrnjavac 03800e2966 Newline at end of file. 11 years ago
Teo Mrnjavac 9563b2efc7 WIP: new prepare viewmodule, with free space check using libparted. 11 years ago
Teo Mrnjavac 1bb6603998 Move spinner widget to libcalamaresui. 11 years ago
Teo Mrnjavac cbfad6f637 Merge pull request #100 from calamares/initcpiocfg
New initcpiocfg module, ported from Thus.
11 years ago
Teo Mrnjavac c70071406f Merge pull request #99 from calamares/grubcfg
New grubcfg module, ported from Thus.
11 years ago
Pier Luigi Fiorini 2133880fdb dracut: Don't read settings
This module doesn't have settings yet so this call fails.
11 years ago
Pier Luigi Fiorini b40f3bf4bb Initialize globalstorage before loading custom configuration 11 years ago
Teo Mrnjavac b51cfd6a45 Merge pull request #106 from plfiorini/settingsconf
Try to find settings.conf from SYSCONFDIR
11 years ago
Pier Luigi Fiorini f0921a41b2 Try to find settings.conf from SYSCONFDIR
Honor SYSCONFDIR as specified by CMake arguments instead of
using a hard-coded path.

Since GNUInstallDirs set CMAKE_INSTALL_FULL_SYSCONFDIR to
CMAKE_INSTALL_PREFIX/etc we need to change the default ourselves.
11 years ago
Daniel Hillenbrand 38f32bfd56 locale: make sure /etc/localtime doesn't exist
If /etc/localtime exists in source image, creating a new symlink will fail
and prevent the installer from doing it's job.
11 years ago
Daniel Hillenbrand c97251d741 unpackfs: check for supported filesystems
Use /proc/filesystems to check if the system
supportes the given source filesystem.
11 years ago
Daniel Hillenbrand 148a29d506 unpackfs: code dedup 11 years ago
Philip 9de863a1af New initcpiocfg module, ported from Thus. 11 years ago
Philip 82237d1bd1 grubcfg: group variables 11 years ago
Philip 0c4e8863cf grubcfg: set swap_uuid variable 11 years ago
Philip 5b336fc3c5 New grubcfg module, ported from Thus. 11 years ago
Teo Mrnjavac 35f0dfc76d List all files recursively. 11 years ago