From 353d4731010516738710774be2ad8b693a02006d Mon Sep 17 00:00:00 2001 From: Tobias Powalowski Date: Tue, 7 Nov 2023 21:43:00 +0100 Subject: [PATCH] remove base_latest --- etc/archboot/aarch64-latest.conf | 2 +- etc/archboot/aarch64-local.conf | 2 +- etc/archboot/x86_64-latest.conf | 2 +- etc/archboot/x86_64-local.conf | 2 +- usr/lib/archboot/cpio/hooks/base_latest | 13 ------------- 5 files changed, 4 insertions(+), 17 deletions(-) delete mode 100644 usr/lib/archboot/cpio/hooks/base_latest diff --git a/etc/archboot/aarch64-latest.conf b/etc/archboot/aarch64-latest.conf index 62da088cf..ad87be2a5 100644 --- a/etc/archboot/aarch64-latest.conf +++ b/etc/archboot/aarch64-latest.conf @@ -1,7 +1,7 @@ # Created by Tobias Powalowski # SPDX-License-Identifier: GPL-3.0-or-later _KERNEL="/boot/Image.gz" -_HOOKS=(common_mods kms_mods systemd_mods base_common base_latest installer_common +_HOOKS=(common_mods kms_mods systemd_mods base_common installer_common net_common net_mods remote kexec licenses) # COMPRESSION diff --git a/etc/archboot/aarch64-local.conf b/etc/archboot/aarch64-local.conf index 3b2e03e88..8002e874d 100644 --- a/etc/archboot/aarch64-local.conf +++ b/etc/archboot/aarch64-local.conf @@ -1,7 +1,7 @@ # Created by Tobias Powalowski # SPDX-License-Identifier: GPL-3.0-or-later _KERNEL="/boot/Image.gz" -_HOOKS=(common_mods kms_mods systemd_mods base_common base_latest installer_common +_HOOKS=(common_mods kms_mods systemd_mods base_common installer_common kexec licenses cache) # COMPRESSION diff --git a/etc/archboot/x86_64-latest.conf b/etc/archboot/x86_64-latest.conf index 8dcfd7f26..6c880b6d8 100644 --- a/etc/archboot/x86_64-latest.conf +++ b/etc/archboot/x86_64-latest.conf @@ -1,7 +1,7 @@ # Created by Tobias Powalowski # SPDX-License-Identifier: GPL-3.0-or-later _KERNEL="/usr/lib/modules/*/vmlinuz" -_HOOKS=(common_mods kms_mods systemd_mods base_common base_latest installer_common +_HOOKS=(common_mods kms_mods systemd_mods base_common installer_common net_common net_mods remote kexec licenses) # COMPRESSION diff --git a/etc/archboot/x86_64-local.conf b/etc/archboot/x86_64-local.conf index 1010f2332..a0885268f 100644 --- a/etc/archboot/x86_64-local.conf +++ b/etc/archboot/x86_64-local.conf @@ -1,7 +1,7 @@ # Created by Tobias Powalowski # SPDX-License-Identifier: GPL-3.0-or-later _KERNEL="/usr/lib/modules/*/vmlinuz" -_HOOKS=(common_mods kms_mods systemd_mods base_common base_latest installer_common +_HOOKS=(common_mods kms_mods systemd_mods base_common installer_common kexec licenses cache) # COMPRESSION diff --git a/usr/lib/archboot/cpio/hooks/base_latest b/usr/lib/archboot/cpio/hooks/base_latest deleted file mode 100644 index e047fd27b..000000000 --- a/usr/lib/archboot/cpio/hooks/base_latest +++ /dev/null @@ -1,13 +0,0 @@ -#!/usr/bin/env bash -# SPDX-License-Identifier: GPL-3.0-or-later -# Created by Tobias Powalowski - -_run () -{ - ### adding default font and keymap - _binary loadkeys - _map _file /usr/share/kbd/{consolefonts/{ter-v16n.psf.gz,ter-v32n.psf.gz},keymaps/i386/qwerty/us.map.gz} - _map _full_dir /usr/share/kbd/keymaps/{i386/include,include} -} - -# vim: set ft=sh ts=4 sw=4 et: