This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# mkosi.conf.d/01-minimal-aurutils-setup.sh | |
# Call this from mkosi.postinst.chroot | |
# | |
# Prepare an mkosi image for (optionally) installing aurutils (post-boot) in an Arch linux rescue EFI. | |
# A rescue EFI has no need for persistent storage, instead we drop a 0.2 MB compiled / packaged | |
# "aurutils-*.pkg.tar.zst" into the image's "/home/packages" or "$AURUTILS_PKG_PATH" directory before mkosi's image build completion. | |
# | |
# This keeps the EFI size down as pre-installing any aur helper will pull in 100+ MBs of dependencies. | |
# The script sticks with pacman.conf's example username "packages" and repository name "custom". |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
‣ [0;38;5;245mLoading configuration file /home/strykar/arch_packages/localpkgs/rescue-image/mkosi.conf[0m | |
‣ [0;38;5;245mLoading configuration file /home/strykar/arch_packages/localpkgs/rescue-image/mkosi.conf.d/01-aurutils-packages.conf[0m | |
‣ [0;38;5;245mLoading configuration file /home/strykar/arch_packages/localpkgs/rescue-image/mkosi.conf.d/arch.conf[0m | |
‣ [0;1;39mRemoving output files of rescue image…[0m | |
‣ [0;38;5;245mAcquiring lock on /home/strykar/arch_packages/localpkgs/rescue-image/mkosi.output/rescue_80e7a53132-2025-06-30[0m | |
‣ [0;38;5;245mAcquired lock on /home/strykar/arch_packages/localpkgs/rescue-image/mkosi.output/rescue_80e7a53132-2025-06-30[0m | |
‣ + rm -rf -- /work/home/strykar/arch_packages/localpkgs/rescue-image/mkosi.output/rescue_80e7a53132-2025-06-30 /work/home/strykar/arch_packages/localpkgs/rescue-image/mkosi.output/rescue_80e7a53132-2025-06-30.SHA256SUMS /work/home/strykar/arch_packages/localpkgs/rescue-image/mkosi.output/rescue_80e7a53132-2025-06-30.SHA256SUMS.gpg /work/home/st |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
‣ [0;38;5;245mLoading configuration file /home/strykar/arch_packages/localpkgs/rescue-image/mkosi.conf[0m | |
‣ [0;38;5;245mLoading configuration file /home/strykar/arch_packages/localpkgs/rescue-image/mkosi.conf.d/01-aurutils-packages.conf[0m | |
‣ [0;38;5;245mLoading configuration file /home/strykar/arch_packages/localpkgs/rescue-image/mkosi.conf.d/arch.conf[0m | |
‣ [0;38;5;245mLoading configuration file /tmp/tmp4exfr9sf/resources/mkosi-initrd/mkosi.conf[0m | |
‣ [0;38;5;245mLoading configuration file /tmp/tmp4exfr9sf/resources/mkosi-initrd/mkosi.conf.d/10-arch.conf[0m | |
‣ [0;38;5;245mLoading configuration file /tmp/tmp4exfr9sf/resources/mkosi-initrd/mkosi.conf[0m | |
‣ [0;38;5;245mLoading configuration file /tmp/tmp4exfr9sf/resources/mkosi-initrd/mkosi.conf.d/10-arch.conf[0m | |
‣ [0;1;39mValidating certificates and keys[0m | |
‣ [0;1;39mPopulating pacman keyring[0m | |
‣ + pacman-key --init |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
‣ Loading configuration file /home/strykar/arch_packages/localpkgs/rescue-image/mkosi.conf | |
‣ Loading configuration file /home/strykar/arch_packages/localpkgs/rescue-image/mkosi.conf.d/arch.conf | |
‣ Removing output files of rescue image… | |
‣ Acquiring lock on /home/strykar/arch_packages/localpkgs/rescue-image/mkosi.output/rescue_80e7a53132_28_Jun_2025 | |
‣ Acquired lock on /home/strykar/arch_packages/localpkgs/rescue-image/mkosi.output/rescue_80e7a53132_28_Jun_2025 | |
‣ + rm -rf -- /work/home/strykar/arch_packages/localpkgs/rescue-image/mkosi.output/rescue_80e7a53132_28_Jun_2025 /work/home/strykar/arch_packages/localpkgs/rescue-image/mkosi.output/rescue_80e7a53132_28_Jun_2025.efi /work/home/strykar/arch_packages/localpkgs/rescue-image/mkosi.output/rescue_80e7a53132_28_Jun_2025.initrd /work/home/strykar/arch_packages/localpkgs/rescue-image/mkosi.output/rescue_80e7a53132_28_Jun_2025.vmlinuz | |
‣ Loading configuration file /tmp/tmp8j794ipe/resources/mkosi-initrd/mkosi.conf | |
‣ Loading configuration file /tmp/tmp8j794ipe/resourc |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
set -ex | |
PACKAGES=( | |
neovim-git | |
) | |
# All this is basically to get around makepkg calling pacman with sudo | |
# Otherwise we could just call `aur sync` and be done with it |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
set -o errexit | |
set -o nounset | |
set -o pipefail | |
declare -A seen=() | |
declare -A unowned=() | |
check_dyndbg_enabled() { | |
if grep -qw 'dyndbg="func fw_log_firmware_info +p"' /proc/cmdline && [[ -r /proc/dynamic_debug/control ]]; then |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
version: 1 | |
events: | |
- EventNum: 0 | |
PCRIndex: 0 | |
EventType: EV_NO_ACTION | |
Digest: "0000000000000000000000000000000000000000" | |
EventSize: 37 | |
SpecID: | |
- Signature: Spec ID Event03 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#? Config file for btop v. 1.4.3 | |
#* Name of a btop++/bpytop/bashtop formatted ".theme" file, "Default" and "TTY" for builtin themes. | |
#* Themes should be placed in "../share/btop/themes" relative to binary or "$HOME/.config/btop/themes" | |
color_theme = "/usr/share/btop/themes/adapta.theme" | |
#* If the theme set background should be shown, set to False if you want terminal background transparency. | |
theme_background = True | |
#* Sets if 24-bit truecolor should be used, will convert 24-bit colors to 256 color (6x6x6 color cube) if false. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
========== | |
VULKANINFO | |
========== | |
Vulkan Instance Version: 1.4.313 | |
Instance Extensions: count = 24 | |
=============================== | |
VK_EXT_acquire_drm_display : extension revision 1 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains any messages produced by compilers while | |
running configure, to aid debugging if configure makes a mistake. | |
It was created by mosh configure 1.4.0, which was | |
generated by GNU Autoconf 2.72. Invocation command line was | |
$ ./configure | |
## --------- ## | |
## Platform. ## |
NewerOlder