Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 639a0eafcb3c
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: a13b8ce0b80d
Choose a head ref
  • 2 commits
  • 1 file changed
  • 2 contributors

Commits on Oct 14, 2019

  1. nixos/plymouth: do not order plymouth-quit after display-manager

    GDM now specifies ordering between `plymouth-quit` and `display-manager`:
    9be5321
    
    This causes an ordering cycle between GDM and plymouth-quit which can result in
    systemd breaking GDM:
    ```
    plymouth-quit.service: Job display-manager.service/start deleted to break
                           ordering cycle starting with plymouth-quit.service/start
    ```
    
    Not sure how often this triggers, as I've run my system with plymouth and
    9be5321 without any issues. But I did catch a VM doing this.
    
    NOTE: I also tried to remove the ordering in GDM to see if plymouth managed to
    live longer, but it didn't seem to help. So I opted to stick as close to
    upstream (upstream GDM specifies ordering, but plymouth does not).
    hedning committed Oct 14, 2019

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    5924bab View commit details

Commits on Oct 19, 2019

  1. Merge pull request #71115 from hedning/plymouth-gdm-fix

    nixos/plymouth: do not order `plymouth-quit` after `display-manager`
    worldofpeace authored Oct 19, 2019

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    a13b8ce View commit details
Showing with 1 addition and 4 deletions.
  1. +1 −4 nixos/modules/system/boot/plymouth.nix
5 changes: 1 addition & 4 deletions nixos/modules/system/boot/plymouth.nix
Original file line number Diff line number Diff line change
@@ -88,10 +88,7 @@ in
systemd.services.plymouth-kexec.wantedBy = [ "kexec.target" ];
systemd.services.plymouth-halt.wantedBy = [ "halt.target" ];
systemd.services.plymouth-quit-wait.wantedBy = [ "multi-user.target" ];
systemd.services.plymouth-quit = {
wantedBy = [ "multi-user.target" ];
after = [ "display-manager.service" ];
};
systemd.services.plymouth-quit.wantedBy = [ "multi-user.target" ];
systemd.services.plymouth-poweroff.wantedBy = [ "poweroff.target" ];
systemd.services.plymouth-reboot.wantedBy = [ "reboot.target" ];
systemd.services.plymouth-read-write.wantedBy = [ "sysinit.target" ];