about summary refs log tree commit diff
path: root/nixos/modules/system/boot
Commit message (Collapse)AuthorAge
* Merge pull request #47563 from jameysharp/unscriptedJörg Thalheim2018-10-02
|\ | | | | Replace several activation script snippets with declarative configuration
| * nixos/systemd: don't create /var/lib/udevJamey Sharp2018-09-30
| | | | | | | | | | As far as I can tell, systemd has never used this directory, so I think this is a holdover from before udev merged into systemd.
| * nixos/systemd: let journald create /var/log/journalJamey Sharp2018-09-30
| | | | | | | | | | | | | | | | | | | | | | The default value for journald's Storage option is "auto", which determines whether to log to /var/log/journal based on whether that directory already exists. So NixOS has been unconditionally creating that directory in activation scripts. However, we can get the same behavior by configuring journald.conf to set Storage to "persistent" instead. In that case, journald will create the directory itself if necessary.
| * nixos/stage-2: create empty machine-id at bootJamey Sharp2018-09-30
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Previously, the activation script was responsible for ensuring that /etc/machine-id exists. However, the only time it could not already exist is during stage-2-init, not while switching configurations, because one of the first things systemd does when starting up as PID 1 is to create this file. So I've moved the initialization to stage-2-init. Furthermore, since systemd will do the equivalent of systemd-machine-id-setup if /etc/machine-id doesn't have valid contents, we don't need to do that ourselves. We _do_, however, want to ensure that the file at least exists, because systemd also uses the non-existence of this file to guess that this is a first-boot situation. In that case, systemd tries to create some symlinks in /etc/systemd/system according to its presets, which it can't do because we've already populated /etc according to the current NixOS configuration. This is not necessary for any other activation script snippets, so it's okay to do it after stage-2-init runs the activation script. None of them declare a dependency on the "systemd" snippet. Also, most of them only create files or directories in ways that obviously don't need the machine-id set.
| * nixos/systemd: remove activation dependencyJamey Sharp2018-09-29
| | | | | | | | | | | | As far as I can tell, the systemd snippet hasn't depended on groups being initialized since 5d02c02a9bfd6912e4e0f700b1b35e76d1d6bd3f in 2015, when a `setfacl` call was removed.
* | nixos/kexec: Fix typo in meta.platformsaszlig2018-09-28
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Evaluation error introduced in 599c4df46a90c7415a6cc0689f0b23d22e7fdb67. There is only a "platformS" attribute in kexectools.meta, so let's use this and from the code in the kexec module it operates on a list, matching the corresponding platforms, so this seems to be the attribute the original author intended. Tested by building nixos/tests/kexec.nix on x86_64-linux and while it evaluates now, the test still fails by timing out shortly after the kexec: machine: waiting for the VM to finish booting machine# Cannot find the ESP partition mount point. This however seems to be an unrelated issue and was also the case before the commit mentioned above. Signed-off-by: aszlig <aszlig@nix.build> Cc: @edolstra, @dezgeg
* | nixos/kexec: Replace meta.available checksTuomas Tynkkynen2018-09-28
| | | | | | | | | | This sort of code breaks config.{allowBroken, allowUnsupportedSystem} = true by making them do unpredictable things.
* | systemd: don't restart user-runtime-dir@ on upgradesJörg Thalheim2018-09-28
|/ | | | | Likewise logind we should not try to restart this service after upgrade, the user's current session depends on it.
* nixos: initrd/luks: make uuid specified devices discoverableEdward Tjörnhammar2018-09-24
|
* nixos/networkd: do not require gateway for routesAlexander Shpilkin2018-09-07
| | | | | A route via a tunnel interface does not require a gateway to be specified, so do not check for the Gateway= field on routes at all.
* nixos/networkd: fix handling of RequiredForOnlineAlexander Shpilkin2018-09-07
|
* nixos/networkd: support MULTICAST flag on linksAlexander Shpilkin2018-09-07
| | | | | Support Multicast= option in [Link] section of network units, introduced in systemd/systemd#9118.
* install-grub.pl: avoid double '/' in menu.lst and grub.conf (#45907)volth2018-09-02
| | | Although double '/' in paths is not a problem for GRUB supplied with nixpkgs, sometimes NixOS's grub.conf read by external GRUB and there are versions of GRUB which fail
* stage-1-init.sh: do not check mounted filesystems (#45891)volth2018-09-01
| | | fsck of a mounted filesystems fails with error code 8 "Operational error" and halts the boot processing
* Merge #45731: artwork update (replacing old logo)Vladimír Čunát2018-09-01
|\
| * nixos/grub: Uses the new artwork as the default option.Samuel Dionne-Riel2018-08-29
| | | | | | | | | | This also includes a set of defaults *for this option*, where when not used, other saner defaults are used.
| * nixos/grub: Adds background color and mode optionsSamuel Dionne-Riel2018-08-29
| | | | | | | | | | | | | | | | | | | | | | The background color option is self-explanatory. The mode is either `normal` or `stretch`, they are as defined by GRUB, where normal will put the image in the top-left corner of the menu, and stretch is the default, where it stretches the image without consideration for the aspect ratio. * https://www.gnu.org/software/grub/manual/grub/grub.html#background_005fimage
* | reewide: Purge all uses `stdenv.system` and top-level `system`John Ericson2018-08-30
| | | | | | | | It is deprecated and will be removed after 18.09.
* | nixos/networkd: fix range assertions on 32 bit NixBen Wolsieffer2018-08-28
| |
* | systemd: ensure fsck Requires/After links are created in mount unitsMatt McHenry2018-08-28
|/ | | | | | | systemd-fsck-generator only produces these lines if it can find the necessary fsck executable in its PATH. fixes #29139.
* nixos/networkd: replace range with assertRangeBen Wolsieffer2018-08-22
|
* treewide: Purge `stdenv.platform` and top-level `platform`John Ericson2018-08-20
| | | | Progress towards #27069
* Merge branch 'master' into staging-nextVladimír Čunát2018-08-17
|\ | | | | | | Hydra: ?compare=1473892
| * Merge pull request #44233 from jfrankenau/networkd-fix-optionsJörg Thalheim2018-08-16
| |\ | | | | | | nixos/networkd: add missing options
| | * nixos/networkd: add missing optionsJohannes Frankenau2018-08-16
| | |
* | | Merge branch 'master' into staging-nextVladimír Čunát2018-08-13
|\| | | | | | | | | | | | | | | | | | | | Conflicts: gobby and libinfinity - I took the hand-edited versions instead of those resuting from the mass-replacement. Hydra: ?compare=1473190
| * | nixos/systemd-boot: Add missing newlineThibault Polge2018-08-12
| | | | | | | | | | | | | | | | | | | | | | | | This fixes an issue where setting both `boot.loader.systemd-boot.editor` to `false` and `boot.loader.systemd-boot.consoleMode` to any value would concatenate the two configuration lines in the output, resulting in an invalid `loader.conf`.
* | | Merge master into stagingFrederik Rietdijk2018-08-09
|\| |
| * | Merge pull request #29441 from oxij/nixos/luksSamuel Dionne-Riel2018-08-08
| |\ \ | | | | | | | | nixos: initrd/luks: allow to reuse passphrases, cleanup
| | * | nixos: initrd/luks: disable input echo for the whole stageJan Malakhovski2018-08-08
| | | |
| | * | nixos: initrd/luks: simplify Yubikey handling codeJan Malakhovski2018-08-08
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | From reading the source I'm pretty sure it doesn't support multiple Yubikeys, hence those options are useless. Also, I'm pretty sure nobody actually uses this feature, because enabling it causes extra utils' checks to fail (even before applying any patches of this branch). As I don't have the hardware to test this, I'm too lazy to fix the utils, but I did test that with extra utils checks commented out and Yubikey enabled the resulting script still passes the syntax check.
| | * | nixos: initrd/luks: change passphrases handlingJan Malakhovski2018-08-08
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Also reuse common cryptsetup invocation subexpressions. - Passphrase reading is done via the shell now, not by cryptsetup. This way the same passphrase can be reused between cryptsetup invocations, which this module now tries to do by default (can be disabled). - Number of retries is now infinity, it makes no sense to make users reboot when they fail to type in their passphrase.
| | * | nixos: initrd/luks: cleanup and generalize common shell expressionsJan Malakhovski2018-08-08
| | | | | | | | | | | | | | | | Also fix Yubikey timeout handling mess.
| | * | nixos: boot/stage-1: check syntax of the generated scriptJan Malakhovski2018-08-08
| | | |
| * | | systemd: improve unit script drv namingLinus Heckemann2018-08-08
| |/ / | | | | | | | | | | | | Also store scripts directly in the nix store rather than having the superfluous /bin/ tree.
| * | luksroot: Add missing quote (#44639)Edmund Wu2018-08-07
| | |
| * | nixos/luksroot: Support keyfile offsetsJanne Heß2018-08-07
| | |
| * | Merge pull request #42877 from Infinisil/systemd-boot/consoleModeSilvan Mosberger2018-08-04
| |\ \ | | | | | | | | nixos/systemd-boot: Add consoleMode option
| | * | nixos/systemd-boot: Add consoleMode optionSilvan Mosberger2018-07-02
| | | |
* | | | stage-1: Remove last reference of now-removed stdenv.isCrossJohn Ericson2018-08-06
| | | |
* | | | systemd: 238 -> 239Jörg Thalheim2018-08-06
|/ / /
* | | Merge pull request #44202 from jerith666/journald-rateJörg Thalheim2018-07-30
|\ \ \ | |_|/ |/| | journald: set rateLimitInterval and rateLimitBurst to upstream defaults
| * | journald: set rateLimitInterval and rateLimitBurst to upstream defaultsMatt McHenry2018-07-29
| | |
* | | Merge pull request #41970 from ↵Matthew Bauer2018-07-23
|\ \ \ | | | | | | | | | | | | | | | | aneeshusa/enable-building-systemd-without-libmicrohttpd nixos/systemd: Allow building systemd without libmicrohttpd
| * | | nixos/systemd: Allow building systemd without libmicrohttpdAneesh Agrawal2018-06-13
| |/ /
* | | [bot] nixos/*: remove unused arguments in lambdasvolth2018-07-20
| | |
* | | [bot]: remove unreferenced codevolth2018-07-20
| | |
* | | nixos: systemd.globalEnvironment: fix typeSilvan Mosberger2018-07-18
| | | | | | | | | | | | | | | | | | | | | Follow up fix of fb2a8d66699c96d6a687eb71ebfcca08e3405037 https://github.com/NixOS/nixpkgs/pull/38356 https://github.com/NixOS/nixpkgs/pull/40416
* | | Merge pull request #43169 from samueldr/fix/stripDirsMatthew Bauer2018-07-14
|\ \ \ | | | | | | | | Fixes `stripDirs` use after signature change
| * | | stage-1: Fixes use of stripDirs.Samuel Dionne-Riel2018-07-07
| | |/ | |/|