Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

bootupd: Use --write-uuid #5363

Merged
merged 1 commit into from
Dec 15, 2023
Merged

Commits on Dec 7, 2023

  1. bootupd: Use --write-uuid

    This is an even newer behavior that takes over handling
    of the "UUID stamp files", which we want in general instead of
    using the static labels.
    
    Note `--write-uuid` implies `--with-static-configs`.
    
    This should fix this use case:
    
    ```
    clearpart --all --initlabel --disklabel=gpt
    reqpart --add-boot
    part / --grow --fstype xfs
    ```
    
    Whereas right now we require:
    
    ```
    clearpart --all --initlabel --disklabel=gpt
    reqpart
    part /boot --size=1000  --fstype=ext4 --label=boot
    part / --grow --fstype xfs
    ```
    
    Specifically the `--label=boot`.
    cgwalters committed Dec 7, 2023
    Configuration menu
    Copy the full SHA
    7b091de View commit details
    Browse the repository at this point in the history