├── .gitignore ├── .github ├── semantic.yml ├── CODEOWNERS ├── pull_request_template.md ├── ISSUE_TEMPLATE │ ├── config.yml │ ├── iso.yml │ └── feature_request.yml ├── workflows │ ├── build-gts.yml │ ├── release-please.yml │ ├── build-beta.yml │ ├── build-latest.yml │ ├── clean.yml │ └── reusable-build.yml └── renovate.json5 ├── sys_files └── usr │ ├── lib │ ├── dracut │ │ └── dracut.conf.d │ │ │ └── 10-compression.conf │ ├── tmpfiles.d │ │ └── coredump.conf │ └── systemd │ │ └── system │ │ └── flatpak-add-flathub-repos.service │ └── share │ └── dnf │ └── plugins │ └── copr.vendor.conf ├── .devcontainer ├── Containerfile ├── local-features │ ├── tools │ │ ├── devcontainer-feature.json │ │ └── install.sh │ └── podman │ │ ├── devcontainer-feature.json │ │ └── install.sh └── devcontainer.json ├── cosign.pub ├── .gitattributes ├── emeritus.md ├── README.md ├── image-versions.yaml ├── Containerfile ├── packages.json ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── Justfile └── CHANGELOG.md /.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | *.iso 3 | *.iso-CHECKSUM* 4 | -------------------------------------------------------------------------------- /.github/semantic.yml: -------------------------------------------------------------------------------- 1 | enabled: true 2 | titleOnly: true 3 | -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @ublue-os/approver 2 | 3 | image-versions.yaml 4 | -------------------------------------------------------------------------------- /sys_files/usr/lib/dracut/dracut.conf.d/10-compression.conf: -------------------------------------------------------------------------------- 1 | compress="zstd" 2 | -------------------------------------------------------------------------------- /.devcontainer/Containerfile: -------------------------------------------------------------------------------- 1 | FROM quay.io/fedora/fedora:latest 2 | 3 | ARG USERNAME="ublue" 4 | ENV USERNAME="${USERNAME}" 5 | ENV SET_X=1 6 | -------------------------------------------------------------------------------- /sys_files/usr/lib/tmpfiles.d/coredump.conf: -------------------------------------------------------------------------------- 1 | # Delete coredumps older than 5 days old; instead of 14 days, this should be enough time to debug them 2 | d /var/lib/systemd/coredump 0755 root root 5d 3 | -------------------------------------------------------------------------------- /cosign.pub: -------------------------------------------------------------------------------- 1 | -----BEGIN PUBLIC KEY----- 2 | MFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEHLRpBfPRYiMl9wb7s6fx47PzzNWu 3 | 3zyJgXhWEvxoOgwv9CpwjbvUwR9qHxNMWkJhuGE6cjDA2hpy1I6NbA+24Q== 4 | -----END PUBLIC KEY----- 5 | -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- 1 | ## Thank you for contributing to the Universal Blue project! 2 | 3 | Please [read the Contributor's Guide](https://universal-blue.org/contributing.html) before submitting a pull request. 4 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- 1 | blank_issues_enabled: true 2 | contact_links: 3 | - name: Questions and Feedback 4 | url: https://universal-blue.discourse.group 5 | about: Ask a question, share tips, and help others 6 | -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | *.yml linguist-detectable=true 2 | *.yml linguist-language=YAML 3 | 4 | *.yaml linguist-detectable=true 5 | *.yaml linguist-language=YAML 6 | 7 | *.just linguist-detectable=true 8 | *.just linguist-documentation=false 9 | *.just linguist-language=Just 10 | 11 | *.json linguist-detectable=true 12 | *.json linguist-documentation=false 13 | *.json linguist-language=JSON 14 | -------------------------------------------------------------------------------- /.devcontainer/local-features/tools/devcontainer-feature.json: -------------------------------------------------------------------------------- 1 | { 2 | "$schema": "https://raw.githubusercontent.com/devcontainers/spec/refs/heads/main/schemas/devContainerFeature.schema.json", 3 | "id": "tools", 4 | "name": "Configure Dev Container Tools", 5 | "version": "latest", 6 | "installsAfter": [ 7 | "ghcr.io/devcontainers/features/common-utils" 8 | ] 9 | } 10 | -------------------------------------------------------------------------------- /.github/workflows/build-gts.yml: -------------------------------------------------------------------------------- 1 | name: ublue gts 2 | 3 | on: 4 | pull_request: 5 | merge_group: 6 | workflow_dispatch: 7 | 8 | concurrency: 9 | group: ${{ github.workflow }}-${{ github.ref || github.run_id }} 10 | cancel-in-progress: true 11 | 12 | jobs: 13 | build: 14 | name: build 15 | uses: ./.github/workflows/reusable-build.yml 16 | secrets: inherit 17 | strategy: 18 | fail-fast: false 19 | matrix: 20 | image_name: 21 | - base 22 | - kinoite 23 | - silverblue 24 | image_variant: 25 | - main 26 | - nvidia 27 | with: 28 | image_name: ${{ matrix.image_name }} 29 | image_variant: ${{ matrix.image_variant }} 30 | image_version: gts 31 | -------------------------------------------------------------------------------- /.github/workflows/release-please.yml: -------------------------------------------------------------------------------- 1 | on: 2 | push: 3 | branches: 4 | - main 5 | name: release-please 6 | jobs: 7 | release-please: 8 | permissions: 9 | contents: write 10 | pull-requests: write 11 | runs-on: ubuntu-latest 12 | outputs: 13 | releases_created: ${{ steps.release-please.outputs.releases_created }} 14 | tag: ${{ steps.release-please.outputs.tag_name }} 15 | upload_url: ${{ steps.release-please.outputs.upload_url }} 16 | steps: 17 | - uses: google-github-actions/release-please-action@e4dc86ba9405554aeba3c6bb2d169500e7d3b4ee # v4 18 | id: release-please 19 | with: 20 | release-type: simple 21 | package-name: release-please-action 22 | 23 | -------------------------------------------------------------------------------- /.github/workflows/build-beta.yml: -------------------------------------------------------------------------------- 1 | name: ublue beta 2 | 3 | on: 4 | # pull_request: 5 | # merge_group: 6 | workflow_dispatch: 7 | 8 | concurrency: 9 | group: ${{ github.workflow }}-${{ github.ref || github.run_id }} 10 | cancel-in-progress: true 11 | 12 | jobs: 13 | build: 14 | name: build 15 | uses: ./.github/workflows/reusable-build.yml 16 | secrets: inherit 17 | strategy: 18 | fail-fast: false 19 | matrix: 20 | image_name: 21 | - base 22 | - kinoite 23 | - silverblue 24 | image_variant: 25 | - main 26 | - nvidia 27 | with: 28 | image_name: ${{ matrix.image_name }} 29 | image_variant: ${{ matrix.image_variant }} 30 | image_version: beta 31 | -------------------------------------------------------------------------------- /.github/workflows/build-latest.yml: -------------------------------------------------------------------------------- 1 | name: ublue latest 2 | 3 | on: 4 | pull_request: 5 | merge_group: 6 | workflow_dispatch: 7 | 8 | concurrency: 9 | group: ${{ github.workflow }}-${{ github.ref || github.run_id }} 10 | cancel-in-progress: true 11 | 12 | jobs: 13 | build: 14 | name: build 15 | uses: ./.github/workflows/reusable-build.yml 16 | secrets: inherit 17 | strategy: 18 | fail-fast: false 19 | matrix: 20 | image_name: 21 | - base 22 | - kinoite 23 | - silverblue 24 | image_variant: 25 | - main 26 | - nvidia 27 | with: 28 | image_name: ${{ matrix.image_name }} 29 | image_variant: ${{ matrix.image_variant }} 30 | image_version: latest 31 | -------------------------------------------------------------------------------- /emeritus.md: -------------------------------------------------------------------------------- 1 | # Note: This should just be part of CODEOWNERS but we're too lazy to implement that, someone send a PR. 2 | 3 | # Universal Blue Contributors Emeritus 4 | 5 | Universal Blue strives for sustainability. As such it is expected for people to dip in and out of membership. 6 | 7 | The following contributors have become legend, forever enshrined as masters of automation: 8 | 9 | - [@bigpod98](https://github.com/bigpod98) 10 | - [@bobslept](https://github.com/bobslept) 11 | - [@akdev1l](https://github.com/akdevl1) 12 | - @jstone 13 | - [@fiftydinar](https://github.com/fiftydinar) 14 | - [@xynydev](https://github.com/xynydev) 15 | - [@EyeCantCU](https://github.com/EyeCantCU) 16 | - [@castrojo](https://github.com/castrojo) 17 | - [@tulilirockz](https://github.com/tulilirockz) 18 | -------------------------------------------------------------------------------- /.github/workflows/clean.yml: -------------------------------------------------------------------------------- 1 | name: Cleanup Old Images 2 | on: 3 | schedule: 4 | - cron: "15 0 * * 0" # 0015 UTC on Sundays 5 | workflow_dispatch: 6 | 7 | concurrency: 8 | group: ${{ github.workflow }}-${{ github.ref || github.run_id }} 9 | 10 | jobs: 11 | delete-older-than-90: 12 | runs-on: ubuntu-latest 13 | permissions: 14 | packages: write 15 | steps: 16 | - name: Delete Images Older Than 90 Days 17 | uses: dataaxiom/ghcr-cleanup-action@cd0cdb900b5dbf3a6f2cc869f0dbb0b8211f50c4 # v1.0.16 18 | with: 19 | token: ${{ secrets.GITHUB_TOKEN }} 20 | packages: silverblue-main,kinoite-main,base-main 21 | older-than: 90 days 22 | delete-orphaned-images: true 23 | keep-n-tagged: 7 24 | keep-n-untagged: 7 25 | -------------------------------------------------------------------------------- /sys_files/usr/lib/systemd/system/flatpak-add-flathub-repos.service: -------------------------------------------------------------------------------- 1 | [Unit] 2 | Description=Add Flathub flatpak repositories. This replaces a service included by Fedora that normally installs their repo. 3 | ConditionPathExists=!/var/lib/flatpak/.ublue-initialized 4 | Before=flatpak-system-helper.service 5 | 6 | [Service] 7 | Type=oneshot 8 | RemainAfterExit=yes 9 | ExecStart=/usr/bin/flatpak remote-add --system --if-not-exists flathub /etc/flatpak/remotes.d/flathub.flatpakrepo 10 | ExecStart=/usr/bin/flatpak remote-add --system --if-not-exists --disable --title "Fedora Flatpaks" fedora oci+https://registry.fedoraproject.org 11 | ExecStart=/usr/bin/flatpak remote-add --system --if-not-exists --disable --title "Fedora Flatpaks (testing)" fedora-testing oci+https://registry.fedoraproject.org#testing 12 | ExecStartPost=/usr/bin/touch /var/lib/flatpak/.ublue-initialized 13 | 14 | [Install] 15 | WantedBy=multi-user.target 16 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/iso.yml: -------------------------------------------------------------------------------- 1 | name: ISO Issue Report 2 | description: File a report on an installation ISO 3 | title: "Report an issue with an ISO" 4 | labels: ["iso"] 5 | body: 6 | - type: markdown 7 | attributes: 8 | value: | 9 | Thanks for taking the time to fill out this bug report! 10 | - type: textarea 11 | id: what-happened 12 | attributes: 13 | label: What happened? 14 | description: Also tell us, what did you expect to happen? 15 | placeholder: Tell us what you see! 16 | value: "A bug happened!" 17 | validations: 18 | required: true 19 | - type: textarea 20 | id: logs 21 | attributes: 22 | label: Relevant log output 23 | description: This will be automatically formatted into code, so no need for backticks. 24 | value: Please attach or paste the logs from the Anaconda Installer https://docs.fedoraproject.org/en-US/quick-docs/anaconda/anaconda_logging/ 25 | render: shell 26 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # NOTICE 15 October 2025: 2 | The deprecated sway, budgie, and cosmic images have now been removed, see [#927](https://github.com/ublue-os/main/issues/927) 3 | 4 | # Main 5 | 6 | [![build-gts](https://github.com/ublue-os/main/actions/workflows/build-gts.yml/badge.svg)](https://github.com/ublue-os/main/actions/workflows/build-gts.yml) 7 | [![build-latest](https://github.com/ublue-os/main/actions/workflows/build-latest.yml/badge.svg)](https://github.com/ublue-os/main/actions/workflows/build-latest.yml) 8 | 9 | A common main image for all other uBlue images, with minimal (but important) adjustments to Fedora. <3 10 | 11 | Deprecation Notice: Universal Blue is trimming support for intermediate images (such as those built in main) which are not used in our project's final images (Aurora, Bazzite, Bluefin). 12 | 13 | As of September 2025, this repo will only build base, kinoite, and silverblue images. 14 | 15 | # Documentation 16 | 17 | - [Main website](https://universal-blue.org) 18 | - [Documentation](https://universal-blue.org/documentation.html) 19 | - [Scope document](https://universal-blue.org/mission.html) 20 | -------------------------------------------------------------------------------- /sys_files/usr/share/dnf/plugins/copr.vendor.conf: -------------------------------------------------------------------------------- 1 | # This override is to handle the default behavior of dnf5 using ID at /etc/os-release 2 | # to select which chroot gets used to fetch the copr repo. 3 | # 4 | # An example of the behavior displayed without this override in Bazzite: 5 | # sudo dnf5 copr enable ublue-os/bling 6 | # https://copr.fedorainfracloud.org/api_3/rpmrepo/ublue-os/bling/bazzite-41/ 100% | 946.0 B/s | 500.0 B | 00m01s 7 | # Chroot not found in the given Copr project (bazzite-41-x86_64). You can choose one of the available chroots explicitly: 8 | # fedora-38-x86_64 9 | # fedora-39-x86_64 10 | # fedora-40-x86_64 11 | # fedora-41-x86_64 12 | # fedora-rawhide-x86_64 13 | # 14 | # See: 15 | # https://github.com/rpm-software-management/dnf5/blob/01d4df824ff4a94ae1fc288f81923d02ba71173a/dnf5-plugins/copr_plugin/copr_config.cpp#L79-L81 16 | # https://github.com/rpm-software-management/dnf5/blob/01d4df824ff4a94ae1fc288f81923d02ba71173a/dnf5-plugins/copr_plugin/copr_repo.cpp#L146 17 | 18 | [main] 19 | distribution = fedora 20 | -------------------------------------------------------------------------------- /.devcontainer/local-features/podman/devcontainer-feature.json: -------------------------------------------------------------------------------- 1 | { 2 | "$schema": "https://raw.githubusercontent.com/devcontainers/spec/refs/heads/main/schemas/devContainerFeature.schema.json", 3 | "id": "podman", 4 | "name": "Configure Nested Podman", 5 | "version": "latest", 6 | "privileged": true, 7 | "installsAfter": ["ghcr.io/devcontainers/features/common-utils"], 8 | "mounts": [ 9 | { 10 | "source": "podman-srv-containers-${containerWorkspaceFolderBasename}", 11 | "target": "/srv/containers", 12 | "type": "volume" 13 | }, 14 | { 15 | "source": "podman-var-lib-containers-${containerWorkspaceFolderBasename}", 16 | "target": "/var/lib/containers", 17 | "type": "volume" 18 | } 19 | ], 20 | "entrypoint": "/usr/local/share/podman-in-podman-init.sh", 21 | "customizations": { 22 | "vscode": { 23 | "extensions": ["ms-azuretools.vscode-containers"], 24 | "settings": { 25 | "containers.containerClient": "com.microsoft.visualstudio.containers.podman", 26 | "containers.containerCommand": "podman" 27 | } 28 | } 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /.github/renovate.json5: -------------------------------------------------------------------------------- 1 | { 2 | "$schema": "https://docs.renovatebot.com/renovate-schema.json", 3 | "extends": [ 4 | "config:best-practices" 5 | ], 6 | 7 | "packageRules": [ 8 | { 9 | "automerge": true, 10 | "matchUpdateTypes": ["pin", "pinDigest"] 11 | }, 12 | { 13 | "enabled": false, 14 | "matchUpdateTypes": ["digest", "pinDigest", "pin"], 15 | "matchDepTypes": ["container"], 16 | "matchFileNames": [".github/workflows/**.yaml", ".github/workflows/**.yml", ".devcontainer/Containerfile"] 17 | }, 18 | { 19 | "matchPackageNames": [ 20 | "quay.io/fedora-ostree-desktops/*", 21 | "ghcr.io/ublue-os/akmods", 22 | "ghcr.io/ublue-os/akmods-nvidia-open" 23 | ], 24 | "groupName": "images", 25 | "matchUpdateTypes": [ 26 | "digest" 27 | ], 28 | "automerge": true 29 | }, 30 | { 31 | "matchPackageNames": [ 32 | "quay.io/fedora-ostree-desktops/*", 33 | "ghcr.io/ublue-os/akmods", 34 | "ghcr.io/ublue-os/akmods-nvidia-open" 35 | ], 36 | "matchUpdateTypes": [ 37 | "major", 38 | "minor", 39 | "patch" 40 | ], 41 | "enabled": false 42 | }, 43 | { 44 | "matchPackageNames": [ 45 | "quay.io/fedora/fedora" 46 | ], 47 | "matchFileNames": [ 48 | ".devcontainer/Containerfile" 49 | ], 50 | "enabled": false 51 | } 52 | ] 53 | } 54 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.yml: -------------------------------------------------------------------------------- 1 | name: Request a Package 2 | description: Request an RPM package to be included in an image 3 | labels: [package-request] 4 | 5 | body: 6 | - type: markdown 7 | attributes: 8 | value: | 9 | Thank you for taking the time to fill out this request! 10 | 11 | Check out the [Project Scope](https://ublue.it/scope/) for more information on how packages are selected. 12 | - type: textarea 13 | id: describe-bug 14 | attributes: 15 | label: Describe the package 16 | description: Include why you feel this should be on the image 17 | placeholder: Tell us what you need 18 | value: "I'd like to request the package `vim` because ..." 19 | validations: 20 | required: true 21 | - type: textarea 22 | id: add-info 23 | attributes: 24 | label: Information on the package 25 | description: Additional information that we need 26 | placeholder: So that we have a record of why it's being added 27 | value: "Paste the results of `dnf info packagename` here" 28 | validations: 29 | required: true 30 | - type: dropdown 31 | id: image 32 | attributes: 33 | label: Image 34 | description: Which specific image do you want? 35 | options: 36 | - All Images 37 | - Bazzite 38 | - Kinoite 39 | - Mate 40 | - Silverblue 41 | - Ubuntu 42 | - Vauxite 43 | validations: 44 | required: true 45 | 46 | -------------------------------------------------------------------------------- /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- 1 | // For format details, see https://aka.ms/devcontainer.json. 2 | { 3 | "$schema": "https://raw.githubusercontent.com/devcontainers/spec/refs/heads/main/schemas/devContainer.schema.json", 4 | "name": "ublue-main-devcontainer", 5 | "build": { 6 | "dockerfile": "Containerfile", 7 | "args": { 8 | "USERNAME": "ublue" 9 | } 10 | }, 11 | "features": { 12 | "ghcr.io/devcontainers/features/common-utils:2": { 13 | "username": "ublue", 14 | // Change these to your UID/GID if your user is not 1000 15 | "userUid": "1000", 16 | "userGid": "1000", 17 | "installZsh": false, 18 | "installOhMyZsh": false, 19 | "installOhMyZshConfig": false 20 | }, 21 | // Podman 22 | "./local-features/podman": "", 23 | // Tools 24 | "./local-features/tools": "" 25 | }, 26 | "customizations": { 27 | "vscode": { 28 | "extensions": [ 29 | "github.vscode-github-actions", 30 | "github.vscode-pull-request-github", 31 | "hangxingliu.vscode-systemd-support", 32 | "mads-hartmann.bash-ide-vscode", 33 | "nefrob.vscode-just-syntax", 34 | "timonwong.shellcheck" 35 | ] 36 | } 37 | }, 38 | "runArgs": ["--name", "devcontainer-${containerWorkspaceFolderBasename}"], 39 | "remoteUser": "ublue", 40 | "containerUser": "ublue" 41 | } 42 | -------------------------------------------------------------------------------- /image-versions.yaml: -------------------------------------------------------------------------------- 1 | images: 2 | # Fedora 42 3 | - name: akmods-42 4 | image: ghcr.io/ublue-os/akmods 5 | tag: main-42 6 | digest: sha256:b1a55e768ded08d8cfd9255d04c8941ce81e4775fe4440df4b78c2de51c11ad2 7 | - name: akmods-nvidia-open-42 8 | image: ghcr.io/ublue-os/akmods-nvidia-open 9 | tag: main-42 10 | digest: sha256:aa30131ede0eafc975cd08597e1836c5b98758be90a86914c379c527f275491e 11 | - name: base-atomic-42 12 | image: quay.io/fedora-ostree-desktops/base-atomic 13 | tag: 42 14 | digest: sha256:1542dd9743877bb9b6f993fedd7f6935f2fec9119afb0fc596d8ed07664c081c 15 | - name: silverblue-42 16 | image: quay.io/fedora-ostree-desktops/silverblue 17 | tag: 42 18 | digest: sha256:092b7604055cb16c3bea13b43bcd3bf27d89fd1d86ee397ee6f3b7ac6d167f13 19 | - name: kinoite-42 20 | image: quay.io/fedora-ostree-desktops/kinoite 21 | tag: 42 22 | digest: sha256:36320ce7b1611df3d7a99821808eddb50cb98325ba9fcd46e6aa56da4859e8ec 23 | 24 | # Fedora 43 25 | - name: akmods-43 26 | image: ghcr.io/ublue-os/akmods 27 | tag: main-43 28 | digest: sha256:2417c750b5a75ffb22101aea273c1bdb2bdd3fd3f81392d5850b6e3293f694a8 29 | - name: akmods-nvidia-open-43 30 | image: ghcr.io/ublue-os/akmods-nvidia-open 31 | tag: main-43 32 | digest: sha256:946edf13ea9190066a2ded77035070589df989a720ebe283f9bb14c9f8e06191 33 | - name: base-atomic-43 34 | image: quay.io/fedora-ostree-desktops/base-atomic 35 | tag: 43 36 | digest: sha256:f9438407246a4e7bb7816dcf505138c6dff4bed02e926b01ad24fbe74bcd9226 37 | - name: silverblue-43 38 | image: quay.io/fedora-ostree-desktops/silverblue 39 | tag: 43 40 | digest: sha256:f9c31531178aef88b1e1ba262761e2ba7e809db933c1789b3043dc10cd7d3bd8 41 | - name: kinoite-43 42 | image: quay.io/fedora-ostree-desktops/kinoite 43 | tag: 43 44 | digest: sha256:b0f10fb834e3e27ffac8bad694684727c57858355f39b0113ed6dd79e4017959 45 | -------------------------------------------------------------------------------- /Containerfile: -------------------------------------------------------------------------------- 1 | ARG IMAGE_NAME="${IMAGE_NAME:-silverblue}" 2 | ARG SOURCE_IMAGE="${SOURCE_IMAGE:-silverblue}" 3 | ARG SOURCE_ORG="${SOURCE_ORG:-fedora-ostree-desktops}" 4 | ARG BASE_IMAGE="quay.io/${SOURCE_ORG}/${SOURCE_IMAGE}" 5 | ARG FEDORA_MAJOR_VERSION="${FEDORA_MAJOR_VERSION:-42}" 6 | ARG KERNEL_VERSION="${KERNEL_VERSION:-6.14.0-0.rc3.29.fc42.x86_64}" 7 | ARG IMAGE_REGISTRY=ghcr.io/ublue-os 8 | ARG AKMODS_DIGEST="" 9 | ARG AKMODS_NVIDIA_DIGEST="" 10 | ARG BASE_IMAGE_DIGEST="" 11 | 12 | FROM scratch AS ctx 13 | COPY /sys_files /sys_files 14 | COPY /build_files / 15 | COPY packages.json / 16 | 17 | FROM ${IMAGE_REGISTRY}/akmods:main-${FEDORA_MAJOR_VERSION}${AKMODS_DIGEST:+@${AKMODS_DIGEST}} AS akmods 18 | 19 | FROM ${IMAGE_REGISTRY}/akmods-nvidia-open:main-${FEDORA_MAJOR_VERSION}${AKMODS_NVIDIA_DIGEST:+@${AKMODS_NVIDIA_DIGEST}} AS akmods_nvidia 20 | 21 | FROM ${BASE_IMAGE}:${FEDORA_MAJOR_VERSION}${BASE_IMAGE_DIGEST:+@${BASE_IMAGE_DIGEST}} 22 | 23 | ARG IMAGE_NAME="${IMAGE_NAME:-silverblue}" 24 | ARG FEDORA_MAJOR_VERSION="${FEDORA_MAJOR_VERSION:-42}" 25 | ARG KERNEL_VERSION="${KERNEL_VERSION:-6.14.0-0.rc3.29.fc42.x86_64}" 26 | ARG BUILD_NVIDIA="${BUILD_NVIDIA:-N}" 27 | 28 | RUN --mount=type=bind,from=ctx,src=/,dst=/ctx \ 29 | --mount=type=cache,target=/var/cache \ 30 | --mount=type=cache,target=/var/log \ 31 | --mount=type=tmpfs,target=/tmp \ 32 | --mount=type=bind,from=akmods,src=/rpms/ublue-os,dst=/tmp/akmods-rpms \ 33 | --mount=type=bind,from=akmods,src=/kernel-rpms,dst=/tmp/kernel-rpms \ 34 | --mount=type=bind,from=akmods_nvidia,src=/rpms,dst=/tmp/akmods-nv-rpms \ 35 | rm -f /usr/bin/chsh && \ 36 | rm -f /usr/bin/lchsh && \ 37 | /ctx/install.sh && \ 38 | if [ "${BUILD_NVIDIA}" == "Y" ]; then \ 39 | AKMODNV_PATH=/tmp/akmods-nv-rpms /ctx/nvidia-install.sh \ 40 | ; fi && \ 41 | /ctx/initramfs.sh && \ 42 | /ctx/post-install.sh 43 | 44 | # bootc lint 45 | RUN ["bootc", "container", "lint"] 46 | -------------------------------------------------------------------------------- /packages.json: -------------------------------------------------------------------------------- 1 | { 2 | "all": { 3 | "include": { 4 | "all": [ 5 | "alsa-firmware", 6 | "apr", 7 | "apr-util", 8 | "distrobox", 9 | "fdk-aac", 10 | "ffmpeg", 11 | "ffmpeg-libs", 12 | "ffmpegthumbnailer", 13 | "flatpak-spawn", 14 | "fuse", 15 | "fzf", 16 | "google-noto-sans-balinese-fonts", 17 | "google-noto-sans-cjk-fonts", 18 | "google-noto-sans-javanese-fonts", 19 | "google-noto-sans-sundanese-fonts", 20 | "grub2-tools-extra", 21 | "heif-pixbuf-loader", 22 | "htop", 23 | "intel-vaapi-driver", 24 | "just", 25 | "libavcodec", 26 | "libcamera", 27 | "libcamera-gstreamer", 28 | "libcamera-ipa", 29 | "libheif", 30 | "libcamera-tools", 31 | "libfdk-aac", 32 | "libimobiledevice-utils", 33 | "libratbag-ratbagd", 34 | "libva-utils", 35 | "lshw", 36 | "net-tools", 37 | "nvme-cli", 38 | "nvtop", 39 | "openrgb-udev-rules", 40 | "openssl", 41 | "oversteer-udev", 42 | "pam-u2f", 43 | "pam_yubico", 44 | "pamu2fcfg", 45 | "pipewire-libs-extra", 46 | "pipewire-plugin-libcamera", 47 | "powerstat", 48 | "smartmontools", 49 | "solaar-udev", 50 | "squashfs-tools", 51 | "symlinks", 52 | "tcpdump", 53 | "tmux", 54 | "traceroute", 55 | "usbmuxd", 56 | "vim", 57 | "wireguard-tools", 58 | "wl-clipboard", 59 | "xhost", 60 | "xorg-x11-xauth", 61 | "yubikey-manager", 62 | "zstd" 63 | ], 64 | "silverblue": [ 65 | "adw-gtk3-theme", 66 | "gvfs-nfs", 67 | "ibus-unikey", 68 | "ibus-mozc" 69 | ], 70 | "kinoite": [ 71 | "fcitx5-chinese-addons", 72 | "fcitx5-configtool", 73 | "fcitx5-gtk", 74 | "fcitx5-hangul", 75 | "fcitx5-libthai", 76 | "fcitx5-mozc", 77 | "fcitx5-qt", 78 | "fcitx5-sayura", 79 | "fcitx5-unikey", 80 | "icoutils", 81 | "kate", 82 | "kcm-fcitx5", 83 | "ksshaskpass" 84 | ] 85 | }, 86 | "exclude": { 87 | "all": ["google-noto-sans-cjk-vf-fonts", "default-fonts-cjk-sans", "fedora-third-party"], 88 | "silverblue": [ 89 | "totem-video-thumbnailer", 90 | "gnome-software-rpm-ostree" 91 | ], 92 | "kinoite": ["ffmpegthumbnailer", "plasma-discover-rpm-ostree"] 93 | } 94 | }, 95 | "42": { 96 | "include": { 97 | "all": [ 98 | "android-udev-rules", 99 | "mesa-libxatracker" 100 | ] 101 | }, 102 | "exclude": { 103 | "all": [] 104 | } 105 | } 106 | } 107 | -------------------------------------------------------------------------------- /.devcontainer/local-features/tools/install.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/bash 2 | 3 | set -e 4 | 5 | dnf5 install -y \ 6 | ShellCheck \ 7 | dosfstools \ 8 | erofs-utils \ 9 | fd \ 10 | gh \ 11 | glibc-langpack-en \ 12 | grub2 \ 13 | grub2-efi \ 14 | grub2-tools \ 15 | grub2-tools-extra \ 16 | npm \ 17 | openssl \ 18 | ripgrep \ 19 | sbsigntools \ 20 | shfmt \ 21 | shim \ 22 | skopeo \ 23 | socat \ 24 | squashfs-tools \ 25 | tmux \ 26 | xorriso \ 27 | yamllint \ 28 | yq \ 29 | zstd 30 | 31 | # TODO: Handle arm64 32 | dnf5 install -y \ 33 | grub2-efi-x64 \ 34 | grub2-efi-x64-cdboot \ 35 | grub2-efi-x64-modules 36 | 37 | mkdir -p /usr/local/bin 38 | npm install -g \ 39 | dockerfile-language-server-nodejs \ 40 | neo-bash-ls \ 41 | pyright \ 42 | tldr \ 43 | vscode-langservers-extracted \ 44 | yaml-language-server 45 | 46 | # TODO: Handle arm64 47 | # just 48 | while [[ -z "${JUST:-}" || "${JUST:-}" == "null" ]]; do 49 | JUST="$(curl -Ls https://api.github.com/repos/casey/just/releases/latest | jq -r '.assets[] | select(.name | test(".*x86_64-unknown-linux-musl.*gz")).browser_download_url')" || (true && sleep 30) 50 | done 51 | curl --retry 3 -L# "$JUST" | tar -xz -C /usr/local/bin/ 52 | # eza 53 | while [[ -z "${EZA:-}" || "${EZA:-}" == "null" ]]; do 54 | EZA="$(curl -Ls https://api.github.com/repos/eza-community/eza/releases/latest | jq -r '.assets[] | select(.name | test(".*x86_64-unknown-linux-gnu.*gz")).browser_download_url')" || (true && sleep 5) 55 | done 56 | curl --retry 3 -L# "$EZA" | tar -xz -C /usr/local/bin/ 57 | 58 | # cosign 59 | while [[ -z "${COSIGN:-}" || "${COSIGN}" == "null" ]]; do 60 | COSIGN="$(curl -Ls https://api.github.com/repos/sigstore/cosign/releases/latest | jq -r '.assets[] | select(.name | test(".*-linux-amd64$")).browser_download_url')" || (true && sleep 5) 61 | done 62 | curl --retry 3 -L#o /usr/local/bin/cosign "$COSIGN" 63 | chmod +x /usr/local/bin/cosign 64 | 65 | # dockerfmt 66 | while [[ -z "${DOCKER_FMT:-}" || "${DOCKER_FMT:-}" == "null" ]]; do 67 | DOCKER_FMT="$(curl -Ls https://api.github.com/repos/reteps/dockerfmt/releases/latest | jq -r '.assets[] | select(.name| test(".*linux-amd64.*gz$")).browser_download_url')" || (true && sleep 5) 68 | done 69 | curl --retry 3 -L# "$DOCKER_FMT" | tar -xz -C /usr/local/bin/ 70 | ln -sf /usr/local/bin/dockerfmt /usr/local/bin/dockfmt 71 | dockerfmt completion bash >/etc/bash_completion.d/dockerfmt 72 | 73 | # Emacs LSP Booster (the superior editor with too many flaws) 74 | while [[ -z "${EMACS_LSP_BOOSTER:-}" || "${EMACS_LSP_BOOSTER:-}" == "null" ]]; do 75 | EMACS_LSP_BOOSTER="$(curl -Ls https://api.github.com/repos/blahgeek/emacs-lsp-booster/releases/latest | jq -r '.assets[] | select(.name| test(".*musl.zip$")).browser_download_url')" || (true && sleep 5) 76 | done 77 | curl --retry 3 -L#o /tmp/emacs-lsp-booster.zip "$EMACS_LSP_BOOSTER" 78 | unzip -d /usr/local/bin/ /tmp/emacs-lsp-booster.zip 79 | rm -f /tmp/emacs-lsp-booster.zip 80 | 81 | # syft 82 | while [[ -z "${SYFT:-}" || "${SYFT:-}" == "null" ]]; do 83 | SYFT="$(curl -Ls https://api.github.com/repos/anchore/syft/releases/latest | jq -r '.assets[] | select(.name | test(".*_linux_amd64.*gz$")).browser_download_url')" || (true && sleep 5) 84 | done 85 | curl --retry 3 -L# "$SYFT" | tar -xz -C /usr/local/bin/ 86 | 87 | # yamlfmt 88 | while [[ -z "${YAMLFMT:-}" || "${YAMLFMT:-}" == "null" ]]; do 89 | YAMLFMT="$(curl -Ls https://api.github.com/repos/google/yamlfmt/releases/latest | jq -r '.assets[] | select(.name | test(".*_Linux_x86_64.*gz$")).browser_download_url')" || (true && sleep 5) 90 | done 91 | curl --retry 3 -L# "${YAMLFMT}" | tar -xz -C /usr/local/bin/ 92 | 93 | tee -a /etc/bashrc >/dev/null <<'EOF' 94 | # Pretty Colors 95 | alias ll='ls -la' 96 | alias la='ls -la' 97 | alias ls='eza' 98 | EOF 99 | 100 | # Linuxbrew Path Compat for tools 101 | mkdir -p /home/linuxbrew/.linuxbrew/bin/ 102 | for f in /usr/local/bin/*; do 103 | ln -sf /usr/local/bin/"$(basename "$f")" /home/linuxbrew/.linuxbrew/bin/"$(basename "$f")" 104 | done 105 | 106 | # Cleanup 107 | dnf5 clean all 108 | -------------------------------------------------------------------------------- /.devcontainer/local-features/podman/install.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/bash 2 | 3 | set -e 4 | 5 | USERNAME="${USERNAME:-"{_REMOTE_USER:-"automatic"}"}" 6 | 7 | mkdir -p /usr/local/bin 8 | 9 | if [ "$(id -u)" -ne 0 ]; then 10 | echo '(!) Script must be run as root.' >&2 11 | exit 1 12 | fi 13 | 14 | # Username 15 | if [ "${USERNAME}" = "auto" ] || [ "${USERNAME}" = "automatic" ]; then 16 | USERNAME="" 17 | POSSIBLE_USERS=("vscode" "node" "codespace" "$(awk -v val=1000 -F ":" '$3==val{print $1}' /etc/passwd)") 18 | for CURRENT_USER in "${POSSIBLE_USERS[@]}"; do 19 | if id -u "${CURRENT_USER}" >/dev/null 2>&1; then 20 | USERNAME=${CURRENT_USER} 21 | break 22 | fi 23 | done 24 | if [ "${USERNAME}" = "" ]; then 25 | USERNAME=root 26 | fi 27 | elif [ "${USERNAME}" = "none" ] || ! id -u "${USERNAME}" >/dev/null 2>&1; then 28 | USERNAME=root 29 | fi 30 | 31 | dnf5 install -y \ 32 | fuse-overlayfs \ 33 | podman \ 34 | podman-machine \ 35 | podman-remote 36 | 37 | dnf5 install --setopt=install_weak_deps=False -y \ 38 | docker-buildx \ 39 | docker-cli \ 40 | docker-compose 41 | 42 | # Usually only have 65536 within rootless podman 43 | rm -f /etc/sub{u,g}id 44 | echo "$USERNAME:50000:10000" >/etc/subuid 45 | echo "$USERNAME:50000:10000" >/etc/subgid 46 | chmod u+s /usr/bin/new{u,g}idmap 47 | 48 | mkdir -p "/home/$USERNAME/.local/share/containers/" 49 | chown "$USERNAME:$USERNAME" -R "/home/$USERNAME/" 50 | 51 | mkdir -p /usr/local/share 52 | tee /usr/local/share/podman-in-podman-init.sh >/dev/null <<'EOF' 53 | #!/usr/bin/env bash 54 | 55 | set -e 56 | 57 | podman_start="$(cat << 'INNEREOF' 58 | # -- Start: dind wrapper script -- 59 | # Maintained: https://github.com/moby/moby/blob/master/hack/dind 60 | 61 | # Using Podman 62 | export container=podman 63 | 64 | if [ -d /sys/kernel/security ] && ! mountpoint -q /sys/kernel/security; then 65 | mount -t securityfs none /sys/kernel/security || { 66 | echo >&2 'Could not mount /sys/kernel/security.' 67 | echo >&2 'AppArmor detection and --privileged mode might break.' 68 | } 69 | fi 70 | 71 | # Mount /tmp (conditionally) 72 | if ! mountpoint -q /tmp; then 73 | mount -t tmpfs none /tmp 74 | fi 75 | 76 | set_cgroup_nesting() 77 | { 78 | # cgroup v2: enable nesting 79 | if [ -f /sys/fs/cgroup/cgroup.controllers ]; then 80 | # move the processes from the root group to the /init group, 81 | # otherwise writing subtree_control fails with EBUSY. 82 | # An error during moving non-existent process (i.e., "cat") is ignored. 83 | mkdir -p /sys/fs/cgroup/init 84 | xargs -rn1 < /sys/fs/cgroup/cgroup.procs > /sys/fs/cgroup/init/cgroup.procs || : 85 | # enable controllers 86 | sed -e 's/ / +/g' -e 's/^/+/' < /sys/fs/cgroup/cgroup.controllers \ 87 | > /sys/fs/cgroup/cgroup.subtree_control 88 | fi 89 | } 90 | 91 | # Set cgroup nesting, retrying if necessary 92 | retry_cgroup_nesting=0 93 | 94 | until [ "${retry_cgroup_nesting}" -eq "5" ]; 95 | do 96 | set +e 97 | set_cgroup_nesting 98 | 99 | if [ $? -ne 0 ]; then 100 | echo "(*) cgroup v2: Failed to enable nesting, retrying..." 101 | else 102 | break 103 | fi 104 | 105 | retry_cgroup_nesting=`expr $retry_cgroup_nesting + 1` 106 | set -e 107 | done 108 | # -- End: dind wrapper script -- 109 | INNEREOF 110 | )" 111 | 112 | sudo_if() { 113 | COMMAND="$*" 114 | 115 | if [ "$(id -u)" -ne 0 ]; then 116 | sudo $COMMAND 117 | else 118 | $COMMAND 119 | fi 120 | } 121 | 122 | if [ "$(id -u)" -ne 0 ]; then 123 | sudo_if sh -c "$podman_start" 124 | else 125 | eval "$podman_start" 126 | fi 127 | 128 | # Work for Podman in Docker 129 | sudo_if mount --make-rshared / || true 130 | 131 | # Make any user able to create XDG_RUNTIME_DIR 132 | sudo_if chmod 777 /run/user 133 | 134 | # Don't Block 135 | exec "$@" 136 | EOF 137 | 138 | tee -a /etc/bashrc >/dev/null <<'EOF' 139 | # Bind Mount Volume to User. Podman Unshare works. 140 | 141 | if [ "$(id -u)" -ne 0 ]; then 142 | if [ ! -O "/srv/containers" ]; then 143 | sudo chown "$USERNAME:$USERNAME" /srv/containers || true 144 | fi 145 | if ! mountpoint -q "/home/$USERNAME/.local/share/containers"; then 146 | sudo mount --bind /srv/containers "/home/$USERNAME/.local/share/containers" || true 147 | fi 148 | fi 149 | EOF 150 | 151 | chmod +x /usr/local/share/podman-in-podman-init.sh 152 | chown "$USERNAME:root" /usr/local/share/podman-in-podman-init.sh 153 | 154 | dnf5 clean all 155 | -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- 1 | # Contributor Covenant Code of Conduct 2 | 3 | ## Our Pledge 4 | 5 | We as members, contributors, and leaders pledge to make participation in our 6 | community a harassment-free experience for everyone, regardless of age, body 7 | size, visible or invisible disability, ethnicity, sex characteristics, gender 8 | identity and expression, level of experience, education, socio-economic status, 9 | nationality, personal appearance, race, religion, or sexual identity 10 | and orientation. 11 | 12 | We pledge to act and interact in ways that contribute to an open, welcoming, 13 | diverse, inclusive, and healthy community. 14 | 15 | ## Our Standards 16 | 17 | Examples of behavior that contributes to a positive environment for our 18 | community include: 19 | 20 | * Demonstrating empathy and kindness toward other people 21 | * Being respectful of differing opinions, viewpoints, and experiences 22 | * Giving and gracefully accepting constructive feedback 23 | * Accepting responsibility and apologizing to those affected by our mistakes, 24 | and learning from the experience 25 | * Focusing on what is best not just for us as individuals, but for the 26 | overall community 27 | 28 | Examples of unacceptable behavior include: 29 | 30 | * The use of sexualized language or imagery, and sexual attention or 31 | advances of any kind 32 | * Trolling, insulting or derogatory comments, and personal or political attacks 33 | * Public or private harassment 34 | * Publishing others' private information, such as a physical or email 35 | address, without their explicit permission 36 | * Other conduct which could reasonably be considered inappropriate in a 37 | professional setting 38 | 39 | ## Enforcement Responsibilities 40 | 41 | Community leaders are responsible for clarifying and enforcing our standards of 42 | acceptable behavior and will take appropriate and fair corrective action in 43 | response to any behavior that they deem inappropriate, threatening, offensive, 44 | or harmful. 45 | 46 | Community leaders have the right and responsibility to remove, edit, or reject 47 | comments, commits, code, wiki edits, issues, and other contributions that are 48 | not aligned to this Code of Conduct, and will communicate reasons for moderation 49 | decisions when appropriate. 50 | 51 | ## Scope 52 | 53 | This Code of Conduct applies within all community spaces, and also applies when 54 | an individual is officially representing the community in public spaces. 55 | Examples of representing our community include using an official e-mail address, 56 | posting via an official social media account, or acting as an appointed 57 | representative at an online or offline event. 58 | 59 | ## Enforcement 60 | 61 | Instances of abusive, harassing, or otherwise unacceptable behavior may be 62 | reported to the community leaders responsible for enforcement at 63 | jorge.castro@gmail.com. 64 | All complaints will be reviewed and investigated promptly and fairly. 65 | 66 | All community leaders are obligated to respect the privacy and security of the 67 | reporter of any incident. 68 | 69 | ## Enforcement Guidelines 70 | 71 | Community leaders will follow these Community Impact Guidelines in determining 72 | the consequences for any action they deem in violation of this Code of Conduct: 73 | 74 | ### 1. Correction 75 | 76 | **Community Impact**: Use of inappropriate language or other behavior deemed 77 | unprofessional or unwelcome in the community. 78 | 79 | **Consequence**: A private, written warning from community leaders, providing 80 | clarity around the nature of the violation and an explanation of why the 81 | behavior was inappropriate. A public apology may be requested. 82 | 83 | ### 2. Warning 84 | 85 | **Community Impact**: A violation through a single incident or series 86 | of actions. 87 | 88 | **Consequence**: A warning with consequences for continued behavior. No 89 | interaction with the people involved, including unsolicited interaction with 90 | those enforcing the Code of Conduct, for a specified period of time. This 91 | includes avoiding interactions in community spaces as well as external channels 92 | like social media. Violating these terms may lead to a temporary or 93 | permanent ban. 94 | 95 | ### 3. Temporary Ban 96 | 97 | **Community Impact**: A serious violation of community standards, including 98 | sustained inappropriate behavior. 99 | 100 | **Consequence**: A temporary ban from any sort of interaction or public 101 | communication with the community for a specified period of time. No public or 102 | private interaction with the people involved, including unsolicited interaction 103 | with those enforcing the Code of Conduct, is allowed during this period. 104 | Violating these terms may lead to a permanent ban. 105 | 106 | ### 4. Permanent Ban 107 | 108 | **Community Impact**: Demonstrating a pattern of violation of community 109 | standards, including sustained inappropriate behavior, harassment of an 110 | individual, or aggression toward or disparagement of classes of individuals. 111 | 112 | **Consequence**: A permanent ban from any sort of public interaction within 113 | the community. 114 | 115 | ## Attribution 116 | 117 | This Code of Conduct is adapted from the [Contributor Covenant][homepage], 118 | version 2.0, available at 119 | https://www.contributor-covenant.org/version/2/0/code_of_conduct.html. 120 | 121 | Community Impact Guidelines were inspired by [Mozilla's code of conduct 122 | enforcement ladder](https://github.com/mozilla/diversity). 123 | 124 | [homepage]: https://www.contributor-covenant.org 125 | 126 | For answers to common questions about this code of conduct, see the FAQ at 127 | https://www.contributor-covenant.org/faq. Translations are available at 128 | https://www.contributor-covenant.org/translations. 129 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | # Welcome to Universal Blue 2 | 3 | Thanks for taking the time to look into helping out! 4 | All contributions are appreciated! 5 | Please refer to our [Code of Conduct](/CODE_OF_CONDUCT.md) while you're at it! 6 | 7 | Feel free to report issues as you find them, and [helping others in the discussions]() is always appreciated. 8 | 9 | # Contributing 10 | 11 | All types of contributions are encouraged and valued. See the [Table of Contents](#table-of-contents) for different ways to help and details about how this project handles them. Please make sure to read the relevant section before making your contribution. It will make it a lot easier for us maintainers and smooth out the experience for all involved. The community looks forward to your contributions. 12 | 13 | > And if you like the project, but just don't have time to contribute, that's fine. There are other easy ways to support the project and show your appreciation, which we would also be very happy about: 14 | > - Star the project 15 | > - Tweet about it 16 | > - Refer this project in your project's readme 17 | > - Mention the project at local meetups and tell your friends/colleagues 18 | 19 | ## Table of Contents 20 | 21 | - [Code of Conduct](#code-of-conduct) 22 | - [I Have a Question](#i-have-a-question) 23 | - [I Want To Contribute](#i-want-to-contribute) 24 | - [Reporting Bugs](#reporting-bugs) 25 | - [How to test incoming changes](#how-to-test-incoming-changes) 26 | - [Building Locally](#building-locally) 27 | - [Styleguides](#styleguides) 28 | - [Commit Messages](#commit-messages) 29 | - [Nvidia](#nvidia) 30 | - [Join The Project Team](#join-the-project-team) 31 | 32 | ## Code of Conduct 33 | 34 | This project and everyone participating in it is governed by the 35 | [CONTRIBUTING.md Code of Conduct](/CODE_OF_CONDUCT.md). 36 | By participating, you are expected to uphold this code. Please report unacceptable behavior 37 | to jorge.castro@gmail.com 38 | 39 | ## I Have a Question 40 | 41 | > If you want to ask a question, ask in the [discussion forum](https://github.com/orgs/ublue-os/discussions) 42 | 43 | ## I Want To Contribute 44 | 45 | > ### Legal Notice 46 | > When contributing to this project, you must agree that you have authored 100% of the content, that you have the necessary rights to the content and that the content you contribute may be provided under the project license. 47 | 48 | Generally speaking we try to follow the [Lazy Concensus](http://lazyconcens.us/) model of development to keep the builds healthy and ourselves happy. 49 | - If you're looking for concensus to make a decision post an issue for feedback and remember to account for timezones and weekends/holidays/work time. 50 | - We want people to be opinionated in their builds so we're more of a loose confederation of repos than a top-down org. 51 | - Try not to merge your own stuff, ask for a review. At some point when we have enough reviewers we'll be turning on branch protection. 52 | 53 | ### Reporting Bugs 54 | 55 | #### Before Submitting a Bug Report 56 | 57 | A good bug report should describe the issue in detail. Generally speaking: 58 | 59 | - Make sure that you are using the latest version. 60 | - Remember that these are unofficial builds, it's usually prudent to investigate an issue before reporting it here or in Fedora! 61 | - Collect information about the bug: 62 | - `rpm-ostree status -v` usually helps 63 | - Image and Version 64 | - Possibly your input and the output 65 | - Can you reliably reproduce the issue? And can you also reproduce it with older versions? 66 | 67 | ### How to test incoming changes 68 | 69 | One of the nice things about the image model is that we can generate an entire OS image for every change we want to commit, so this makes testing way easier than in the past. You can rebase to it, see if it works, and then move back. This also means we can increase the amount of testers! 70 | 71 | We strive towards a model where proposed changes are more thoroughly reviewed and tested by the community. So here's how to do it. If you see a pull request that is opened up on an image you're following you can leave a review on how it's working for you. At the bottom of every PR you'll see something like this: 72 | 73 | ![image](https://user-images.githubusercontent.com/1264109/221305388-3860fc07-212c-4eb9-80d9-5d7a35a77f46.png) 74 | 75 | Click on "Add your review", and then you'll see this: 76 | 77 | ![image](https://user-images.githubusercontent.com/1264109/221307636-5e312e48-821f-4206-848f-7fbc2c91cd78.png) 78 | 79 | Don't worry, you can't mess anything up, all the merging and stuff will be done by the maintainer, what this does is lets us gather information in a more formal manner than just shoving everything in a forum thread. The more people are reviewing and testing images, the better off we'll be, especially for images that are new like Sericea. 80 | 81 | At some point we'll have a bot that will leave you instructions on how to rebase to the image and all that stuff, but in the meantime we'll leave instructions manually. 82 | 83 | Here's an example: https://github.com/ublue-os/nvidia/pull/49 84 | 85 | ## Building Locally 86 | 87 | The minimum tools required are git and a working machine with podman enabled and configured. 88 | Building locally is much faster than building in GitHub and is a good way to move fast before pushing to a remote. 89 | 90 | ### Clone the repo you want 91 | 92 | git clone https://github.com/ublue-os/base.git 93 | 94 | ### Build the image 95 | 96 | First make sure you can build an existing image: 97 | 98 | podman build . -t something 99 | 100 | Then confirm your image built: 101 | 102 | podman image ls 103 | 104 | TODO: Set up and push to your own local registry 105 | 106 | ### Make your changes 107 | 108 | This usually involved editing the `Containerfile`. Most techniques for building containers apply here, if you're new to containers using the term "Dockerfile" in your searches usually shows more results when you're searching for information. 109 | 110 | Check out CoreOS's [layering examples](https://github.com/coreos/layering-examples) for more information on customizing. 111 | 112 | ### Reporting problems to Fedora 113 | 114 | We endevaour to be a good partner for Fedora. 115 | 116 | This project is consuming new features in Fedora and ostree, it is not uncommon to find an issue. 117 | Issues should be reported upstream, and in some cases we can help test and find fixes. 118 | Some of the issues you find may involve other dependencies in other projects, in those cases the Fedora team will tell you where to report the issue. 119 | 120 | Upstream bug tracker: [https://github.com/fedora-silverblue/issue-tracker/issues](https://github.com/fedora-silverblue/issue-tracker/issues) 121 | 122 | ## Styleguides 123 | ### Commit Messages 124 | 125 | We use [Conventional Commits](https://www.conventionalcommits.org/en/v1.0.0/) and enforce them with a bot to keep the changelogs tidy: 126 | 127 | ``` 128 | chore: add Oyster build script 129 | docs: explain hat wobble 130 | feat: add beta sequence 131 | fix: remove broken confirmation message 132 | refactor: share logic between 4d3d3d3 and flarhgunnstow 133 | style: convert tabs to spaces 134 | test: ensure Tayne retains clothing 135 | ``` 136 | 137 | ## Nvidia 138 | 139 | Please note, RPM Fusion supports the initial Nvidia driver release available with each Fedora version as well as the latest version. Any intermittent versions are not maintained by RPM Fusion after they have been superceded with a new version. 140 | 141 | Keep in mind checks, other than building the akmods, do fail in pull requests. 142 | 143 | ## Join The Project Team 144 | 145 | If you're interested in _maintaining_ something then let us know! 146 | 147 | ## Attribution 148 | This guide is based on the **contributing.md**. [Make your own](https://contributing.md/)! 149 | -------------------------------------------------------------------------------- /.github/workflows/reusable-build.yml: -------------------------------------------------------------------------------- 1 | name: build-ublue 2 | on: 3 | workflow_call: 4 | inputs: 5 | image_version: 6 | description: "The Version: gts, latest, beta... Justfile holds value" 7 | required: true 8 | type: string 9 | image_name: 10 | description: "The name of the image to build. E.G. base, silverblue" 11 | required: true 12 | type: string 13 | image_variant: 14 | description: "The variant of image to build. E.G. main, nvidia" 15 | required: false 16 | type: string 17 | default: "main" 18 | 19 | env: 20 | IMAGE_REGISTRY: ghcr.io/${{ github.repository_owner }} 21 | SET_X: 1 22 | 23 | jobs: 24 | check-build-required: 25 | name: Check if build is required 26 | runs-on: ubuntu-latest 27 | outputs: 28 | build_required: ${{ steps.check.outputs.build_required }} 29 | steps: 30 | - name: Checkout default branch 31 | uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6 32 | with: 33 | ref: main 34 | path: main 35 | fetch-depth: 0 36 | 37 | - name: Checkout PR branch 38 | uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6 39 | with: 40 | path: pr 41 | fetch-depth: 0 42 | 43 | - name: Install Cosign 44 | uses: sigstore/cosign-installer@7e8b541eb2e61bf99390e1afd4be13a184e9ebc5 # v3.10.1 45 | 46 | - name: Setup Just 47 | # yamllint disable-line rule:line-length rule:comments 48 | uses: extractions/setup-just@e33e0265a09d6d736e2ee1e0eb685ef1de4669ff # v3 49 | 50 | - name: Compare image digests to determine if build is required 51 | id: check 52 | shell: bash 53 | env: 54 | IMAGE_NAME: ${{ inputs.image_name }} 55 | IMAGE_VERSION_ALIAS: ${{ inputs.image_version }} 56 | IMAGE_VARIANT: ${{ inputs.image_variant }} 57 | EVENT_NAME: ${{ github.event_name }} 58 | run: | 59 | set -e 60 | 61 | # Always build when workflow_dispatch is triggered 62 | if [ "${EVENT_NAME}" == "workflow_dispatch" ]; then 63 | echo "Build triggered by workflow_dispatch - always building" 64 | echo "build_required=true" >> "$GITHUB_OUTPUT" 65 | exit 0 66 | fi 67 | 68 | # Fetch version from the Justfile 69 | IMAGE_VERSION=$(just -f ./pr/Justfile --evaluate "${IMAGE_VERSION_ALIAS}") 70 | 71 | BASE_NAME="${IMAGE_NAME}-${IMAGE_VERSION}" 72 | AKMODS_NAME="akmods-${IMAGE_VERSION}" 73 | 74 | OLD_BASE_DIGEST=$(yq -r ".images[] | select(.name == \"${BASE_NAME}\") | .digest" main/image-versions.yaml) 75 | NEW_BASE_DIGEST=$(yq -r ".images[] | select(.name == \"${BASE_NAME}\") | .digest" pr/image-versions.yaml) 76 | 77 | OLD_AKMODS_DIGEST=$(yq -r ".images[] | select(.name == \"${AKMODS_NAME}\") | .digest" main/image-versions.yaml) 78 | NEW_AKMODS_DIGEST=$(yq -r ".images[] | select(.name == \"${AKMODS_NAME}\") | .digest" pr/image-versions.yaml) 79 | 80 | echo "Comparing digests:" 81 | echo "Base image old: ${OLD_BASE_DIGEST}, new: ${NEW_BASE_DIGEST}" 82 | echo "Akmods image old: ${OLD_AKMODS_DIGEST}, new: ${NEW_AKMODS_DIGEST}" 83 | 84 | BUILD_REQUIRED=false 85 | 86 | if [ "$OLD_BASE_DIGEST" != "$NEW_BASE_DIGEST" ]; then 87 | echo "Base digest changed." 88 | BUILD_REQUIRED=true 89 | fi 90 | 91 | if [ "$OLD_AKMODS_DIGEST" != "$NEW_AKMODS_DIGEST" ]; then 92 | echo "Akmods digest changed." 93 | BUILD_REQUIRED=true 94 | fi 95 | 96 | if [ "${IMAGE_VARIANT}" == "nvidia" ]; then 97 | AKMODS_NVIDIA_NAME="akmods-nvidia-open-${IMAGE_VERSION}" 98 | OLD_AKMODS_NVIDIA_DIGEST=$(yq -r ".images[] | select(.name == \"${AKMODS_NVIDIA_NAME}\") | .digest" main/image-versions.yaml) 99 | NEW_AKMODS_NVIDIA_DIGEST=$(yq -r ".images[] | select(.name == \"${AKMODS_NVIDIA_NAME}\") | .digest" pr/image-versions.yaml) 100 | 101 | echo "Akmods-NVIDIA image old: ${OLD_AKMODS_NVIDIA_DIGEST}, new: ${NEW_AKMODS_NVIDIA_DIGEST}" 102 | 103 | if [ "$OLD_AKMODS_NVIDIA_DIGEST" != "$NEW_AKMODS_NVIDIA_DIGEST" ]; then 104 | echo "Akmods-NVIDIA digest changed." 105 | BUILD_REQUIRED=true 106 | fi 107 | fi 108 | 109 | # If any file other than image-versions.yaml has changed, we also need to build. 110 | echo "Checking for changes outside image-versions.yaml..." 111 | 112 | # Run recursive diff and collect output 113 | ALL_DIFFS=$(diff -rq --exclude='.git' main/ pr/ || true) 114 | 115 | # Define exclusions (as regex patterns) 116 | EXCLUDED_DIFF_PATTERNS=( 117 | "Only in.*/image-versions.yaml" 118 | "Files .*image-versions.yaml and .*image-versions.yaml differ" 119 | ) 120 | 121 | # Filter out excluded diffs 122 | FILTERED_DIFFS="$ALL_DIFFS" 123 | for pattern in "${EXCLUDED_DIFF_PATTERNS[@]}"; do 124 | FILTERED_DIFFS=$(echo "$FILTERED_DIFFS" | grep -Ev "$pattern" || true) 125 | done 126 | 127 | # Output filtered changes 128 | if [[ -n "$FILTERED_DIFFS" ]]; then 129 | echo "Other files changed:" 130 | echo "$FILTERED_DIFFS" 131 | BUILD_REQUIRED=true 132 | else 133 | echo "No other files changed." 134 | fi 135 | 136 | echo "build_required=${BUILD_REQUIRED}" >> "$GITHUB_OUTPUT" 137 | 138 | build_ublue: 139 | name: main 140 | runs-on: ubuntu-24.04 141 | needs: check-build-required 142 | if: ${{ needs.check-build-required.outputs.build_required == 'true' }} 143 | permissions: 144 | contents: read 145 | packages: write 146 | id-token: write 147 | steps: 148 | - name: Mount BTRFS for podman storage 149 | id: container-storage-action 150 | uses: ublue-os/container-storage-action@911baca08baf30c8654933e9e9723cb399892140 151 | continue-on-error: true 152 | with: 153 | mount-opts: compress-force=zstd:2 154 | loopback-free: '1' 155 | 156 | # Checkout Git Repository 157 | - name: Checkout 158 | # yamllint disable-line rule:line-length rule:comments 159 | uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6 160 | 161 | - name: Install Cosign 162 | uses: sigstore/cosign-installer@7e8b541eb2e61bf99390e1afd4be13a184e9ebc5 # v3.10.1 163 | 164 | - name: Setup Just 165 | # yamllint disable-line rule:line-length rule:comments 166 | uses: extractions/setup-just@e33e0265a09d6d736e2ee1e0eb685ef1de4669ff # v3 167 | 168 | - name: Build Image 169 | shell: bash 170 | run: | 171 | set -x 172 | just build-container \ 173 | "${{ inputs.image_name }}" \ 174 | "${{ inputs.image_version }}" \ 175 | "${{ inputs.image_variant }}" \ 176 | "${{ github.event_name }}" 177 | 178 | - name: Check Secureboot 179 | shell: bash 180 | run: | 181 | set -x 182 | just secureboot \ 183 | "${{ inputs.image_name }}" \ 184 | "${{ inputs.image_version }}" \ 185 | "${{ inputs.image_variant }}" 186 | 187 | # Workaround bug where capital letters in your GitHub username make it impossible to push to GHCR. 188 | # https://github.com/macbre/push-to-ghcr/issues/12 189 | - name: Lowercase Registry 190 | id: registry_case 191 | uses: ASzc/change-string-case-action@d0603cd0a7dd490be678164909f65c7737470a7f # v6 192 | with: 193 | string: ${{ env.IMAGE_REGISTRY }} 194 | 195 | - name: Push To GHCR 196 | id: push 197 | if: github.event_name != 'pull_request' 198 | env: 199 | REGISTRY_USER: ${{ github.actor }} 200 | REGISTRY_TOKEN: ${{ github.token }} 201 | shell: bash 202 | run: | 203 | just login-to-ghcr "$REGISTRY_USER" "$REGISTRY_TOKEN" 204 | just push-to-registry \ 205 | "${{ inputs.image_name }}" \ 206 | "${{ inputs.image_version }}" \ 207 | "${{ inputs.image_variant }}" \ 208 | "${{ steps.registry_case.outputs.lowercase }}" 209 | 210 | - name: Sign Container Image 211 | id: sign 212 | if: github.event_name != 'pull_request' 213 | env: 214 | COSIGN_EXPERIMENTAL: false 215 | COSIGN_PRIVATE_KEY: ${{ secrets.SIGNING_SECRET }} 216 | shell: bash 217 | run: | 218 | just cosign-sign \ 219 | "${{ inputs.image_name }}" \ 220 | "${{ inputs.image_version }}" \ 221 | "${{ inputs.image_variant }}" \ 222 | "${{ steps.registry_case.outputs.lowercase }}" 223 | 224 | - name: SBOM Setup 225 | if: false 226 | run: | 227 | set -eou pipefail 228 | echo "=== FREE SPACE ===" 229 | df -h 230 | echo "=== MEMORY AND SWAP ===" 231 | free -h 232 | swapon --show 233 | echo "=== MAKING SWAPFILE ===" 234 | sudo swapoff /mnt/swapfile 235 | sudo rm -f /mnt/swapfile 236 | SWAP_FILE="/mnt/swapfile" 237 | sudo fallocate -l 70G "$SWAP_FILE" 238 | sudo chmod 600 "$SWAP_FILE" 239 | sudo mkswap "$SWAP_FILE" 240 | sudo swapon "$SWAP_FILE" 241 | echo "=== FREE SPACE ===" 242 | df -h 243 | echo "=== MEMORY AND SWAP ===" 244 | free -h 245 | swapon --show 246 | 247 | - name: Generate SBOM 248 | id: sbom 249 | if: false 250 | shell: bash 251 | run: | 252 | systemctl enable --now --user podman.socket 253 | 254 | sbom=$(just gen-sbom \ 255 | "${{ inputs.image_name }}" \ 256 | "${{ inputs.image_version }}" \ 257 | "${{ inputs.image_variant }}") 258 | echo "sbom=$sbom" >> "$GITHUB_OUTPUT" 259 | 260 | - name: Attest SBOM 261 | id: attest 262 | shell: bash 263 | if: false 264 | run: | 265 | just sbom-attest \ 266 | "${{ inputs.image_name }}" \ 267 | "${{ inputs.image_version }}" \ 268 | "${{ inputs.image_variant }}" \ 269 | "${{ steps.registry_case.outputs.lowercase }}" \ 270 | "${{ steps.sbom.outputs.sbom }}" 271 | 272 | check: 273 | name: Check all ${{ inputs.image_name }}:${{ inputs.image_version }} builds successful 274 | if: always() 275 | runs-on: ubuntu-latest 276 | needs: [build_ublue] 277 | steps: 278 | - name: Check Jobs 279 | env: 280 | JOBS: ${{ toJson(needs) }} 281 | run: | 282 | echo "Job status:" 283 | echo $JOBS | jq -r 'to_entries[] | " - \(.key): \(.value.result)"' 284 | 285 | for i in $(echo $JOBS | jq -r 'to_entries[] | .value.result'); do 286 | if [ "$i" != "success" ] && [ "$i" != "skipped" ]; then 287 | echo "" 288 | echo "Status check not okay!" 289 | exit 1 290 | fi 291 | done 292 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | Apache License 2 | Version 2.0, January 2004 3 | http://www.apache.org/licenses/ 4 | 5 | TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION 6 | 7 | 1. Definitions. 8 | 9 | "License" shall mean the terms and conditions for use, reproduction, 10 | and distribution as defined by Sections 1 through 9 of this document. 11 | 12 | "Licensor" shall mean the copyright owner or entity authorized by 13 | the copyright owner that is granting the License. 14 | 15 | "Legal Entity" shall mean the union of the acting entity and all 16 | other entities that control, are controlled by, or are under common 17 | control with that entity. For the purposes of this definition, 18 | "control" means (i) the power, direct or indirect, to cause the 19 | direction or management of such entity, whether by contract or 20 | otherwise, or (ii) ownership of fifty percent (50%) or more of the 21 | outstanding shares, or (iii) beneficial ownership of such entity. 22 | 23 | "You" (or "Your") shall mean an individual or Legal Entity 24 | exercising permissions granted by this License. 25 | 26 | "Source" form shall mean the preferred form for making modifications, 27 | including but not limited to software source code, documentation 28 | source, and configuration files. 29 | 30 | "Object" form shall mean any form resulting from mechanical 31 | transformation or translation of a Source form, including but 32 | not limited to compiled object code, generated documentation, 33 | and conversions to other media types. 34 | 35 | "Work" shall mean the work of authorship, whether in Source or 36 | Object form, made available under the License, as indicated by a 37 | copyright notice that is included in or attached to the work 38 | (an example is provided in the Appendix below). 39 | 40 | "Derivative Works" shall mean any work, whether in Source or Object 41 | form, that is based on (or derived from) the Work and for which the 42 | editorial revisions, annotations, elaborations, or other modifications 43 | represent, as a whole, an original work of authorship. For the purposes 44 | of this License, Derivative Works shall not include works that remain 45 | separable from, or merely link (or bind by name) to the interfaces of, 46 | the Work and Derivative Works thereof. 47 | 48 | "Contribution" shall mean any work of authorship, including 49 | the original version of the Work and any modifications or additions 50 | to that Work or Derivative Works thereof, that is intentionally 51 | submitted to Licensor for inclusion in the Work by the copyright owner 52 | or by an individual or Legal Entity authorized to submit on behalf of 53 | the copyright owner. For the purposes of this definition, "submitted" 54 | means any form of electronic, verbal, or written communication sent 55 | to the Licensor or its representatives, including but not limited to 56 | communication on electronic mailing lists, source code control systems, 57 | and issue tracking systems that are managed by, or on behalf of, the 58 | Licensor for the purpose of discussing and improving the Work, but 59 | excluding communication that is conspicuously marked or otherwise 60 | designated in writing by the copyright owner as "Not a Contribution." 61 | 62 | "Contributor" shall mean Licensor and any individual or Legal Entity 63 | on behalf of whom a Contribution has been received by Licensor and 64 | subsequently incorporated within the Work. 65 | 66 | 2. Grant of Copyright License. Subject to the terms and conditions of 67 | this License, each Contributor hereby grants to You a perpetual, 68 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 69 | copyright license to reproduce, prepare Derivative Works of, 70 | publicly display, publicly perform, sublicense, and distribute the 71 | Work and such Derivative Works in Source or Object form. 72 | 73 | 3. Grant of Patent License. Subject to the terms and conditions of 74 | this License, each Contributor hereby grants to You a perpetual, 75 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 76 | (except as stated in this section) patent license to make, have made, 77 | use, offer to sell, sell, import, and otherwise transfer the Work, 78 | where such license applies only to those patent claims licensable 79 | by such Contributor that are necessarily infringed by their 80 | Contribution(s) alone or by combination of their Contribution(s) 81 | with the Work to which such Contribution(s) was submitted. If You 82 | institute patent litigation against any entity (including a 83 | cross-claim or counterclaim in a lawsuit) alleging that the Work 84 | or a Contribution incorporated within the Work constitutes direct 85 | or contributory patent infringement, then any patent licenses 86 | granted to You under this License for that Work shall terminate 87 | as of the date such litigation is filed. 88 | 89 | 4. Redistribution. You may reproduce and distribute copies of the 90 | Work or Derivative Works thereof in any medium, with or without 91 | modifications, and in Source or Object form, provided that You 92 | meet the following conditions: 93 | 94 | (a) You must give any other recipients of the Work or 95 | Derivative Works a copy of this License; and 96 | 97 | (b) You must cause any modified files to carry prominent notices 98 | stating that You changed the files; and 99 | 100 | (c) You must retain, in the Source form of any Derivative Works 101 | that You distribute, all copyright, patent, trademark, and 102 | attribution notices from the Source form of the Work, 103 | excluding those notices that do not pertain to any part of 104 | the Derivative Works; and 105 | 106 | (d) If the Work includes a "NOTICE" text file as part of its 107 | distribution, then any Derivative Works that You distribute must 108 | include a readable copy of the attribution notices contained 109 | within such NOTICE file, excluding those notices that do not 110 | pertain to any part of the Derivative Works, in at least one 111 | of the following places: within a NOTICE text file distributed 112 | as part of the Derivative Works; within the Source form or 113 | documentation, if provided along with the Derivative Works; or, 114 | within a display generated by the Derivative Works, if and 115 | wherever such third-party notices normally appear. The contents 116 | of the NOTICE file are for informational purposes only and 117 | do not modify the License. You may add Your own attribution 118 | notices within Derivative Works that You distribute, alongside 119 | or as an addendum to the NOTICE text from the Work, provided 120 | that such additional attribution notices cannot be construed 121 | as modifying the License. 122 | 123 | You may add Your own copyright statement to Your modifications and 124 | may provide additional or different license terms and conditions 125 | for use, reproduction, or distribution of Your modifications, or 126 | for any such Derivative Works as a whole, provided Your use, 127 | reproduction, and distribution of the Work otherwise complies with 128 | the conditions stated in this License. 129 | 130 | 5. Submission of Contributions. Unless You explicitly state otherwise, 131 | any Contribution intentionally submitted for inclusion in the Work 132 | by You to the Licensor shall be under the terms and conditions of 133 | this License, without any additional terms or conditions. 134 | Notwithstanding the above, nothing herein shall supersede or modify 135 | the terms of any separate license agreement you may have executed 136 | with Licensor regarding such Contributions. 137 | 138 | 6. Trademarks. This License does not grant permission to use the trade 139 | names, trademarks, service marks, or product names of the Licensor, 140 | except as required for reasonable and customary use in describing the 141 | origin of the Work and reproducing the content of the NOTICE file. 142 | 143 | 7. Disclaimer of Warranty. Unless required by applicable law or 144 | agreed to in writing, Licensor provides the Work (and each 145 | Contributor provides its Contributions) on an "AS IS" BASIS, 146 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or 147 | implied, including, without limitation, any warranties or conditions 148 | of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A 149 | PARTICULAR PURPOSE. You are solely responsible for determining the 150 | appropriateness of using or redistributing the Work and assume any 151 | risks associated with Your exercise of permissions under this License. 152 | 153 | 8. Limitation of Liability. In no event and under no legal theory, 154 | whether in tort (including negligence), contract, or otherwise, 155 | unless required by applicable law (such as deliberate and grossly 156 | negligent acts) or agreed to in writing, shall any Contributor be 157 | liable to You for damages, including any direct, indirect, special, 158 | incidental, or consequential damages of any character arising as a 159 | result of this License or out of the use or inability to use the 160 | Work (including but not limited to damages for loss of goodwill, 161 | work stoppage, computer failure or malfunction, or any and all 162 | other commercial damages or losses), even if such Contributor 163 | has been advised of the possibility of such damages. 164 | 165 | 9. Accepting Warranty or Additional Liability. While redistributing 166 | the Work or Derivative Works thereof, You may choose to offer, 167 | and charge a fee for, acceptance of support, warranty, indemnity, 168 | or other liability obligations and/or rights consistent with this 169 | License. However, in accepting such obligations, You may act only 170 | on Your own behalf and on Your sole responsibility, not on behalf 171 | of any other Contributor, and only if You agree to indemnify, 172 | defend, and hold each Contributor harmless for any liability 173 | incurred by, or claims asserted against, such Contributor by reason 174 | of your accepting any such warranty or additional liability. 175 | 176 | END OF TERMS AND CONDITIONS 177 | 178 | APPENDIX: How to apply the Apache License to your work. 179 | 180 | To apply the Apache License to your work, attach the following 181 | boilerplate notice, with the fields enclosed by brackets "[]" 182 | replaced with your own identifying information. (Don't include 183 | the brackets!) The text should be enclosed in the appropriate 184 | comment syntax for the file format. We also recommend that a 185 | file or class name and description of purpose be included on the 186 | same "printed page" as the copyright notice for easier 187 | identification within third-party archives. 188 | 189 | Copyright [yyyy] [name of copyright owner] 190 | 191 | Licensed under the Apache License, Version 2.0 (the "License"); 192 | you may not use this file except in compliance with the License. 193 | You may obtain a copy of the License at 194 | 195 | http://www.apache.org/licenses/LICENSE-2.0 196 | 197 | Unless required by applicable law or agreed to in writing, software 198 | distributed under the License is distributed on an "AS IS" BASIS, 199 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 200 | See the License for the specific language governing permissions and 201 | limitations under the License. 202 | -------------------------------------------------------------------------------- /Justfile: -------------------------------------------------------------------------------- 1 | set unstable := true 2 | 3 | # Tags 4 | 5 | gts := "42" 6 | latest := "43" 7 | [private] 8 | beta := "44" 9 | 10 | # Defaults 11 | 12 | default_version := latest 13 | default_image := "silverblue" 14 | default_variant := "main" 15 | 16 | # Reused Values 17 | 18 | org := "ublue-os" 19 | repo := "main" 20 | IMAGE_REGISTRY := "ghcr.io" / org 21 | 22 | # Upstream 23 | 24 | [private] 25 | source_org := "fedora-ostree-desktops" 26 | source_registry := "quay.io" / source_org 27 | 28 | # Image File 29 | 30 | [private] 31 | image-file := justfile_dir() / "image-versions.yaml" 32 | 33 | # Image Names 34 | 35 | [private] 36 | images := '( 37 | ["base"]="base-atomic" 38 | ["silverblue"]="silverblue" 39 | ["kinoite"]="kinoite" 40 | )' 41 | 42 | # Fedora Versions 43 | 44 | [private] 45 | fedora_versions := '( 46 | ["gts"]="' + gts + '" 47 | ["' + gts + '"]="' + gts + '" 48 | ["latest"]="' + latest + '" 49 | ["' + latest + '"]="' + latest + '" 50 | ["beta"]="' + beta + '" 51 | ["' + beta + '"]="' + beta + '" 52 | )' 53 | 54 | # Variants 55 | 56 | [private] 57 | variants := '( 58 | ["main"]="main" 59 | ["nvidia"]="nvidia" 60 | )' 61 | 62 | # Sudo/Podman/Just 63 | 64 | [private] 65 | SUDO_DISPLAY := env("DISPLAY", "") || env("WAYLAND_DISPLAY", "") 66 | [private] 67 | SUDOIF := if `id -u` == "0" { "" } else if SUDO_DISPLAY != "" { which("sudo") + " --askpass" } else { which("sudo") } 68 | [private] 69 | just := just_executable() 70 | [private] 71 | PODMAN := which("podman") || require("podman-remote") 72 | 73 | # Make things quieter by default 74 | 75 | [private] 76 | export SET_X := if `id -u` == "0" { "1" } else { env('SET_X', '') } 77 | 78 | # Aliases 79 | 80 | alias run := run-container 81 | alias build := build-container 82 | 83 | # Utility 84 | 85 | [private] 86 | default-inputs := ' 87 | : ${fedora_version:=' + default_version + '} 88 | : ${image_name:=' + default_image + '} 89 | : ${variant:=' + default_variant + '} 90 | ' 91 | [private] 92 | get-names := ' 93 | declare -a _images="$(' + just + ' image-name-check $image_name $fedora_version $variant)" 94 | if [[ -z ${_images[0]:-} ]]; then 95 | exit 1 96 | fi 97 | image_name="${_images[0]}" 98 | source_image_name="${_images[1]}" 99 | fedora_version="${_images[2]}" 100 | ' 101 | [private] 102 | build-missing := ' 103 | cmd="' + just + ' build ${image_name%-*} $fedora_version $variant" 104 | if ! ' + PODMAN + ' image exists "localhost/$image_name:$fedora_version"; then 105 | echo "' + style('warning') + 'Warning' + NORMAL +': Container Does Not Exist..." >&2 106 | echo "' + style('warning') + 'Will Run' + NORMAL +': ' + style('command') + '$cmd' + NORMAL +'" >&2 107 | seconds=5 108 | while [ $seconds -gt 0 ]; do 109 | printf "\rTime remaining: ' + style('error') + '%d' + NORMAL + ' seconds to cancel" $seconds >&2 110 | sleep 1 111 | (( seconds-- )) 112 | done 113 | echo "" >&2 114 | echo "'+ style('warning') +'Running'+ NORMAL+ ': '+ style('command') +'$cmd'+ NORMAL+ '" >&2 115 | $cmd 116 | fi 117 | ' 118 | [private] 119 | pull-retry := ' 120 | function pull-retry() { 121 | local target="$1" 122 | local retries=3 123 | trap "exit 1" SIGINT 124 | while [ $retries -gt 0 ]; do 125 | ' + PODMAN + ' pull $target && break 126 | (( retries-- )) 127 | done 128 | if ! (( retries )); then 129 | echo "' + style('error') +' Unable to pull ${target/@*/}...' + NORMAL +'" >&2 130 | exit 1 131 | fi 132 | trap - SIGINT 133 | } 134 | ' 135 | 136 | _default: 137 | @{{ just }} --list 138 | 139 | # Run a Container 140 | [group('Container')] 141 | run-container $image_name="" $fedora_version="" $variant="": 142 | #!/usr/bin/bash 143 | set -eou pipefail 144 | 145 | {{ default-inputs }} 146 | {{ get-names }} 147 | {{ build-missing }} 148 | 149 | echo "{{ style('warning') }}Running:{{ NORMAL }} {{ style('command') }}{{ just }} run -it --rm localhost/$image_name:$fedora_version bash {{ NORMAL }}" 150 | {{ PODMAN }} run -it --rm "localhost/$image_name:$fedora_version" bash || exit 0 151 | 152 | # Build a Container 153 | [group('Container')] 154 | build-container $image_name="" $fedora_version="" $variant="" $github="": 155 | #!/usr/bin/bash 156 | set ${SET_X:+-x} -eou pipefail 157 | 158 | {{ default-inputs }} 159 | {{ get-names }} 160 | {{ pull-retry }} 161 | 162 | AKMODS_DIGEST="$(yq -r ".images[] | select(.name == \"akmods-${fedora_version}\") | .digest" {{ image-file }})" 163 | AKMODS_NVIDIA_DIGEST="$(yq -r ".images[] | select(.name == \"akmods-nvidia-open-${fedora_version}\") | .digest" {{ image-file }})" 164 | BASE_IMAGE_DIGEST="$(yq -r ".images[] | select(.name == \"${source_image_name}-${fedora_version}\") | .digest" {{ image-file }})" 165 | 166 | # Verify Source Containers 167 | {{ just }} verify-container "akmods@$AKMODS_DIGEST" 168 | {{ just }} verify-container "akmods-nvidia-open@$AKMODS_NVIDIA_DIGEST" 169 | {{ just }} verify-container "$source_image_name@$BASE_IMAGE_DIGEST" "{{ source_registry }}" "https://gitlab.com/fedora/ostree/ci-test/-/raw/main/quay.io-fedora-ostree-desktops.pub?ref_type=heads" 170 | 171 | # Tags 172 | declare -A gen_tags="($({{ just }} gen-tags $image_name $fedora_version $variant))" 173 | if [[ "${github:-}" =~ pull_request ]]; then 174 | tags=(${gen_tags["COMMIT_TAGS"]}) 175 | else 176 | tags=(${gen_tags["BUILD_TAGS"]}) 177 | fi 178 | TIMESTAMP="${gen_tags["TIMESTAMP"]}" 179 | TAGS=() 180 | for tag in "${tags[@]}"; do 181 | TAGS+=("--tag" "localhost/${image_name}:$tag") 182 | done 183 | 184 | # Labels 185 | VERSION="$fedora_version.$TIMESTAMP" 186 | KERNEL_VERSION="$(skopeo inspect docker://{{ IMAGE_REGISTRY }}/akmods@$AKMODS_DIGEST | jq -r '.Labels["ostree.linux"]')" 187 | LABELS=( 188 | "--label" "org.opencontainers.image.title=${image_name}" 189 | "--label" "org.opencontainers.image.version=${VERSION}" 190 | "--label" "org.opencontainers.image.description=A base Universal Blue ${image_name%-*} image with batteries included" 191 | "--label" "ostree.linux=${KERNEL_VERSION}" 192 | "--label" "io.artifacthub.package.readme-url=https://raw.githubusercontent.com/{{ org }}/{{ repo }}/main/README.md" 193 | "--label" "io.artifacthub.package.logo-url=https://avatars.githubusercontent.com/u/120078124?s=200&v=4" 194 | ) 195 | 196 | BUILD_NVIDIA="N" 197 | if [[ "$variant" =~ nvidia ]]; then 198 | BUILD_NVIDIA="Y" 199 | fi 200 | 201 | # Build Arguments 202 | BUILD_ARGS=( 203 | "--build-arg" "IMAGE_NAME=${image_name%-*}" 204 | "--build-arg" "SOURCE_ORG={{ source_org }}" 205 | "--build-arg" "SOURCE_IMAGE=${source_image_name}" 206 | "--build-arg" "FEDORA_MAJOR_VERSION=$fedora_version" 207 | "--build-arg" "IMAGE_REGISTRY={{ IMAGE_REGISTRY }}" 208 | "--build-arg" "KERNEL_VERSION=$KERNEL_VERSION" 209 | "--build-arg" "BASE_IMAGE_DIGEST=$BASE_IMAGE_DIGEST" 210 | "--build-arg" "AKMODS_DIGEST=$AKMODS_DIGEST" 211 | "--build-arg" "AKMODS_NVIDIA_DIGEST=$AKMODS_NVIDIA_DIGEST" 212 | "--build-arg" "BUILD_NVIDIA=$BUILD_NVIDIA" 213 | ) 214 | 215 | # Pull Images with retry 216 | pull-retry "{{ IMAGE_REGISTRY }}/akmods:main-$fedora_version@$AKMODS_DIGEST" 217 | pull-retry "{{ IMAGE_REGISTRY }}/akmods-nvidia-open:main-$fedora_version@$AKMODS_NVIDIA_DIGEST" 218 | pull-retry "{{ source_registry }}/$source_image_name:$fedora_version@$BASE_IMAGE_DIGEST" 219 | 220 | # Build Image 221 | {{ PODMAN }} build -f Containerfile "${BUILD_ARGS[@]}" "${LABELS[@]}" "${TAGS[@]}" 222 | 223 | # CI Cleanup 224 | if [[ -n "${CI:-}" ]]; then 225 | {{ PODMAN }} rmi -f "{{ IMAGE_REGISTRY }}/akmods:main-$fedora_version@$AKMODS_DIGEST" 226 | {{ PODMAN }} rmi -f "{{ IMAGE_REGISTRY }}/akmods-nvidia-open:main-$fedora_version@$AKMODS_NVIDIA_DIGEST" 227 | {{ PODMAN }} rmi -f "{{ source_registry }}/$source_image_name:$fedora_version@$BASE_IMAGE_DIGEST" 228 | fi 229 | 230 | # Generate Tags 231 | [group('Utility')] 232 | gen-tags $image_name="" $fedora_version="" $variant="": 233 | #!/usr/bin/bash 234 | set ${SET_X:+-x} -eou pipefail 235 | 236 | {{ default-inputs }} 237 | {{ get-names }} 238 | 239 | # Generate Timestamp with incrementing version point 240 | TIMESTAMP="$(date +%Y%m%d)" 241 | LIST_TAGS="$(mktemp)" 242 | while [[ ! -s "$LIST_TAGS" ]]; do 243 | skopeo list-tags docker://{{ IMAGE_REGISTRY }}/$image_name > "$LIST_TAGS" 244 | done 245 | if [[ $(cat "$LIST_TAGS" | jq "any(.Tags[]; contains(\"$fedora_version-$TIMESTAMP\"))") == "true" ]]; then 246 | POINT="1" 247 | while $(cat "$LIST_TAGS" | jq -e "any(.Tags[]; contains(\"$fedora_version-$TIMESTAMP.$POINT\"))") 248 | do 249 | (( POINT++ )) 250 | done 251 | fi 252 | 253 | if [[ -n "${POINT:-}" ]]; then 254 | TIMESTAMP="$TIMESTAMP.$POINT" 255 | fi 256 | 257 | # Add a sha tag for tracking builds during a pull request 258 | SHA_SHORT="$(git rev-parse --short HEAD)" 259 | 260 | # Define Versions 261 | if [[ "$fedora_version" -eq "{{ gts }}" ]]; then 262 | COMMIT_TAGS=("$SHA_SHORT-gts") 263 | BUILD_TAGS=("gts" "gts-$TIMESTAMP") 264 | elif [[ "$fedora_version" -eq "{{ latest }}" ]]; then 265 | COMMIT_TAGS=("$SHA_SHORT-latest") 266 | BUILD_TAGS=("latest" "latest-$TIMESTAMP") 267 | elif [[ "$fedora_version" -eq "{{ beta }}" ]]; then 268 | COMMIT_TAGS=("$SHA_SHORT-beta") 269 | BUILD_TAGS=("beta beta-$TIMESTAMP") 270 | fi 271 | 272 | COMMIT_TAGS+=("$SHA_SHORT-$fedora_version" "$fedora_version") 273 | BUILD_TAGS+=("$fedora_version" "$fedora_version-$TIMESTAMP") 274 | declare -A output 275 | output["BUILD_TAGS"]="${BUILD_TAGS[*]}" 276 | output["COMMIT_TAGS"]="${COMMIT_TAGS[*]}" 277 | output["TIMESTAMP"]="$TIMESTAMP" 278 | echo "${output[@]@K}" 279 | 280 | # Check Valid Image Name 281 | [group('Utility')] 282 | image-name-check $image_name $fedora_version $variant: 283 | #!/usr/bin/bash 284 | set ${SET_X:+-x} -eou pipefail 285 | declare -A images={{ images }} 286 | 287 | if [[ "$image_name" =~ -main$|-nvidia$ ]]; then 288 | image_name="${image_name%-*}" 289 | fi 290 | 291 | source_image_name="${images[$image_name]:-}" 292 | if [[ -z "$source_image_name" ]]; then 293 | echo '{{ style('error') }}Invalid Image Name{{ NORMAL }}' >&2 294 | exit 1 295 | fi 296 | 297 | fedora_version="$({{ just }} fedora-version-check $fedora_version || exit 1)" 298 | variant="$({{ just }} fedora-variant-check $variant || exit 1)" 299 | 300 | echo "($image_name-$variant $source_image_name $fedora_version)" 301 | 302 | # Check Valid Fedora Version 303 | [group('Utility')] 304 | fedora-version-check $fedora_version: 305 | #!/usr/bin/bash 306 | set ${SET_X:+-x} -eou pipefail 307 | declare -A fedora_versions={{ fedora_versions }} 308 | if [[ -z "${fedora_versions[$fedora_version]:-}" ]]; then 309 | echo "{{ style('error') }}Not a supported version{{ NORMAL }}" >&2 310 | exit 1 311 | fi 312 | echo "${fedora_versions[$fedora_version]}" 313 | 314 | # Check Valid Variant 315 | [group('Utility')] 316 | fedora-variant-check $variant: 317 | #!/usr/bin/bash 318 | set ${SET_X:+-x} -eou pipefail 319 | declare -A variants={{ variants }} 320 | if [[ -z "${variants[$variant]:-}" ]]; then 321 | echo "{{ style('error') }}Not a supported variant{{ NORMAL }}" >&2 322 | exit 1 323 | fi 324 | echo "${variants[$variant]}" 325 | 326 | # Check Secureboot 327 | [group('Utility')] 328 | secureboot $image_name $fedora_version $variant: 329 | #!/usr/bin/env bash 330 | set ${SET_X:+-x} -eou pipefail 331 | 332 | {{ get-names }} 333 | 334 | # Get the vmlinuz to check 335 | kernel_release=$({{ PODMAN }} inspect "$image_name":"$fedora_version" | jq -r '.[].Config.Labels["ostree.linux"]') 336 | TMP=$({{ PODMAN }} create "$image_name":"$fedora_version" bash) 337 | {{ PODMAN }} cp "$TMP":/usr/lib/modules/"$kernel_release"/vmlinuz /tmp/vmlinuz 338 | {{ PODMAN }} rm -f "$TMP" 339 | 340 | # Get the Public Certificates 341 | curl --retry 3 -Lo /tmp/kernel-sign.der https://github.com/ublue-os/akmods/raw/main/certs/public_key.der 342 | curl --retry 3 -Lo /tmp/akmods.der https://github.com/ublue-os/akmods/raw/main/certs/public_key_2.der 343 | openssl x509 -in /tmp/kernel-sign.der -out /tmp/kernel-sign.crt 344 | openssl x509 -in /tmp/akmods.der -out /tmp/akmods.crt 345 | 346 | # Make sure we have sbverify 347 | CMD="$(command -v sbverify)" 348 | if [[ -z "${CMD:-}" ]]; then 349 | temp_name="sbverify-${RANDOM}" 350 | {{ PODMAN }} run -dt \ 351 | --entrypoint /bin/sh \ 352 | --volume /tmp/vmlinuz:/tmp/vmlinuz:z \ 353 | --volume /tmp/kernel-sign.crt:/tmp/kernel-sign.crt:z \ 354 | --volume /tmp/akmods.crt:/tmp/akmods.crt:z \ 355 | --name $temp_name \ 356 | alpine:edge 357 | {{ PODMAN }} exec "$temp_name" apk add sbsigntool 358 | CMD="{{ PODMAN }} exec $temp_name /usr/bin/sbverify" 359 | trap "{{ PODMAN }} rm -f $temp_name; exit 1" SIGINT 360 | fi 361 | 362 | # Confirm that Signatures Are Good 363 | $CMD --list /tmp/vmlinuz 364 | returncode=0 365 | if ! $CMD --cert /tmp/kernel-sign.crt /tmp/vmlinuz || ! $CMD --cert /tmp/akmods.crt /tmp/vmlinuz; then 366 | echo '{{ style('error') }}Secureboot Signature Failed...{{ NORMAL }}' >&2 367 | returncode=1 368 | fi 369 | if [[ -n "${temp_name:-}" ]]; then 370 | {{ PODMAN }} rm -f "$temp_name" 371 | if [[ -n "${CI:-}" ]]; then 372 | {{ PODMAN }} rmi -f alpine:edge 373 | fi 374 | fi 375 | exit "$returncode" 376 | 377 | # Check Just Syntax 378 | [group('Just')] 379 | check: 380 | #!/usr/bin/env bash 381 | find . -type f -name "*.just" | while read -r file; do 382 | echo "Checking syntax: $file" >&2 383 | {{ just }} --unstable --fmt --check -f $file 384 | done 385 | echo "Checking syntax: Justfile" >&2 386 | {{ just }} --unstable --fmt --check -f Justfile 387 | 388 | # Fix Just Syntax 389 | [group('Just')] 390 | fix: 391 | #!/usr/bin/env bash 392 | find . -type f -name "*.just" | while read -r file; do 393 | echo "Checking syntax: $file" >&2 394 | {{ just }} --unstable --fmt -f $file 395 | done 396 | echo "Checking syntax: Justfile" >&2 397 | {{ just }} --unstable --fmt -f Justfile || { exit 1; } 398 | 399 | # Verify Container with Cosign 400 | [group('Utility')] 401 | verify-container $container="" $registry="" $key="": 402 | #!/usr/bin/env bash 403 | set ${SET_X:+-x} -eou pipefail 404 | 405 | # ublue-os Public Key for Container Verification default 406 | if [[ -z "${registry:-}" && -z "${key:-}" ]]; then 407 | registry={{ IMAGE_REGISTRY }} 408 | key="https://raw.githubusercontent.com/ublue-os/main/main/cosign.pub" 409 | fi 410 | 411 | # Verify Container using cosign public key 412 | if ! cosign verify --key "$key" "$registry/$container" >/dev/null; then 413 | echo '{{ style('error') }}NOTICE: Verification failed. Please ensure your public key is correct.{{ NORMAL }}' >&2 414 | exit 1 415 | fi 416 | 417 | # Removes all Tags of an image from container storage. 418 | [group('Utility')] 419 | clean $image_name $fedora_version $variant $registry="": 420 | #!/usr/bin/bash 421 | set -eoux pipefail 422 | 423 | : "${registry:=localhost}" 424 | {{ get-names }} 425 | 426 | declare -a CLEAN="($({{ PODMAN }} image list $registry/$image_name --noheading --format 'table {{{{ .ID }}' | uniq))" 427 | if [[ -n "${CLEAN[@]:-}" ]]; then 428 | {{ PODMAN }} rmi -f "${CLEAN[@]}" 429 | fi 430 | 431 | # Get Digest 432 | 433 | # Login to GHCR 434 | [group('CI')] 435 | @login-to-ghcr $user $token: 436 | echo "$token" | {{ PODMAN }} login ghcr.io -u "$user" --password-stdin 437 | echo "$token" | docker login ghcr.io -u "$user" --password-stdin 438 | 439 | # Push Images to Registry 440 | [group('CI')] 441 | push-to-registry $image_name $fedora_version $variant $destination="" $transport="": 442 | #!/usr/bin/bash 443 | set ${SET_X:+-x} -eou pipefail 444 | 445 | {{ get-names }} 446 | {{ build-missing }} 447 | 448 | : "${destination:={{ IMAGE_REGISTRY }}}" 449 | : "${transport:="docker://"}" 450 | 451 | declare -a TAGS="($({{ PODMAN }} image list localhost/$image_name:$fedora_version --noheading --format 'table {{{{ .Tag }}'))" 452 | for tag in "${TAGS[@]}"; do 453 | for i in {1..5}; do 454 | {{ PODMAN }} push "localhost/$image_name:$fedora_version" "$transport$destination/$image_name:$tag" 2>&1 && break || sleep $((5 * i)); 455 | done 456 | done 457 | 458 | # Sign Images with Cosign 459 | [group('CI')] 460 | cosign-sign $image_name $fedora_version $variant $destination="": 461 | #!/usr/bin/bash 462 | set ${SET_X:+-x} -eou pipefail 463 | 464 | {{ get-names }} 465 | {{ build-missing }} 466 | 467 | : "${destination:={{ IMAGE_REGISTRY }}}" 468 | digest="$(skopeo inspect docker://$destination/$image_name:$fedora_version --format '{{{{ .Digest }}')" 469 | cosign sign -y --key env://COSIGN_PRIVATE_KEY "$destination/$image_name@$digest" 470 | 471 | # Generate SBOM 472 | [group('CI')] 473 | gen-sbom $image_name $fedora_version $variant: 474 | #!/usr/bin/bash 475 | set ${SET_X:+-x} -eou pipefail 476 | 477 | {{ get-names }} 478 | {{ build-missing }} 479 | {{ pull-retry }} 480 | 481 | # Get SYFT if needed 482 | SYFT_ID="" 483 | if ! command -v syft >/dev/null; then 484 | pull-retry "docker.io/anchore/syft:latest" 485 | SYFT_ID="$({{ PODMAN }} create docker.io/anchore/syft:latest)" 486 | {{ PODMAN }} cp "$SYFT_ID":/syft /tmp/syft.install 487 | {{ SUDOIF }} cp /tmp/syft.install /usr/local/bin/syft 488 | {{ SUDOIF }} rm -f /tmp/syft.install 489 | {{ PODMAN }} rm -f "$SYFT_ID" > /dev/null 490 | {{ PODMAN }} rmi "docker.io/anchore/syft:latest" 491 | fi 492 | 493 | # Enable Podman Socket if needed 494 | if [[ "$EUID" -eq "0" ]] && ! systemctl is-active -q podman.socket; then 495 | systemctl start podman.socket 496 | started_podman="true" 497 | elif ! systemctl is-active -q --user podman.socket; then 498 | systemctl start --user podman.socket 499 | started_podman="true" 500 | fi 501 | 502 | # Make SBOM 503 | OUTPUT_PATH="$(mktemp -d)/sbom.json" 504 | SYFT_PARALLELISM="$(( $(nproc) * 2 ))" 505 | syft "localhost/$image_name:$fedora_version" -o spdx-json="$OUTPUT_PATH" >&2 506 | 507 | # Cleanup 508 | if [[ "$EUID" -eq "0" && "${started_podman:-}" == "true" ]]; then 509 | systemctl stop podman.socket 510 | elif [[ "${started_podman:-}" == "true" ]]; then 511 | systemctl stop --user podman.socket 512 | fi 513 | 514 | # Output Path 515 | echo "$OUTPUT_PATH" 516 | 517 | # Add SBOM attestation 518 | [group('CI')] 519 | sbom-attest $fedora_version $image_name $variant $destination="" $sbom="" $digest="": 520 | #!/usr/bin/bash 521 | set ${SET_X:+-x} -eou pipefail 522 | 523 | {{ get-names }} 524 | {{ build-missing }} 525 | 526 | : "${destination:={{ IMAGE_REGISTRY }}}" 527 | : "${sbom:=$({{ just }} gen-sbom $fedora_version $image_name)}" 528 | : "${digest:=$({{ PODMAN }} inspect localhost/$image_name:$fedora_version --format '{{ ' {{ .Digest }} ' }}')}" 529 | 530 | # Attest with SBOM 531 | cd "$(dirname $sbom)" && \ 532 | cosign attest -y \ 533 | --predicate ./sbom.json \ 534 | --type spdxjson \ 535 | --key env://COSIGN_PRIVATE_KEY \ 536 | "$destination/$image_name@$digest" 537 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # Changelog 2 | 3 | ## [2.3.0](https://github.com/ublue-os/main/compare/v2.2.0...v2.3.0) (2025-04-16) 4 | 5 | 6 | ### Features 7 | 8 | * add cosmic build ([#788](https://github.com/ublue-os/main/issues/788)) ([4ffd509](https://github.com/ublue-os/main/commit/4ffd509a20887778ddc84d4e400b5a519f0e45b9)) 9 | * bump latest to F42, bump GTS to F41, deprecate F40 ([#785](https://github.com/ublue-os/main/issues/785)) ([e372745](https://github.com/ublue-os/main/commit/e372745281203d32727bad3e6347336640abe556)) 10 | * **ci:** add registry cleanup script ([#680](https://github.com/ublue-os/main/issues/680)) ([1e2bc12](https://github.com/ublue-os/main/commit/1e2bc1205d9807049b5248a105e65eb54e2801cd)) 11 | * Switch to dnf5, F42 ([#766](https://github.com/ublue-os/main/issues/766)) ([a1ba197](https://github.com/ublue-os/main/commit/a1ba1973eaa8415882cb4d2508b6e39c330eb926)) 12 | 13 | 14 | ### Bug Fixes 15 | 16 | * added 42 badge ([#789](https://github.com/ublue-os/main/issues/789)) ([8c0728b](https://github.com/ublue-os/main/commit/8c0728b4638e20b3e76422ee2d888415bef795d1)) 17 | * change just's Chinese readme file name to prevent deploy issues ([#771](https://github.com/ublue-os/main/issues/771)) ([0b98781](https://github.com/ublue-os/main/commit/0b98781bd50baddb8886f8cea2a76cb3b8668812)) 18 | * ensure xorg-x11-xauth package is installed ([#774](https://github.com/ublue-os/main/issues/774)) ([8736d15](https://github.com/ublue-os/main/commit/8736d15a1e934b76cdec03284963139cc83ed38e)) 19 | * **install.sh:** Intel video GPU acceleration ([#775](https://github.com/ublue-os/main/issues/775)) ([3020278](https://github.com/ublue-os/main/commit/3020278bc1485ce11538905498d2c45279429730)) 20 | * **install.sh:** There is no need now to manually remove `mesa-libglapi` ([#751](https://github.com/ublue-os/main/issues/751)) ([7bac3e7](https://github.com/ublue-os/main/commit/7bac3e7bdd83ad50e20fd363c954a56e05e45ad3)) 21 | * mitigate OpenCL packaging error ([#692](https://github.com/ublue-os/main/issues/692)) ([f6f9024](https://github.com/ublue-os/main/commit/f6f90249e419d8b694c660b62cba4d679728a11c)) 22 | * remove dependency on kernel images ([#719](https://github.com/ublue-os/main/issues/719)) ([8e8c72b](https://github.com/ublue-os/main/commit/8e8c72bb33c4f84511cc5ded5214dd80bdb662ae)) 23 | * remove F39 and add F41 build status from README ([#686](https://github.com/ublue-os/main/issues/686)) ([fa108e3](https://github.com/ublue-os/main/commit/fa108e343f1a212ab035756aa0e3df93aeef4790)) 24 | * suffix the Fedora 41 source image names with -atomic for non-sil… ([#702](https://github.com/ublue-os/main/issues/702)) ([a70140c](https://github.com/ublue-os/main/commit/a70140c66d31fe5072275e6cd940c12558f70ec8)) 25 | 26 | ## [2.2.0](https://github.com/ublue-os/main/compare/v2.1.0...v2.2.0) (2024-11-17) 27 | 28 | 29 | ### Features 30 | 31 | * add `wl-clipboard` to all images ([#641](https://github.com/ublue-os/main/issues/641)) ([77e26e6](https://github.com/ublue-os/main/commit/77e26e6e553a1e2466b2cd9d7faecd3d637d5116)) 32 | * Add a beta tag ([#651](https://github.com/ublue-os/main/issues/651)) ([73e6d04](https://github.com/ublue-os/main/commit/73e6d049cd2328cb30754cdbcff0da33d142fc25)) 33 | * Add flatpak-spawn package by default ([#583](https://github.com/ublue-os/main/issues/583)) ([2d8dca6](https://github.com/ublue-os/main/commit/2d8dca6e7d9b54b8637be49a2f0d0d80f3eb0bfc)) 34 | * add fprint and libcamera ([#616](https://github.com/ublue-os/main/issues/616)) ([3b629bb](https://github.com/ublue-os/main/commit/3b629bbfa04e766b82c452d8fcf2e222a451717c)) 35 | * add missing packages to Fedora 41 builds ([#655](https://github.com/ublue-os/main/issues/655)) ([0373f7a](https://github.com/ublue-os/main/commit/0373f7af656c424de31f6141a777d53a00ee1bdd)) 36 | * Add squashfs-tools ([#586](https://github.com/ublue-os/main/issues/586)) ([0afd8cf](https://github.com/ublue-os/main/commit/0afd8cf0caf9f4109bf10e12fae0ab0795e6ac3b)) 37 | * add yubikey-manager ([#630](https://github.com/ublue-os/main/issues/630)) ([7d01b96](https://github.com/ublue-os/main/commit/7d01b9670091a301ecfbf094cdb250f4f14400f3)) 38 | * **ci:** honor `IMAGE_REGISTRY` in Containerfile ([#607](https://github.com/ublue-os/main/issues/607)) ([3107f29](https://github.com/ublue-os/main/commit/3107f29c9abce745648c1236e8fd5f6e2e7f9739)) 39 | * create emeritus.md ([#621](https://github.com/ublue-os/main/issues/621)) ([f2e0055](https://github.com/ublue-os/main/commit/f2e005523f981dc08166e3eec1b2ba6ff16024fd)) 40 | * **dev:** add justfile for local testing and integration with vscode ([#578](https://github.com/ublue-os/main/issues/578)) ([7e07358](https://github.com/ublue-os/main/commit/7e073587cee57db4d77ca7677cf80d07f5bc0583)) 41 | * enable Fedora 41 builds ([#638](https://github.com/ublue-os/main/issues/638)) ([f959353](https://github.com/ublue-os/main/commit/f9593536d60d2de93a55084ace11501552ae5bb1)) 42 | * Improve Containerfile / enable workflow usage of containerized buildah (tag: v1) ([#604](https://github.com/ublue-os/main/issues/604)) ([85d2bd8](https://github.com/ublue-os/main/commit/85d2bd8333851b4d6797f385e813d630643c16b4)) 43 | * Remove lchsh ([#637](https://github.com/ublue-os/main/issues/637)) ([2e5e007](https://github.com/ublue-os/main/commit/2e5e007a3310df664822a47b4689f629786c81d7)) 44 | * Replace gnome-software with non-dkms version on F41 and above. ([#671](https://github.com/ublue-os/main/issues/671)) ([90054b9](https://github.com/ublue-os/main/commit/90054b90907a9e403ea626e637ca367f78694cc3)) 45 | * set dracut zstd compression for initramfs regen ([#595](https://github.com/ublue-os/main/issues/595)) ([ea43f00](https://github.com/ublue-os/main/commit/ea43f00fd0fb4c3c4379d71fd30e00522df0fa4a)) 46 | * Sign kernel with our akmods key ([#588](https://github.com/ublue-os/main/issues/588)) ([e72d5af](https://github.com/ublue-os/main/commit/e72d5afc246e45530bf9c56c1605c66ed1d11f11)) 47 | * Stop supporting chsh ([#624](https://github.com/ublue-os/main/issues/624)) ([1298125](https://github.com/ublue-os/main/commit/12981252b81966813927744ae5f39ef6ceb53283)) 48 | * Update tags for F41 Release ([#657](https://github.com/ublue-os/main/issues/657)) ([a411c6a](https://github.com/ublue-os/main/commit/a411c6aba3ad035de588c9c5daf3f288e269a405)) 49 | * use cached kernel ([#605](https://github.com/ublue-os/main/issues/605)) ([a7af108](https://github.com/ublue-os/main/commit/a7af108a27d454cc699fb0ee955892ded65a8506)) 50 | * use negativo17 in lieu of rpmfusion ([#636](https://github.com/ublue-os/main/issues/636)) ([3dd8884](https://github.com/ublue-os/main/commit/3dd8884f8de176fb3fe53e5f96e85c176f94c56a)) 51 | 52 | 53 | ### Bug Fixes 54 | 55 | * bug in negativo prioritization command ([#649](https://github.com/ublue-os/main/issues/649)) ([5006127](https://github.com/ublue-os/main/commit/500612786d72f0377fe075138c8269332c08a938)) 56 | * **ci:** Don't sign kernel on PR ([#590](https://github.com/ublue-os/main/issues/590)) ([a7dfe88](https://github.com/ublue-os/main/commit/a7dfe88f71b6db1fa540fdd5901cf2bee22e1ea9)) 57 | * Correct rpm-ostree issue that prevents rollbacks ([#635](https://github.com/ublue-os/main/issues/635)) ([2a37660](https://github.com/ublue-os/main/commit/2a376609a5bd3227a982952bd173dc2f767c7d1e)) 58 | * github release install silently fails if no urls found ([#571](https://github.com/ublue-os/main/issues/571)) ([4561ed4](https://github.com/ublue-os/main/commit/4561ed4858e9a7ad131e7ea2e051ea1a690cff82)) 59 | * handle new F41 selinux policies for sulogin-generator ([#654](https://github.com/ublue-os/main/issues/654)) ([55a4433](https://github.com/ublue-os/main/commit/55a4433ebf7458f69c791dc69cff32d522afdfd0)) 60 | * Include fuse package for AppImage support ([#631](https://github.com/ublue-os/main/issues/631)) ([8b9725b](https://github.com/ublue-os/main/commit/8b9725b2caa79f1484dfaf2a83a60b2ccc1b03fa)) 61 | * **kinoite:** Include missing KDE image format codecs ([#660](https://github.com/ublue-os/main/issues/660)) ([147b76b](https://github.com/ublue-os/main/commit/147b76b112cae7f624a66752ceb26c6733855174)) 62 | * Override copr plugin config to use fedora chroot by default ([#663](https://github.com/ublue-os/main/issues/663)) ([12829ea](https://github.com/ublue-os/main/commit/12829ea1b846497085a38342af8a3821efff6102)) 63 | * Override copr plugin config to use fedora chroot by default (resubmission) ([#665](https://github.com/ublue-os/main/issues/665)) ([99b6864](https://github.com/ublue-os/main/commit/99b6864790c6605c652f591003bccefe605fae63)) 64 | * reduce gap between upstream builds and ublue builds ([#589](https://github.com/ublue-os/main/issues/589)) ([897a07b](https://github.com/ublue-os/main/commit/897a07b0a7a8df226197631b69af1d2999ca4302)) 65 | * remove ffmpeg-free from all images ([#582](https://github.com/ublue-os/main/issues/582)) ([9f5b4e7](https://github.com/ublue-os/main/commit/9f5b4e74add8c053402e99a99fa37fe7f20b978e)) 66 | * remove mate images ([#639](https://github.com/ublue-os/main/issues/639)) ([39bd13d](https://github.com/ublue-os/main/commit/39bd13db95a317080c06f4ca7813b2a8c24f72ee)) 67 | * Remove no longer needed rpm-ostree override ([#640](https://github.com/ublue-os/main/issues/640)) ([da4f78f](https://github.com/ublue-os/main/commit/da4f78fc304f33f0dcb87086e056dfb8ecd7a69d)) 68 | * remove redundant and less performant thumbnailer ([#659](https://github.com/ublue-os/main/issues/659)) ([77e6b44](https://github.com/ublue-os/main/commit/77e6b443f6a6023582ef964e36fa7fd1c158033c)) 69 | 70 | ## [2.1.0](https://github.com/ublue-os/main/compare/v2.0.0...v2.1.0) (2024-05-07) 71 | 72 | 73 | ### Features 74 | 75 | * Add Gnome EPUB files thumbnailing support ([#457](https://github.com/ublue-os/main/issues/457)) ([1c73f37](https://github.com/ublue-os/main/commit/1c73f37c8cf56adc8eb2260e9272f4546da006b8)) 76 | * Add powerstat for laptops & handhelds ([#567](https://github.com/ublue-os/main/issues/567)) ([aec2dd0](https://github.com/ublue-os/main/commit/aec2dd03bbd6a940580870f8552e5c9821c52abc)) 77 | * Adding gvfs-nfs package to silverblue image. ([#480](https://github.com/ublue-os/main/issues/480)) ([c4b4cc7](https://github.com/ublue-os/main/commit/c4b4cc737a3585182a0a537acf292386dae7c664)) 78 | * allow rescue/emergency boot with grub cmdline args ([#488](https://github.com/ublue-os/main/issues/488)) ([c2ad2bf](https://github.com/ublue-os/main/commit/c2ad2bfe1d1642afeb1c2959e2630a16fb5ecd43)) 79 | * bump Fedora 40 to latest and Fedora 39 to stable ([#563](https://github.com/ublue-os/main/issues/563)) ([d3289e9](https://github.com/ublue-os/main/commit/d3289e95417f546c02a7690a31092d6cbb556ae4)) 80 | * drop v4l2loopback from kmods since it fails to build on 6.8 ([#549](https://github.com/ublue-os/main/issues/549)) ([6c3ddf2](https://github.com/ublue-os/main/commit/6c3ddf2088106b997bd5532d29a735b9bca4dfb3)) 81 | * enable preview of Fedora 40 main builds ([#521](https://github.com/ublue-os/main/issues/521)) ([72e1f64](https://github.com/ublue-os/main/commit/72e1f644ee34e024b1c814b90cab7df241980a53)) 82 | * Fedora 37 is EOL 2023-12-05 ([#442](https://github.com/ublue-os/main/issues/442)) ([e84e7d8](https://github.com/ublue-os/main/commit/e84e7d885b0d9b1da452187e0c92805883cf5a85)) 83 | * leverage retry-action to increase reliability of builds. ([#503](https://github.com/ublue-os/main/issues/503)) ([4dda9bc](https://github.com/ublue-os/main/commit/4dda9bc864b3fcc807e85b6fab952d1fce9540ae)) 84 | * **sericea:** Android support packages for Thunar ([#515](https://github.com/ublue-os/main/issues/515)) ([bd83f3c](https://github.com/ublue-os/main/commit/bd83f3c412ecc800d6f933c7098a988ae02ad3da)) 85 | 86 | 87 | ### Bug Fixes 88 | 89 | * add gitattributes file to fix linguist ([#520](https://github.com/ublue-os/main/issues/520)) ([70fa994](https://github.com/ublue-os/main/commit/70fa994232df0d0c1449ac941b8b6a6703c1783c)) 90 | * add lazurite to the build matrix ([#458](https://github.com/ublue-os/main/issues/458)) ([201844d](https://github.com/ublue-os/main/commit/201844de237c3093d0dbff0985203130635c9371)) 91 | * add mesa-filesystem package ([#455](https://github.com/ublue-os/main/issues/455)) ([b226fe4](https://github.com/ublue-os/main/commit/b226fe40c31e48f6cd9ed32c4766839b551b95e8)) 92 | * add ublue-sulogin-generatore to image ([#511](https://github.com/ublue-os/main/issues/511)) ([d794f4b](https://github.com/ublue-os/main/commit/d794f4b8b03d32a09d1d850e34e9ae3bb9a00afb)) 93 | * **ci:** never skip successful builds check ([#436](https://github.com/ublue-os/main/issues/436)) ([d7f2918](https://github.com/ublue-os/main/commit/d7f29187ef253beb097bb88d7337c61c9db4d44d)) 94 | * Correct upstream podman issue ([#438](https://github.com/ublue-os/main/issues/438)) ([bfee8ab](https://github.com/ublue-os/main/commit/bfee8abfc16348fb4efde971df4351e7268346d7)) 95 | * Drop wget for curl ([e4f13ae](https://github.com/ublue-os/main/commit/e4f13aed195c41f00458d3e56d4cf1f9d4c08b38)) 96 | * enable boot to tty for base image ([#424](https://github.com/ublue-os/main/issues/424)) ([82ccb30](https://github.com/ublue-os/main/commit/82ccb3090864279453a7871c236402715b10be03)) 97 | * Enforce 64-bit version of mesa-va-drivers-freeworld ([#474](https://github.com/ublue-os/main/issues/474)) ([472ed8a](https://github.com/ublue-os/main/commit/472ed8a9f342f31d66b9327d921c780052569fe6)) 98 | * **f39:** Restore cjk fonts ([#417](https://github.com/ublue-os/main/issues/417)) ([3b3358e](https://github.com/ublue-os/main/commit/3b3358ea0aabdd04539bae95668249a3a21f94e6)) 99 | * remove lxqt 39 as lazurite replaced it ([#467](https://github.com/ublue-os/main/issues/467)) ([cb54f2c](https://github.com/ublue-os/main/commit/cb54f2c85b07e6a51dcfc6e2fd38fd6eb6647de1)) 100 | * remove podman-compose ([#432](https://github.com/ublue-os/main/issues/432)) ([2d7b47b](https://github.com/ublue-os/main/commit/2d7b47b84e7153058a0cc72050ab97b84bb08436)) 101 | * remove vestigial isogenerator ([#531](https://github.com/ublue-os/main/issues/531)) ([462bd7a](https://github.com/ublue-os/main/commit/462bd7a4b2e3cb61077288d0fa4041f8ab99126e)) 102 | * switch to distro bootc for F38 and F39 ([#426](https://github.com/ublue-os/main/issues/426)) ([2bc3101](https://github.com/ublue-os/main/commit/2bc3101c1a1bdffd45e2b0022e1946c10e175de4)) 103 | 104 | ## [1.11.0](https://github.com/ublue-os/main/compare/v1.10.0...v1.11.0) (2023-11-08) 105 | 106 | 107 | ### Features 108 | 109 | * Add PAM modules for YubiKey support ([#397](https://github.com/ublue-os/main/issues/397)) ([49b02bd](https://github.com/ublue-os/main/commit/49b02bd9e5373401da8204e915bce6691af43e35)) 110 | * Exclude kmods from Fedora 39 and future images ([#375](https://github.com/ublue-os/main/issues/375)) ([4bec2a4](https://github.com/ublue-os/main/commit/4bec2a4283f17c8a2e3e0dfe4617e9bd23d90560)) 111 | * **f39:** Use official images for Silverblue, Kinoite, and Sericea ([#407](https://github.com/ublue-os/main/issues/407)) ([5062628](https://github.com/ublue-os/main/commit/50626281e7cb2a31e5c1f5829f8540df487a8ddd)) 112 | * Mark Fedora 39 images as stable and roll out gts ([#391](https://github.com/ublue-os/main/issues/391)) ([ff78ed2](https://github.com/ublue-os/main/commit/ff78ed26295d0a8d1ad2d9fd5d607bae7fd3cf7e)) 113 | * re-add libheif-freeworld ([#408](https://github.com/ublue-os/main/issues/408)) ([cb0dd8f](https://github.com/ublue-os/main/commit/cb0dd8fc02413958df31b3d6d29ce79e905a48a9)) 114 | * turn on F39 for vauxite ([#392](https://github.com/ublue-os/main/issues/392)) ([3db7257](https://github.com/ublue-os/main/commit/3db725760df890225b581c81164eb83605c85f6b)) 115 | 116 | 117 | ### Bug Fixes 118 | 119 | * **f39:** temp: Install pipewire from testing ([#396](https://github.com/ublue-os/main/issues/396)) ([b4d73c1](https://github.com/ublue-os/main/commit/b4d73c1eb5e0ff6e740e543ac68c1e0530e194e0)) 120 | * stop excluding kwrite ([#401](https://github.com/ublue-os/main/issues/401)) ([b866e6e](https://github.com/ublue-os/main/commit/b866e6e538d01c1847694fcaebecec5a16dec2a3)) 121 | * Target Fedora 40 for official images, revert 39 to ci-test ([#410](https://github.com/ublue-os/main/issues/410)) ([bfd786e](https://github.com/ublue-os/main/commit/bfd786e8988faa374438d632fa1e34282a59a067)) 122 | 123 | ## [1.10.0](https://github.com/ublue-os/main/compare/v1.9.0...v1.10.0) (2023-10-11) 124 | 125 | 126 | ### Features 127 | 128 | * add a bootc snapshot ([#367](https://github.com/ublue-os/main/issues/367)) ([b9b3095](https://github.com/ublue-os/main/commit/b9b3095925e76a9bded365b8419634ef003790cb)) 129 | * add cosign ([#308](https://github.com/ublue-os/main/issues/308)) ([4ba7efd](https://github.com/ublue-os/main/commit/4ba7efd440efd31b83c81b9fd88e5a99f1322763)) 130 | * Add OpenRazer kmod ([#340](https://github.com/ublue-os/main/issues/340)) ([76a95c6](https://github.com/ublue-os/main/commit/76a95c6e706b57d49c711a983b13cfe8419b211f)) 131 | * Add udev rules for android phones ([#362](https://github.com/ublue-os/main/issues/362)) ([6e7ac65](https://github.com/ublue-os/main/commit/6e7ac653f5c361b4a023bd47e5297b9d0b8df603)) 132 | * Add udev rules for Logitech steering wheels ([#366](https://github.com/ublue-os/main/issues/366)) ([03ccff2](https://github.com/ublue-os/main/commit/03ccff21751ce74e51d41a41dce6e2b794d81e67)) 133 | * Add udev rules for Solaar ([#349](https://github.com/ublue-os/main/issues/349)) ([913a9e5](https://github.com/ublue-os/main/commit/913a9e5707fe80d3b714bbaa6ecc944265cea69e)) 134 | * Add WL driver by default (Disabled by default) ([#350](https://github.com/ublue-os/main/issues/350)) ([f1a0e1c](https://github.com/ublue-os/main/commit/f1a0e1cb2b38cf8f408adc658c1285da751735b4)) 135 | * Add xone and xpad-noone drivers ([#314](https://github.com/ublue-os/main/issues/314)) ([940a231](https://github.com/ublue-os/main/commit/940a231bcd9418db3c2a4e1f4f150ed265647ad4)) 136 | * build nvidia images in main repo ([#319](https://github.com/ublue-os/main/issues/319)) ([40e6c5d](https://github.com/ublue-os/main/commit/40e6c5d1facb90b3d5340f113ae3a52f169bd1ac)) 137 | * enable fedora 39 builds ([#301](https://github.com/ublue-os/main/issues/301)) ([67d4669](https://github.com/ublue-os/main/commit/67d466928fd28398fef7d9d574273756f28293bd)) 138 | * enable onyx builds ([#348](https://github.com/ublue-os/main/issues/348)) ([ec3e1c2](https://github.com/ublue-os/main/commit/ec3e1c211afb8aae0fe849cf579c2c50bf3bed4c)) 139 | * Generate image info ([75e26c9](https://github.com/ublue-os/main/commit/75e26c93540cfe2b46aad2d3a3af12e7fc23d783)) 140 | * re-add xwaylandvideobridge ([#352](https://github.com/ublue-os/main/issues/352)) ([df4e369](https://github.com/ublue-os/main/commit/df4e36912cb2fd19702a139247886e41224c6877)) 141 | * remove google-noto-sans-cjk-vf-fonts and replace it with google-noto-sans-cjk-fonts ([#334](https://github.com/ublue-os/main/issues/334)) ([50541f2](https://github.com/ublue-os/main/commit/50541f2d77c7208dd7b18d5e3947f6bac6c267c1)) 142 | * restore libheif-freeworld for F37-F38 ([#354](https://github.com/ublue-os/main/issues/354)) ([bd53a9a](https://github.com/ublue-os/main/commit/bd53a9a4914b8bec099529ac5378e8fcfbe4e93f)) 143 | 144 | 145 | ### Bug Fixes 146 | 147 | * add missing blacklist for wl modprobe config ([#355](https://github.com/ublue-os/main/issues/355)) ([7972f3c](https://github.com/ublue-os/main/commit/7972f3c4a04d34da9027944b19b0e3f147b6b1b8)) 148 | * add workaround for podman/crun regression ([#335](https://github.com/ublue-os/main/issues/335)) ([d23273c](https://github.com/ublue-os/main/commit/d23273cf484a9627df7862dfcd31d33dd8e6b4f6)) 149 | * **nvidia-32bit:** Append release to packages ([#338](https://github.com/ublue-os/main/issues/338)) ([d94c197](https://github.com/ublue-os/main/commit/d94c197ce2932162840358ac6a4416ce05d1d651)) 150 | * **nvidia-32bit:** Correct package name ([#339](https://github.com/ublue-os/main/issues/339)) ([dc380d4](https://github.com/ublue-os/main/commit/dc380d4b8594d565a83418ffa351c075cd93cccc)) 151 | * **nvidia:** Install 32 bit driver libraries ([#336](https://github.com/ublue-os/main/issues/336)) ([ed724e0](https://github.com/ublue-os/main/commit/ed724e0b5a3d1fddd1e7627e779395aa144d0c74)) 152 | * re-remove libheif-freeworld for F37-F38 ([#358](https://github.com/ublue-os/main/issues/358)) ([ec73435](https://github.com/ublue-os/main/commit/ec7343533a91d4acdb95316e4cdd15d472c371ce)) 153 | * remove extra 'tags' line from cosign ([#321](https://github.com/ublue-os/main/issues/321)) ([36fcf22](https://github.com/ublue-os/main/commit/36fcf22bc0b1bcfda66f6fdfec21d95923bb5f6f)) 154 | * remove libheif-freeworld from packages to fix build ([#332](https://github.com/ublue-os/main/issues/332)) ([9cb853b](https://github.com/ublue-os/main/commit/9cb853bfe535426a9113f32f972f3ae7b210db32)) 155 | * switch back to free builders to fix skopeo inspect issue ([#322](https://github.com/ublue-os/main/issues/322)) ([1cfad9e](https://github.com/ublue-os/main/commit/1cfad9e1f728707f65864125959126dadfe3ab29)) 156 | * use new akmods:main-RELEASE tag structure ([#372](https://github.com/ublue-os/main/issues/372)) ([86149a1](https://github.com/ublue-os/main/commit/86149a1f8b9b396091a5ebad142fc936997cbc0f)) 157 | * use raw output from jq to install cosign again ([#312](https://github.com/ublue-os/main/issues/312)) ([9b12fd5](https://github.com/ublue-os/main/commit/9b12fd58401c9118ca24c6de5d79076455d5ad93)) 158 | 159 | ## [1.9.0](https://github.com/ublue-os/main/compare/v1.8.0...v1.9.0) (2023-08-16) 160 | 161 | 162 | ### Features 163 | 164 | * add `lshw` (issue [#225](https://github.com/ublue-os/main/issues/225)) ([#230](https://github.com/ublue-os/main/issues/230)) ([5501e3c](https://github.com/ublue-os/main/commit/5501e3c008aaed027c2bbfc25c3a952a2500db4d)) 165 | * add adw-gtk3-theme for Silverblue ([#204](https://github.com/ublue-os/main/issues/204)) ([3aa1345](https://github.com/ublue-os/main/commit/3aa1345d46507a4158ff7df29cbb92b186c89b4b)) 166 | * Add alsa-firmware package needed for some sound cards ([#270](https://github.com/ublue-os/main/issues/270)) ([0eb781b](https://github.com/ublue-os/main/commit/0eb781b117f90437ab68eeee442bdffbf0d966b0)) 167 | * add apr and apr-util ([#92](https://github.com/ublue-os/main/issues/92)) ([ade520f](https://github.com/ublue-os/main/commit/ade520f7e50a12b40672b50b184fba6a41e2d002)) 168 | * add cinnamon image to iso ([#237](https://github.com/ublue-os/main/issues/237)) ([d6d98a2](https://github.com/ublue-os/main/commit/d6d98a238a2d6f9702d428de5ef94011df6a4a3e)) 169 | * add clipman for sericea ([#273](https://github.com/ublue-os/main/issues/273)) ([09c59b5](https://github.com/ublue-os/main/commit/09c59b5ec03c49d8c34f8344d87e5ddbdca8e217)) 170 | * Add disk management cli tools ([#52](https://github.com/ublue-os/main/issues/52)) ([277e1fe](https://github.com/ublue-os/main/commit/277e1fe0260a22ec76bf9ca45b226144bc1433ff)) 171 | * add distrobox, just, and gnome-tweaks ([#17](https://github.com/ublue-os/main/issues/17)) ([15f17ee](https://github.com/ublue-os/main/commit/15f17ee7b779b5331e99a08701b629f53906c050)) 172 | * add ffmpegthumbnailer ([#49](https://github.com/ublue-os/main/issues/49)) ([699588c](https://github.com/ublue-os/main/commit/699588cf94a18060835c458452c6a828a6ad7435)) 173 | * add fzf for better just support ([#84](https://github.com/ublue-os/main/issues/84)) ([3f9d939](https://github.com/ublue-os/main/commit/3f9d9398ca7b1754234ef06111b66037b2f3531b)) 174 | * Add htop package ([#82](https://github.com/ublue-os/main/issues/82)) ([af2b3cf](https://github.com/ublue-os/main/commit/af2b3cfd1f3d8a0e52c03166a553d5f33e156638)) 175 | * add intel-media-driver ([#98](https://github.com/ublue-os/main/issues/98)) ([9d7f2e2](https://github.com/ublue-os/main/commit/9d7f2e26d39d90eaf38449f8a7bcfda97142f7b3)) 176 | * Add kernel-devel package ([#16](https://github.com/ublue-os/main/issues/16)) ([7e31134](https://github.com/ublue-os/main/commit/7e311342aa80e20ad2c4762b033a6b714a5ae334)) 177 | * add kernel-tools ([#208](https://github.com/ublue-os/main/issues/208)) ([b2d0b07](https://github.com/ublue-os/main/commit/b2d0b0795067de0630ef4f64a3471dda5d33e5d9)) 178 | * add libheif-freeworld & heif-pixbuf-loader ([#255](https://github.com/ublue-os/main/issues/255)) ([5f21453](https://github.com/ublue-os/main/commit/5f2145300d11d2c844ce73df13f6a53520655c6e)) 179 | * Add libheif-tools ([#253](https://github.com/ublue-os/main/issues/253)) ([8703dc8](https://github.com/ublue-os/main/commit/8703dc8c3ab6c63237e2e3d948796d7e3fe67919)) 180 | * Add lxqt image ([#47](https://github.com/ublue-os/main/issues/47)) ([2a9eddc](https://github.com/ublue-os/main/commit/2a9eddc4bf67f34763a8c2e3f53642613a228afa)) 181 | * Add mate-desktop packages ([#53](https://github.com/ublue-os/main/issues/53)) ([96cf250](https://github.com/ublue-os/main/commit/96cf250141d9ea737a3956f0955a20ad813619ed)) 182 | * add openrgb udev rules ([#197](https://github.com/ublue-os/main/issues/197)) ([a95ec2d](https://github.com/ublue-os/main/commit/a95ec2d42e059eb3595f31b5c1bc8251e1cb0662)) 183 | * add package request template ([#3](https://github.com/ublue-os/main/issues/3)) ([9ee86e8](https://github.com/ublue-os/main/commit/9ee86e80c622aef297a7770dc7ec4a02c87affa6)) 184 | * add podman-compose ([#180](https://github.com/ublue-os/main/issues/180)) ([4eea999](https://github.com/ublue-os/main/commit/4eea999b5771d438e819735b9f000b9d0b4ef27c)) 185 | * add post-install script for finalizing configurations ([#30](https://github.com/ublue-os/main/issues/30)) ([828d712](https://github.com/ublue-os/main/commit/828d71209ee612ccc6373ba76982f63b268d07dc)) 186 | * Add release package group configuration support ([#15](https://github.com/ublue-os/main/issues/15)) ([5d33e5e](https://github.com/ublue-os/main/commit/5d33e5e235b26ff56bcf7db7319d5b1d1acadac4)) 187 | * add repography ([#66](https://github.com/ublue-os/main/issues/66)) ([95d2e62](https://github.com/ublue-os/main/commit/95d2e62e2e90d7a5f5f76569678e522441e7972f)) 188 | * Add RPMs from ublue-os/config ([#22](https://github.com/ublue-os/main/issues/22)) ([ea9dd75](https://github.com/ublue-os/main/commit/ea9dd75d7ef8be10afb33a94e1d391a2dcde8bba)) 189 | * add some indonesian fonts ([#248](https://github.com/ublue-os/main/issues/248)) ([abfc70d](https://github.com/ublue-os/main/commit/abfc70d21cc9ea97b839564fe959587e0dbb7fef)) 190 | * add tmux ([#190](https://github.com/ublue-os/main/issues/190)) ([c5491b9](https://github.com/ublue-os/main/commit/c5491b9a903be6eb5311e01c9dbefc638c3567d9)) 191 | * add tumbler for thumbnails on sericea ([#56](https://github.com/ublue-os/main/issues/56)) ([07b2736](https://github.com/ublue-os/main/commit/07b2736f03f3b054eebb01ce1f2d668d5284e7bf)) 192 | * Add vim, openssl, and pipewire-codec-aptx ([#31](https://github.com/ublue-os/main/issues/31)) ([e1f77e7](https://github.com/ublue-os/main/commit/e1f77e79b99150fff55cd07190f608f7ddd48e5d)) 193 | * add wireguard-tools ([#241](https://github.com/ublue-os/main/issues/241)) ([44cb522](https://github.com/ublue-os/main/commit/44cb522091433b2e1e4a84f4bdac4ea592e353b0)) 194 | * add xfce4-clipman-plugin to vauxite ([#182](https://github.com/ublue-os/main/issues/182)) ([5a7a820](https://github.com/ublue-os/main/commit/5a7a820180dd878b9be8bc2729ba3c51c2e3594d)) 195 | * add xwaylandvideobridge ([#232](https://github.com/ublue-os/main/issues/232)) ([ef29a6b](https://github.com/ublue-os/main/commit/ef29a6bbfc4edd28bebef63994f8a6ab922818a1)) 196 | * add zstd ([#63](https://github.com/ublue-os/main/issues/63)) ([4307b8b](https://github.com/ublue-os/main/commit/4307b8bc3fe6f087c0251f0e7105ac173035baac)) 197 | * align packagelist with fedora workstation ([#235](https://github.com/ublue-os/main/issues/235)) ([fe48ba8](https://github.com/ublue-os/main/commit/fe48ba84a061ef193285830f72c95d3f71c7a496)) 198 | * enable mesa-va-drivers-freeworld for all Fedora releases ([#67](https://github.com/ublue-os/main/issues/67)) ([7265922](https://github.com/ublue-os/main/commit/7265922d0a781c396f334582df7a1b04f3a2a32b)) 199 | * enable ublue-os akmods ([#234](https://github.com/ublue-os/main/issues/234)) ([df93c4f](https://github.com/ublue-os/main/commit/df93c4f17fe4262dad7e59233097513c734cc007)) 200 | * Fix inconsistent thumbnails across images ([#262](https://github.com/ublue-os/main/issues/262)) ([3fc9c69](https://github.com/ublue-os/main/commit/3fc9c69b7c3d4f8571eebc0788a1a7015e5bdfe0)) 201 | * generate stripped-down base image variants ([ee1d4d4](https://github.com/ublue-os/main/commit/ee1d4d432b0bcd620894412fa30daf9a556bf8b4)) 202 | * Include libratbag ([#139](https://github.com/ublue-os/main/issues/139)) ([4dcd439](https://github.com/ublue-os/main/commit/4dcd439c4b0a07c9ed96d6dd96d8a997a092b5b4)) 203 | * install libva, and nvtop ([#19](https://github.com/ublue-os/main/issues/19)) ([7e3c54a](https://github.com/ublue-os/main/commit/7e3c54a7a5810e20f53998a432c9d45be38cba78)) 204 | * KDE QoL additions ([#259](https://github.com/ublue-os/main/issues/259)) ([a2a561e](https://github.com/ublue-os/main/commit/a2a561e57ace78d975e33c07232e21d50e79df45)) 205 | * move to a unified ISO for all images ([#109](https://github.com/ublue-os/main/issues/109)) ([9c52e30](https://github.com/ublue-os/main/commit/9c52e302741968a0d290a70fb863464bd41fa970)) 206 | * new akmods build process ([#87](https://github.com/ublue-os/main/issues/87)) ([f0503ff](https://github.com/ublue-os/main/commit/f0503ffd4ac769e9c38f58adc274e35af9edf50f)) 207 | * promote ISO to F38 GA ([#156](https://github.com/ublue-os/main/issues/156)) ([4968d34](https://github.com/ublue-os/main/commit/4968d34aef7a9e4a6c55bfee1e2e2eb8d095e6c1)) 208 | * remove xwaylandvideobridge ([#284](https://github.com/ublue-os/main/issues/284)) ([477e15a](https://github.com/ublue-os/main/commit/477e15a26fd0aaf8c75d8ceca90175457a9e256b)) 209 | * swap mesa-va-drivers and add ffmpeg for F37 ([#21](https://github.com/ublue-os/main/issues/21)) ([79ede2c](https://github.com/ublue-os/main/commit/79ede2ca5028187e29ee7e5c83275b0eff20e55e)) 210 | * switch the latest tag to F38 ([#177](https://github.com/ublue-os/main/issues/177)) ([9aca46a](https://github.com/ublue-os/main/commit/9aca46a742d9128e9b22bfbc5e380f5394ee269a)) 211 | * use custom repos provided by akmods ([#236](https://github.com/ublue-os/main/issues/236)) ([efe5364](https://github.com/ublue-os/main/commit/efe53640acc871ed2d60903774577e8a5565672c)) 212 | * use tagged release for isogenerator ([#155](https://github.com/ublue-os/main/issues/155)) ([f7d05b4](https://github.com/ublue-os/main/commit/f7d05b4f58096fa87df920523390cfe51774cdee)) 213 | * **vauxite:** add xfce4-whiskermenu-plugin ([#293](https://github.com/ublue-os/main/issues/293)) ([ca58833](https://github.com/ublue-os/main/commit/ca588333009d01e40a41d94b6a64dff87490c106)) 214 | 215 | 216 | ### Bug Fixes 217 | 218 | * add usage instructions ([#40](https://github.com/ublue-os/main/issues/40)) ([3c1db1e](https://github.com/ublue-os/main/commit/3c1db1ed5965b3f1547c3cf5f560273cfa0332e3)) 219 | * also build the image variant with the correct name ([#12](https://github.com/ublue-os/main/issues/12)) ([a5fde3b](https://github.com/ublue-os/main/commit/a5fde3b9edb2ad3c04e0af25b4f2e3a5c1ebadc4)) 220 | * Be selective in which kmods are brought into main. ([#278](https://github.com/ublue-os/main/issues/278)) ([aac58b0](https://github.com/ublue-os/main/commit/aac58b0480d8c8a0a44aae1882e2288547a0fde1)) 221 | * bump isogenerator dep and regen ISOs ([#222](https://github.com/ublue-os/main/issues/222)) ([b3d690b](https://github.com/ublue-os/main/commit/b3d690b338e32d28210e00112973e15797cf6749)) 222 | * bump isogenerator to 1.2.0 ([#167](https://github.com/ublue-os/main/issues/167)) ([2a46e49](https://github.com/ublue-os/main/commit/2a46e49765fea7683278f74e1d2eb6fe2b3b9ff4)) 223 | * delete changelog to unstick release-please action ([#100](https://github.com/ublue-os/main/issues/100)) ([6dc1d80](https://github.com/ublue-os/main/commit/6dc1d808d8cdb33e912926a587c843b3a9d9c993)) 224 | * image name and description variable interpolation ([#37](https://github.com/ublue-os/main/issues/37)) ([7f922c9](https://github.com/ublue-os/main/commit/7f922c9343878ceb9a09bba0126ed55e19edc23a)) 225 | * keep IMAGE_NAME and set it once ([#13](https://github.com/ublue-os/main/issues/13)) ([85b152e](https://github.com/ublue-os/main/commit/85b152ec097f3be9b15a87b39bffa7ba022ba968)) 226 | * kick off an iso build ([#114](https://github.com/ublue-os/main/issues/114)) ([1ce2350](https://github.com/ublue-os/main/commit/1ce235014932000625c47f6a89319647e37a190e)) 227 | * kick off ISO build ([#119](https://github.com/ublue-os/main/issues/119)) ([95a5651](https://github.com/ublue-os/main/commit/95a5651a205e9839f76d0fbcd5bcdf7c3351ded9)) 228 | * kick off ISO build ([#159](https://github.com/ublue-os/main/issues/159)) ([7c9e430](https://github.com/ublue-os/main/commit/7c9e43008eb65a6af6ed1c69a3c08dfbc819ba63)) 229 | * kick off ISO build ([#217](https://github.com/ublue-os/main/issues/217)) ([fe67565](https://github.com/ublue-os/main/commit/fe675656ad5e7fae24849eb8af200bbd6cf8a588)) 230 | * **Kinoite:** Remove Discover rpm-ostree plugin ([#282](https://github.com/ublue-os/main/issues/282)) ([7a011ff](https://github.com/ublue-os/main/commit/7a011ff719e351ee53ccb3da27fe4083e0423028)) 231 | * maintain the current oci version label ([#89](https://github.com/ublue-os/main/issues/89)) ([be7faed](https://github.com/ublue-os/main/commit/be7faeda71ca2a96e0471d0fada59052b8db3c3d)) 232 | * make intro text more clear ([#128](https://github.com/ublue-os/main/issues/128)) ([5c8567d](https://github.com/ublue-os/main/commit/5c8567d72f8ad5ba68c2e20a04ab10a72df40980)) 233 | * ostree automatic updates not enabled ([#48](https://github.com/ublue-os/main/issues/48)) ([b508c02](https://github.com/ublue-os/main/commit/b508c02b0200846a50e62d31479d7ba83b424b00)) 234 | * PRs won't push to registry ([8d21213](https://github.com/ublue-os/main/commit/8d212133ec05899d1ae1e35f2de5a730a55b1364)) 235 | * README line fix ([#135](https://github.com/ublue-os/main/issues/135)) ([35cd1c0](https://github.com/ublue-os/main/commit/35cd1c079aeec5a25dca57d2e73d1abd83ace3e2)) 236 | * Readme update ([#74](https://github.com/ublue-os/main/issues/74)) ([e290cbf](https://github.com/ublue-os/main/commit/e290cbfd0503598994cc7fee18dde883373783a2)) 237 | * remove standalone date tag ([#80](https://github.com/ublue-os/main/issues/80)) ([edb67aa](https://github.com/ublue-os/main/commit/edb67aa48326ac59891e8e28779c0d2b05a92f0f)) 238 | * removed the matrix ([#116](https://github.com/ublue-os/main/issues/116)) ([89b1a5e](https://github.com/ublue-os/main/commit/89b1a5e8c23b415b0cf5e49256721bb9252bca1d)) 239 | * rename README.mdlol to README.md ([#219](https://github.com/ublue-os/main/issues/219)) ([5548e8f](https://github.com/ublue-os/main/commit/5548e8fd8b1b2585dbfb6b07a498c716c7b7521e)) 240 | * Reorder und add more info about distrobox to README ([#73](https://github.com/ublue-os/main/issues/73)) ([f8bf5bd](https://github.com/ublue-os/main/commit/f8bf5bdac57f777050da058b7590339254847467)) 241 | * Revert to older version of ostree to fix Flatpak installations ([#261](https://github.com/ublue-os/main/issues/261)) ([0859834](https://github.com/ublue-os/main/commit/0859834454591a4b231a710e491825c08391235d)) 242 | * split variant builds to their own registry ([#11](https://github.com/ublue-os/main/issues/11)) ([17da43c](https://github.com/ublue-os/main/commit/17da43c69d2850501ae611370e8890f02d44de2b)) 243 | * temporarily disable mesa-va-drivers-freeworld for f38 ([#163](https://github.com/ublue-os/main/issues/163)) ([73a10d0](https://github.com/ublue-os/main/commit/73a10d02c7b814cb382823c1571c97a86309e22a)) 244 | * update ISOs ([#133](https://github.com/ublue-os/main/issues/133)) ([728f7d6](https://github.com/ublue-os/main/commit/728f7d6e71b7360355f8bb86e85371f28408c289)) 245 | * update readme a bit ([#148](https://github.com/ublue-os/main/issues/148)) ([1ca2aaa](https://github.com/ublue-os/main/commit/1ca2aaacf9291f8dca28c5dd189192386be1db36)) 246 | * update readme to kick off build ([#121](https://github.com/ublue-os/main/issues/121)) ([83186eb](https://github.com/ublue-os/main/commit/83186eb1dd72c5cc5903b8ba308cbcb5a96e7ff7)) 247 | * update readme to kick off iso ([#125](https://github.com/ublue-os/main/issues/125)) ([7fc2dbf](https://github.com/ublue-os/main/commit/7fc2dbf454e2a5aa7184c8bc968bf9196dc9bfcc)) 248 | * update to cosign 2.0 and pin install ([#10](https://github.com/ublue-os/main/issues/10)) ([4fbe168](https://github.com/ublue-os/main/commit/4fbe1688e9dce81efd9597bcd46caaf75945f7d3)) 249 | * upgrade container to 38 ([#118](https://github.com/ublue-os/main/issues/118)) ([cf607b4](https://github.com/ublue-os/main/commit/cf607b4627082b25ea81e511ad96c2ef70ef66b3)) 250 | 251 | 252 | ### Reverts 253 | 254 | * "fix: Revert to older version of ostree to fix Flatpak installations ([#261](https://github.com/ublue-os/main/issues/261))" ([#265](https://github.com/ublue-os/main/issues/265)) ([f2c2a31](https://github.com/ublue-os/main/commit/f2c2a314b57b585c467ebc6bbbb40febfd40a11f)) 255 | * "fix: temporarily disable mesa-va-drivers-freeworld for f38" ([#166](https://github.com/ublue-os/main/issues/166)) ([32b29ac](https://github.com/ublue-os/main/commit/32b29ac8299919b2e97e16058a6c94e66410ef10)) 256 | * "revert: "fix: Revert to older version of ostree to fix Flatpak installations ([#261](https://github.com/ublue-os/main/issues/261))"" ([#266](https://github.com/ublue-os/main/issues/266)) ([36711fa](https://github.com/ublue-os/main/commit/36711fa635afba4dcb2be667fadc96a8d9feeb48)) 257 | 258 | ## [1.8.0](https://github.com/ublue-os/main/compare/v1.7.0...v1.8.0) (2023-08-11) 259 | 260 | 261 | ### Features 262 | 263 | * **vauxite:** add xfce4-whiskermenu-plugin ([#293](https://github.com/ublue-os/main/issues/293)) ([ca58833](https://github.com/ublue-os/main/commit/ca588333009d01e40a41d94b6a64dff87490c106)) 264 | 265 | ## [1.7.0](https://github.com/ublue-os/main/compare/v1.6.0...v1.7.0) (2023-08-08) 266 | 267 | 268 | ### Features 269 | 270 | * Add alsa-firmware package needed for some sound cards ([#270](https://github.com/ublue-os/main/issues/270)) ([0eb781b](https://github.com/ublue-os/main/commit/0eb781b117f90437ab68eeee442bdffbf0d966b0)) 271 | * add clipman for sericea ([#273](https://github.com/ublue-os/main/issues/273)) ([09c59b5](https://github.com/ublue-os/main/commit/09c59b5ec03c49d8c34f8344d87e5ddbdca8e217)) 272 | * remove xwaylandvideobridge ([#284](https://github.com/ublue-os/main/issues/284)) ([477e15a](https://github.com/ublue-os/main/commit/477e15a26fd0aaf8c75d8ceca90175457a9e256b)) 273 | 274 | 275 | ### Bug Fixes 276 | 277 | * Be selective in which kmods are brought into main. ([#278](https://github.com/ublue-os/main/issues/278)) ([aac58b0](https://github.com/ublue-os/main/commit/aac58b0480d8c8a0a44aae1882e2288547a0fde1)) 278 | * **Kinoite:** Remove Discover rpm-ostree plugin ([#282](https://github.com/ublue-os/main/issues/282)) ([7a011ff](https://github.com/ublue-os/main/commit/7a011ff719e351ee53ccb3da27fe4083e0423028)) 279 | 280 | ## [1.6.0](https://github.com/ublue-os/main/compare/v1.5.0...v1.6.0) (2023-06-30) 281 | 282 | 283 | ### Features 284 | 285 | * add libheif-freeworld & heif-pixbuf-loader ([#255](https://github.com/ublue-os/main/issues/255)) ([5f21453](https://github.com/ublue-os/main/commit/5f2145300d11d2c844ce73df13f6a53520655c6e)) 286 | * Add libheif-tools ([#253](https://github.com/ublue-os/main/issues/253)) ([8703dc8](https://github.com/ublue-os/main/commit/8703dc8c3ab6c63237e2e3d948796d7e3fe67919)) 287 | * add some indonesian fonts ([#248](https://github.com/ublue-os/main/issues/248)) ([abfc70d](https://github.com/ublue-os/main/commit/abfc70d21cc9ea97b839564fe959587e0dbb7fef)) 288 | * add wireguard-tools ([#241](https://github.com/ublue-os/main/issues/241)) ([44cb522](https://github.com/ublue-os/main/commit/44cb522091433b2e1e4a84f4bdac4ea592e353b0)) 289 | * Fix inconsistent thumbnails across images ([#262](https://github.com/ublue-os/main/issues/262)) ([3fc9c69](https://github.com/ublue-os/main/commit/3fc9c69b7c3d4f8571eebc0788a1a7015e5bdfe0)) 290 | * KDE QoL additions ([#259](https://github.com/ublue-os/main/issues/259)) ([a2a561e](https://github.com/ublue-os/main/commit/a2a561e57ace78d975e33c07232e21d50e79df45)) 291 | 292 | 293 | ### Bug Fixes 294 | 295 | * Revert to older version of ostree to fix Flatpak installations ([#261](https://github.com/ublue-os/main/issues/261)) ([0859834](https://github.com/ublue-os/main/commit/0859834454591a4b231a710e491825c08391235d)) 296 | 297 | 298 | ### Reverts 299 | 300 | * "fix: Revert to older version of ostree to fix Flatpak installations ([#261](https://github.com/ublue-os/main/issues/261))" ([#265](https://github.com/ublue-os/main/issues/265)) ([f2c2a31](https://github.com/ublue-os/main/commit/f2c2a314b57b585c467ebc6bbbb40febfd40a11f)) 301 | * "revert: "fix: Revert to older version of ostree to fix Flatpak installations ([#261](https://github.com/ublue-os/main/issues/261))"" ([#266](https://github.com/ublue-os/main/issues/266)) ([36711fa](https://github.com/ublue-os/main/commit/36711fa635afba4dcb2be667fadc96a8d9feeb48)) 302 | 303 | ## [1.5.0](https://github.com/ublue-os/main/compare/v1.4.2...v1.5.0) (2023-05-31) 304 | 305 | 306 | ### Features 307 | 308 | * add `lshw` (issue [#225](https://github.com/ublue-os/main/issues/225)) ([#230](https://github.com/ublue-os/main/issues/230)) ([5501e3c](https://github.com/ublue-os/main/commit/5501e3c008aaed027c2bbfc25c3a952a2500db4d)) 309 | * add cinnamon image to iso ([#237](https://github.com/ublue-os/main/issues/237)) ([d6d98a2](https://github.com/ublue-os/main/commit/d6d98a238a2d6f9702d428de5ef94011df6a4a3e)) 310 | * add xwaylandvideobridge ([#232](https://github.com/ublue-os/main/issues/232)) ([ef29a6b](https://github.com/ublue-os/main/commit/ef29a6bbfc4edd28bebef63994f8a6ab922818a1)) 311 | * align packagelist with fedora workstation ([#235](https://github.com/ublue-os/main/issues/235)) ([fe48ba8](https://github.com/ublue-os/main/commit/fe48ba84a061ef193285830f72c95d3f71c7a496)) 312 | * enable ublue-os akmods ([#234](https://github.com/ublue-os/main/issues/234)) ([df93c4f](https://github.com/ublue-os/main/commit/df93c4f17fe4262dad7e59233097513c734cc007)) 313 | * use custom repos provided by akmods ([#236](https://github.com/ublue-os/main/issues/236)) ([efe5364](https://github.com/ublue-os/main/commit/efe53640acc871ed2d60903774577e8a5565672c)) 314 | 315 | ## [1.4.2](https://github.com/ublue-os/main/compare/v1.4.1...v1.4.2) (2023-05-20) 316 | 317 | 318 | ### Bug Fixes 319 | 320 | * bump isogenerator dep and regen ISOs ([#222](https://github.com/ublue-os/main/issues/222)) ([b3d690b](https://github.com/ublue-os/main/commit/b3d690b338e32d28210e00112973e15797cf6749)) 321 | * rename README.mdlol to README.md ([#219](https://github.com/ublue-os/main/issues/219)) ([5548e8f](https://github.com/ublue-os/main/commit/5548e8fd8b1b2585dbfb6b07a498c716c7b7521e)) 322 | 323 | ## [1.4.1](https://github.com/ublue-os/main/compare/v1.4.0...v1.4.1) (2023-05-19) 324 | 325 | 326 | ### Bug Fixes 327 | 328 | * kick off ISO build ([#217](https://github.com/ublue-os/main/issues/217)) ([fe67565](https://github.com/ublue-os/main/commit/fe675656ad5e7fae24849eb8af200bbd6cf8a588)) 329 | 330 | ## [1.4.0](https://github.com/ublue-os/main/compare/v1.3.3...v1.4.0) (2023-05-17) 331 | 332 | 333 | ### Features 334 | 335 | * add adw-gtk3-theme for Silverblue ([#204](https://github.com/ublue-os/main/issues/204)) ([3aa1345](https://github.com/ublue-os/main/commit/3aa1345d46507a4158ff7df29cbb92b186c89b4b)) 336 | * add kernel-tools ([#208](https://github.com/ublue-os/main/issues/208)) ([b2d0b07](https://github.com/ublue-os/main/commit/b2d0b0795067de0630ef4f64a3471dda5d33e5d9)) 337 | * add openrgb udev rules ([#197](https://github.com/ublue-os/main/issues/197)) ([a95ec2d](https://github.com/ublue-os/main/commit/a95ec2d42e059eb3595f31b5c1bc8251e1cb0662)) 338 | * add podman-compose ([#180](https://github.com/ublue-os/main/issues/180)) ([4eea999](https://github.com/ublue-os/main/commit/4eea999b5771d438e819735b9f000b9d0b4ef27c)) 339 | * add tmux ([#190](https://github.com/ublue-os/main/issues/190)) ([c5491b9](https://github.com/ublue-os/main/commit/c5491b9a903be6eb5311e01c9dbefc638c3567d9)) 340 | * add xfce4-clipman-plugin to vauxite ([#182](https://github.com/ublue-os/main/issues/182)) ([5a7a820](https://github.com/ublue-os/main/commit/5a7a820180dd878b9be8bc2729ba3c51c2e3594d)) 341 | * new akmods build process ([#87](https://github.com/ublue-os/main/issues/87)) ([f0503ff](https://github.com/ublue-os/main/commit/f0503ffd4ac769e9c38f58adc274e35af9edf50f)) 342 | * switch the latest tag to F38 ([#177](https://github.com/ublue-os/main/issues/177)) ([9aca46a](https://github.com/ublue-os/main/commit/9aca46a742d9128e9b22bfbc5e380f5394ee269a)) 343 | 344 | ## [1.3.3](https://github.com/ublue-os/main/compare/v1.3.2...v1.3.3) (2023-04-20) 345 | 346 | 347 | ### Bug Fixes 348 | 349 | * bump isogenerator to 1.2.0 ([#167](https://github.com/ublue-os/main/issues/167)) ([2a46e49](https://github.com/ublue-os/main/commit/2a46e49765fea7683278f74e1d2eb6fe2b3b9ff4)) 350 | 351 | ## [1.3.2](https://github.com/ublue-os/main/compare/v1.3.1...v1.3.2) (2023-04-20) 352 | 353 | 354 | ### Bug Fixes 355 | 356 | * temporarily disable mesa-va-drivers-freeworld for f38 ([#163](https://github.com/ublue-os/main/issues/163)) ([73a10d0](https://github.com/ublue-os/main/commit/73a10d02c7b814cb382823c1571c97a86309e22a)) 357 | 358 | 359 | ### Reverts 360 | 361 | * "fix: temporarily disable mesa-va-drivers-freeworld for f38" ([#166](https://github.com/ublue-os/main/issues/166)) ([32b29ac](https://github.com/ublue-os/main/commit/32b29ac8299919b2e97e16058a6c94e66410ef10)) 362 | 363 | ## [1.3.1](https://github.com/ublue-os/main/compare/v1.3.0...v1.3.1) (2023-04-18) 364 | 365 | 366 | ### Bug Fixes 367 | 368 | * kick off ISO build ([#159](https://github.com/ublue-os/main/issues/159)) ([7c9e430](https://github.com/ublue-os/main/commit/7c9e43008eb65a6af6ed1c69a3c08dfbc819ba63)) 369 | 370 | ## [1.3.0](https://github.com/ublue-os/main/compare/v1.2.1...v1.3.0) (2023-04-18) 371 | 372 | 373 | ### Features 374 | 375 | * promote ISO to F38 GA ([#156](https://github.com/ublue-os/main/issues/156)) ([4968d34](https://github.com/ublue-os/main/commit/4968d34aef7a9e4a6c55bfee1e2e2eb8d095e6c1)) 376 | * use tagged release for isogenerator ([#155](https://github.com/ublue-os/main/issues/155)) ([f7d05b4](https://github.com/ublue-os/main/commit/f7d05b4f58096fa87df920523390cfe51774cdee)) 377 | 378 | ## [1.2.1](https://github.com/ublue-os/main/compare/v1.2.0...v1.2.1) (2023-04-15) 379 | 380 | 381 | ### Bug Fixes 382 | 383 | * update readme a bit ([#148](https://github.com/ublue-os/main/issues/148)) ([1ca2aaa](https://github.com/ublue-os/main/commit/1ca2aaacf9291f8dca28c5dd189192386be1db36)) 384 | 385 | ## [1.2.0](https://github.com/ublue-os/main/compare/v1.1.8...v1.2.0) (2023-04-12) 386 | 387 | 388 | ### Features 389 | 390 | * Include libratbag ([#139](https://github.com/ublue-os/main/issues/139)) ([4dcd439](https://github.com/ublue-os/main/commit/4dcd439c4b0a07c9ed96d6dd96d8a997a092b5b4)) 391 | 392 | ## [1.1.8](https://github.com/ublue-os/main/compare/v1.1.7...v1.1.8) (2023-04-10) 393 | 394 | 395 | ### Bug Fixes 396 | 397 | * README line fix ([#135](https://github.com/ublue-os/main/issues/135)) ([35cd1c0](https://github.com/ublue-os/main/commit/35cd1c079aeec5a25dca57d2e73d1abd83ace3e2)) 398 | 399 | ## [1.1.7](https://github.com/ublue-os/main/compare/v1.1.6...v1.1.7) (2023-04-08) 400 | 401 | 402 | ### Bug Fixes 403 | 404 | * update ISOs ([#133](https://github.com/ublue-os/main/issues/133)) ([728f7d6](https://github.com/ublue-os/main/commit/728f7d6e71b7360355f8bb86e85371f28408c289)) 405 | 406 | ## [1.1.6](https://github.com/ublue-os/main/compare/v1.1.5...v1.1.6) (2023-04-08) 407 | 408 | 409 | ### Bug Fixes 410 | 411 | * make intro text more clear ([#128](https://github.com/ublue-os/main/issues/128)) ([5c8567d](https://github.com/ublue-os/main/commit/5c8567d72f8ad5ba68c2e20a04ab10a72df40980)) 412 | 413 | ## [1.1.5](https://github.com/ublue-os/main/compare/v1.1.4...v1.1.5) (2023-04-07) 414 | 415 | 416 | ### Bug Fixes 417 | 418 | * update readme to kick off iso ([#125](https://github.com/ublue-os/main/issues/125)) ([7fc2dbf](https://github.com/ublue-os/main/commit/7fc2dbf454e2a5aa7184c8bc968bf9196dc9bfcc)) 419 | 420 | ## [1.1.4](https://github.com/ublue-os/main/compare/v1.1.3...v1.1.4) (2023-04-07) 421 | 422 | 423 | ### Bug Fixes 424 | 425 | * update readme to kick off build ([#121](https://github.com/ublue-os/main/issues/121)) ([83186eb](https://github.com/ublue-os/main/commit/83186eb1dd72c5cc5903b8ba308cbcb5a96e7ff7)) 426 | 427 | ## [1.1.3](https://github.com/ublue-os/main/compare/v1.1.2...v1.1.3) (2023-04-07) 428 | 429 | 430 | ### Bug Fixes 431 | 432 | * kick off ISO build ([#119](https://github.com/ublue-os/main/issues/119)) ([95a5651](https://github.com/ublue-os/main/commit/95a5651a205e9839f76d0fbcd5bcdf7c3351ded9)) 433 | 434 | ## [1.1.2](https://github.com/ublue-os/main/compare/v1.1.1...v1.1.2) (2023-04-07) 435 | 436 | 437 | ### Bug Fixes 438 | 439 | * removed the matrix ([#116](https://github.com/ublue-os/main/issues/116)) ([89b1a5e](https://github.com/ublue-os/main/commit/89b1a5e8c23b415b0cf5e49256721bb9252bca1d)) 440 | * upgrade container to 38 ([#118](https://github.com/ublue-os/main/issues/118)) ([cf607b4](https://github.com/ublue-os/main/commit/cf607b4627082b25ea81e511ad96c2ef70ef66b3)) 441 | 442 | ## [1.1.1](https://github.com/ublue-os/main/compare/v1.1.0...v1.1.1) (2023-04-06) 443 | 444 | 445 | ### Bug Fixes 446 | 447 | * kick off an iso build ([#114](https://github.com/ublue-os/main/issues/114)) ([1ce2350](https://github.com/ublue-os/main/commit/1ce235014932000625c47f6a89319647e37a190e)) 448 | 449 | ## [1.1.0](https://github.com/ublue-os/main/compare/v1.0.1...v1.1.0) (2023-04-06) 450 | 451 | 452 | ### Features 453 | 454 | * add intel-media-driver ([#98](https://github.com/ublue-os/main/issues/98)) ([9d7f2e2](https://github.com/ublue-os/main/commit/9d7f2e26d39d90eaf38449f8a7bcfda97142f7b3)) 455 | * move to a unified ISO for all images ([#109](https://github.com/ublue-os/main/issues/109)) ([9c52e30](https://github.com/ublue-os/main/commit/9c52e302741968a0d290a70fb863464bd41fa970)) 456 | 457 | ## [1.0.1](https://github.com/ublue-os/main/compare/v1.0.0...v1.0.1) (2023-04-02) 458 | 459 | 460 | ### Bug Fixes 461 | 462 | * delete changelog to unstick release-please action ([#100](https://github.com/ublue-os/main/issues/100)) ([6dc1d80](https://github.com/ublue-os/main/commit/6dc1d808d8cdb33e912926a587c843b3a9d9c993)) 463 | --------------------------------------------------------------------------------