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

WIP: Add a brief description of the source-git repository. #17

Draft
wants to merge 16 commits into
base: main
Choose a base branch
from

Commits on Feb 20, 2024

  1. Initialize as a source-git repository

    From-dist-git-commit: a1ebaf27b616010bc672be9409ff42b8234b008d
    pvalena committed Feb 20, 2024
    Configuration menu
    Copy the full SHA
    3b79a26 View commit details
    Browse the repository at this point in the history

Commits on Mar 20, 2024

  1. ci: add packit config.

    pvalena committed Mar 20, 2024
    Configuration menu
    Copy the full SHA
    9e88440 View commit details
    Browse the repository at this point in the history
  2. build: update to dracut 060

    Based on a commit 856e7ac.
    
    Currently upstream does not create releases.
    
    Reference PR: dracutdevs/dracut#2509
    Unpacked archive: https://github.com/pvalena/dracut-fedora/tree/v60-srpm-unpacked
    pvalena committed Mar 20, 2024
    Configuration menu
    Copy the full SHA
    2a2f6e5 View commit details
    Browse the repository at this point in the history
  3. feat(kernel-install): do nothing when $KERNEL_INSTALL_INITRD_GENERATO…

    …R says so
    
    dracut may be installed without being actually used. This is very common in
    binary distros where a package may be pulled in through dependencies, even
    though the user does not need it in a particular setup. KERNEL_INSTALL_INITRD_GENERATOR
    is being added in systemd's kernel-install to select which of the possibly many
    initrd generation mechanisms will be used.
    
    For backwards compat, if it not set, continue as before. But if set to
    something else, skip our kernel-install plugins.
    
    (Cherry-picked commit f47bcdd7342ca0d46b889e712a1c7446e18434bc from PR#1825)
    keszybz authored and pvalena committed Mar 20, 2024
    Configuration menu
    Copy the full SHA
    f86d5ff View commit details
    Browse the repository at this point in the history
  4. fix(systemd-pcrphase): rename systemd-pcrphase binary to systemd-pcre…

    …xtend
    
    The `systemd-pcrphase` binary has been renamed to `systemd-pcrextend` since
    systemd/systemd@32295fa0
    
    (Cherry-picked 8d9b558939ebdbbbeefbb1cbcd6d6825efc901fb from PR#2526)
    aafeijoo-suse authored and pvalena committed Mar 20, 2024
    Configuration menu
    Copy the full SHA
    12f3824 View commit details
    Browse the repository at this point in the history
  5. fix(resume): add new systemd-hibernate-resume.service

    Since systemd/systemd@a628d933, the generator only
    does the initial validation of the system info and then enables the new
    `systemd-hibernate-resume.service`.
    
    Fixes #2513
    
    (Cherry-picked a2fe89116db4b286fbf515f26bd1773b5e6ee8ad from PR#2557)
    aafeijoo-suse authored and pvalena committed Mar 20, 2024
    Configuration menu
    Copy the full SHA
    28ecd1f View commit details
    Browse the repository at this point in the history
  6. fix: wait 12 hours before halt on media check fail

    If a modesetting driver has been loaded by the time the media
    check happens, halting the system (as we currently do immediately
    if the check fails) blanks the screen, which is confusing for
    the user. This adds a warning message and a 12-hour wait before
    the system is eventually halted, so the user can see the media
    check failure and (presumably) reboot and fix the medium.
    
    It also tweaks the text of the failure message not to call it a
    "CD check", since it's not 1998 any more.
    
    https://bugzilla.redhat.com/show_bug.cgi?id=2246410
    
    Signed-off-by: Adam Williamson <[email protected]>
    
    (Cherry-picked a1b346121da44908b2685d8ef1b5e68b57829b2b from PR#2545)
    AdamWill authored and pvalena committed Mar 20, 2024
    Configuration menu
    Copy the full SHA
    5beddfc View commit details
    Browse the repository at this point in the history
  7. feat(network): include 98-default-mac-none.link if it exists

    In Fedora Linux there was a new 98-default-mac-none.link file added
    to set the MACAddressPolicy=none for bond/bridge/team devices. We'd
    like for this policy to apply in the initramfs as well. See
    
    - https://fedoraproject.org/wiki/Changes/MAC_Address_Policy_none
    - https://src.fedoraproject.org/rpms/systemd/pull-request/100#
    
    (Cherry-picked commit f6810b69ae722096184eaaf282e12a2caa6928b9 from PR#2224)
    dustymabe authored and pvalena committed Mar 20, 2024
    Configuration menu
    Copy the full SHA
    aa45d7d View commit details
    Browse the repository at this point in the history
  8. feat(kernel-modules): add Qualcomm IPC router to enable USB

    The x13s, and possibly other Qualcomm based devices need the QC
    IPC router driver in order to enable USB. Without it, its not
    possible to boot from USB-C attached disks.
    
    IPC in this case is Inter _Processor_ Communication and forms
    the message bus used to communicate between differing processing
    elements in a given system/SoC running and managing various
    hardware devices. This means that while it appears this driver
    should be in the dracut network modules that is incorrect
    because its not for enabling host networking in the initrd,
    but rather for communicating with other hardware blocks.
    
    Those other blocks aren't limited to modems, but any SMD (shared
    memory device), which on QC based machines includes the audio DSPs,
    RPM (resource power manager) and of course the application
    processor cores linux is running on.
    
    References:
    https://osmocom.org/projects/quectel-modems/wiki/Qualcomm_Linux_SMD
    https://android.googlesource.com/kernel/msm/+/android-7.1.0_r0.2/Documentation/arm/msm/msm_ipc_router.txt
    dracutdevs/dracut#2531
    
    Signed-off-by: Jeremy Linton <[email protected]>
    
    (Cherry-picked commit a8015f7dfc682100434e3ee051bf9472a8e6cad4 from PR#2531)
    jlintonarm authored and pvalena committed Mar 20, 2024
    Configuration menu
    Copy the full SHA
    f38de6b View commit details
    Browse the repository at this point in the history
  9. fix(kernel-install): do not generate an initrd when one was specified

    According to the synopsis, kernel-install can be called with an
    already-prepared initrd. In that case, no initrd should be generated by dracut.
    
    (Cherry-picked commit 0b72cf5c4eca0e0db76e3e210cfdc48e6b49bb74 from PR#1825)
    keszybz authored and pvalena committed Mar 20, 2024
    Configuration menu
    Copy the full SHA
    ee0c17d View commit details
    Browse the repository at this point in the history
  10. fix(pkcs11): delete trailing dot on libcryptsetup-token-systemd-pkcs1…

    …1.so
    
    libcryptsetup-token-systemd-pkcs11.so.* doesn't match the file libcryptsetup-token-systemd-pkcs11.so
    
    (Cherry-picked commit 5edaca7637d76a05429a31c28304ef3f476fe2f9 from PR#2540)
    innovara authored and pvalena committed Mar 20, 2024
    Configuration menu
    Copy the full SHA
    461db48 View commit details
    Browse the repository at this point in the history
  11. fix(pcsc): add --disable-polkit to pcscd.service

    Needs pcsc >= 2.0.0
    
    polkit is not included in dracut and without this option, pcscd simply fails
    
    (Cherry-picked commit 842be0c89fe0cc8cac9efa88e68b07ae1c2d2464 from PR#2547)
    innovara authored and pvalena committed Mar 20, 2024
    Configuration menu
    Copy the full SHA
    edd63a5 View commit details
    Browse the repository at this point in the history
  12. fix(pcsc): add opensc load module file

    On Fedora, and possibly others, this file loads opensc-pkcs11.so which you need to interact with the smart card to unlock a LUKS encrypted volume.
    
    (Cherry-picked commit 6da61a2c0e38da4e6e880e1bb7f47d55d2c54c65 from PR#2547)
    innovara authored and pvalena committed Mar 20, 2024
    Configuration menu
    Copy the full SHA
    8069d40 View commit details
    Browse the repository at this point in the history

Commits on Mar 22, 2024

  1. ci: update .github configs

    - sync with packit branch (PR#10)
    - also remove tests from .distro
    pvalena committed Mar 22, 2024
    4 Configuration menu
    Copy the full SHA
    9bd4c34 View commit details
    Browse the repository at this point in the history

Commits on Apr 2, 2024

  1. doc: Create README.md

    Add a brief description of the source-git repository.
    pvalena authored Apr 2, 2024
    Configuration menu
    Copy the full SHA
    975f884 View commit details
    Browse the repository at this point in the history
  2. Update README.md

    fixup
    pvalena authored Apr 2, 2024
    Configuration menu
    Copy the full SHA
    c1c03e5 View commit details
    Browse the repository at this point in the history