mirror of
https://codeberg.org/privacy1st/arch
synced 2024-12-23 01:16:04 +01:00
update de-p1st-base-efi
This commit is contained in:
parent
cee4da2675
commit
b13bd32922
@ -2,7 +2,7 @@
|
||||
_pkgname=base-efi
|
||||
_reponame=arch
|
||||
pkgname="de-p1st-$_pkgname"
|
||||
pkgver=0.0.5
|
||||
pkgver=0.1.1
|
||||
pkgrel=1
|
||||
pkgdesc="Arch Linux base packages"
|
||||
arch=('any')
|
||||
@ -10,17 +10,22 @@ url="https://codeberg.org/privacy1st/${_reponame}"
|
||||
license=('MIT')
|
||||
groups=()
|
||||
|
||||
|
||||
depends=('base' 'meta-group-base-devel' 'linux-firmware' 'man-db' 'man-pages' 'de-p1st-nano')
|
||||
# metapackage for 'linux' and 'linux-headers'
|
||||
depends+=('de-p1st-kernel')
|
||||
# pacman config
|
||||
depends+=('de-p1st-pacman')
|
||||
# metapackage for microcode
|
||||
# depends+=('de-p1st-ucode') # !! TODO !!
|
||||
# filesystems: luks, btrfs, ext4, f2fs
|
||||
depends+=('lvm2' 'btrfs-progs' 'e2fsprogs' 'f2fs-tools')
|
||||
# filesystems: exfat support
|
||||
depends+=('fuse-exfat' 'exfat-utils')
|
||||
# filesystems: ntfs write support
|
||||
depends+=('ntfs-3g')
|
||||
# bootmanager
|
||||
depends+=('de-p1st-grub' 'efibootmgr')
|
||||
# pacman config
|
||||
depends+=('de-p1st-pacman')
|
||||
# sudo itself is part of base-devel, but sudo configuration is not ;)
|
||||
depends+=('de-p1st-sudo')
|
||||
# shell
|
||||
depends+=('zsh' 'grml-zsh-config')
|
||||
depends+=('zsh' 'zsh-completions' 'grml-zsh-config')
|
||||
# virtual console keyboard config
|
||||
depends+=('de-p1st-keyboard')
|
||||
# networking
|
||||
@ -28,14 +33,23 @@ depends+=('de-p1st-networkmanager' 'de-p1st-dns')
|
||||
# gnupg
|
||||
depends+=('de-p1st-gnupg')
|
||||
|
||||
|
||||
# task manager
|
||||
depends+=('htop')
|
||||
# fonts
|
||||
depends+=('noto-fonts' 'ttf-material-design-icons-git' 'ttf-unifont')
|
||||
|
||||
# other
|
||||
# depends+=('usbutils')
|
||||
|
||||
optdepends=()
|
||||
|
||||
# Default Kernel
|
||||
optdepends=('linux' 'linux-headers')
|
||||
# or LTS Kernel
|
||||
optdepends+=('linux-lts' 'linux-lts-headers')
|
||||
# CPU vendor specific microcode
|
||||
optdepends+=('amd-ucode' 'intel-ucode')
|
||||
|
||||
|
||||
provides=()
|
||||
conflicts=()
|
||||
replaces=()
|
||||
|
@ -166,6 +166,12 @@ function main() {
|
||||
# TODO: use FS_DEFAULT_MOUNT_OPTIONS and FS_MOUNT_OPTIONS in combination
|
||||
mount "$DATA_PART" /mnt || return $?
|
||||
mkdir /mnt/boot && mount "$BOOT_PART" /mnt/boot || return $?
|
||||
|
||||
|
||||
# TODO: testing
|
||||
# if bios type is bios then ... :/
|
||||
# amd/intel-ucode
|
||||
pacstrap /mnt "${KERNEL}" "${KERNEL}-headers" de-p1st-base-efi
|
||||
}
|
||||
|
||||
main "$@"
|
||||
|
@ -1,17 +0,0 @@
|
||||
# Maintainer: Daniel Langbein <daniel@systemli.org>
|
||||
_pkgname=kernel-lts
|
||||
_reponame=arch
|
||||
pkgname="de-p1st-$_pkgname"
|
||||
pkgver=0.0.1
|
||||
pkgrel=2
|
||||
pkgdesc="linux-lts and linux-lts-headers"
|
||||
arch=('any')
|
||||
url="https://codeberg.org/privacy1st/${_reponame}"
|
||||
license=('MIT')
|
||||
groups=()
|
||||
depends=('linux-lts' 'linux-lts-headers')
|
||||
optdepends=()
|
||||
provides=('de-p1st-kernel')
|
||||
conflicts=()
|
||||
replaces=()
|
||||
changelog=
|
@ -1,17 +0,0 @@
|
||||
# Maintainer: Daniel Langbein <daniel@systemli.org>
|
||||
_pkgname=kernel
|
||||
_reponame=arch
|
||||
pkgname="de-p1st-$_pkgname"
|
||||
pkgver=0.0.1
|
||||
pkgrel=2
|
||||
pkgdesc="linux and linux-headers"
|
||||
arch=('any')
|
||||
url="https://codeberg.org/privacy1st/${_reponame}"
|
||||
license=('MIT')
|
||||
groups=()
|
||||
depends=('linux' 'linux-headers')
|
||||
optdepends=()
|
||||
provides=() # implicitly provides $pkgname
|
||||
conflicts=()
|
||||
replaces=()
|
||||
changelog=
|
Loading…
Reference in New Issue
Block a user