archboot/usr/lib/initcpio/install/archboot_base_cleanup

55 lines
2.6 KiB
Text
Raw Normal View History

#!/usr/bin/env bash
# SPDX-License-Identifier: GPL-2.0-only
# Created by Tobias Powalowski <tpowa@archlinux.org>
build ()
{
apps="head id cksum tail test uptime w who whoami xargs \
2022-09-11 13:57:47 +02:00
swapon uniq seq fdisk sfdisk cfdisk parted free less \
chgrp dmesg egrep fgrep stty hdparm sync bsdcpio\
2022-12-02 16:54:23 +01:00
dirname chroot expr bunzip2 bzcat bzip2 su sdparm tput \
losetup mkfifo mknod lzmadec lzop lzma lzcat unlzma unxz xzcat \
2022-02-05 16:21:28 +01:00
lastb last wall mesg utmpdump xzdec switch_root pivot_root chcpu ctrlaltdel \
2022-04-26 16:32:57 +02:00
gdisk sgdisk cgdisk fixparts findmnt lsblk swaplabel cal chrt col colcrt \
2023-02-13 16:27:22 +01:00
colrm column fallocate flock getopt ionice ipcmk ipcrm ipcs swapoff \
2022-09-06 22:42:24 +02:00
look lsfd lscpu mcookie namei prlimit rename renice rev script scriptreplay uname26 \
linux32 linux64 setarch setsid setterm taskset ul unshare uuidgen whereis write \
2023-06-28 09:39:41 +02:00
addpart delpart ldattach partx readprofile rtcwake uuidd sysctl pidwait pkill pmap \
pwdx slabtop tload vmstat watch eject keyctl request-key tac \
sulogin resizepart lslocks wdctl zless zgrep fold hexdump shred blockdev blkdiscard \
2022-05-03 18:02:28 +02:00
newgrp nsenter runuser vigr vipw diff lsmod lzcmp lzdiff lzegrep \
2022-09-12 11:05:46 +02:00
lzgrep lzfgrep xzegrep xzfgrep xzgrep lzless lzmore reset blkzone \
2022-02-05 16:21:28 +01:00
chmem choom fincore hardlink irqtop lsipc lsirq lslogins lsmem lsns mkfs scriptlive \
setpriv uclampset uuidparse zramctl [ b2sum base32 base64 basenc chcon comm csplit \
dircolors expand factor fmt hostid join link logname md5sum nice nl nohup \
nproc numfmt paste pathchk pinky pr printenv ptx runcon sha1sum sha224sum \
sha256sum sha384sum sha512sum shuf split stdbuf sum timeout truncate tsort \
2023-06-28 07:58:10 +02:00
unexpand unlink users vdir fuser prtstat pslog pstree newgidmap newuidmap \
2022-02-05 16:21:28 +01:00
lzmainfo xzcmp gzexe uncompress zcmp zdiff zegrep zfgrep zforce zmore znew \
bzdiff bzgrep bzip2recover bzmore chacl getfacl setfacl attr getfattr \
2023-02-15 21:25:41 +01:00
setfattr pzstd unzstd zstdcat zstdgrep zstdless zstdmt lz4 lz4c lz4cat unlz4 \
2023-09-03 11:06:20 +02:00
gunzip zcat wipe file blkpr fadvise isosize pg pipesz tunelp"
if [[ "$(uname -m)" == "x86_64" ]]; then
2023-09-03 11:06:20 +02:00
apps="i386 x86_64 peekfd waitpid $apps"
2022-09-13 17:20:46 +02:00
fi
if [[ "$(uname -m)" == "aarch64" ]]; then
apps="peekfd $apps"
fi
2023-09-04 12:13:43 +02:00
if [[ "$(uname -m)" == "riscv64" ]]; then
2023-09-03 11:06:20 +02:00
apps="waitpid $apps"
fi
for i in $apps; do
rm /usr/bin/"$i"
done
}
help ()
{
cat <<HELPEOF
This hook cleans up binaries of archboot_base,
for a update installer routine.
DO NOT USE ON REGULAR SYSTEM!.
HELPEOF
}
# vim: set ft=sh ts=4 sw=4 et: