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
|
_pkgname=base-efi
|
||||||
_reponame=arch
|
_reponame=arch
|
||||||
pkgname="de-p1st-$_pkgname"
|
pkgname="de-p1st-$_pkgname"
|
||||||
pkgver=0.0.5
|
pkgver=0.1.1
|
||||||
pkgrel=1
|
pkgrel=1
|
||||||
pkgdesc="Arch Linux base packages"
|
pkgdesc="Arch Linux base packages"
|
||||||
arch=('any')
|
arch=('any')
|
||||||
@ -10,17 +10,22 @@ url="https://codeberg.org/privacy1st/${_reponame}"
|
|||||||
license=('MIT')
|
license=('MIT')
|
||||||
groups=()
|
groups=()
|
||||||
|
|
||||||
|
|
||||||
depends=('base' 'meta-group-base-devel' 'linux-firmware' 'man-db' 'man-pages' 'de-p1st-nano')
|
depends=('base' 'meta-group-base-devel' 'linux-firmware' 'man-db' 'man-pages' 'de-p1st-nano')
|
||||||
# metapackage for 'linux' and 'linux-headers'
|
# filesystems: luks, btrfs, ext4, f2fs
|
||||||
depends+=('de-p1st-kernel')
|
depends+=('lvm2' 'btrfs-progs' 'e2fsprogs' 'f2fs-tools')
|
||||||
# pacman config
|
# filesystems: exfat support
|
||||||
depends+=('de-p1st-pacman')
|
depends+=('fuse-exfat' 'exfat-utils')
|
||||||
# metapackage for microcode
|
# filesystems: ntfs write support
|
||||||
# depends+=('de-p1st-ucode') # !! TODO !!
|
depends+=('ntfs-3g')
|
||||||
# bootmanager
|
# bootmanager
|
||||||
depends+=('de-p1st-grub' 'efibootmgr')
|
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
|
# shell
|
||||||
depends+=('zsh' 'grml-zsh-config')
|
depends+=('zsh' 'zsh-completions' 'grml-zsh-config')
|
||||||
# virtual console keyboard config
|
# virtual console keyboard config
|
||||||
depends+=('de-p1st-keyboard')
|
depends+=('de-p1st-keyboard')
|
||||||
# networking
|
# networking
|
||||||
@ -28,14 +33,23 @@ depends+=('de-p1st-networkmanager' 'de-p1st-dns')
|
|||||||
# gnupg
|
# gnupg
|
||||||
depends+=('de-p1st-gnupg')
|
depends+=('de-p1st-gnupg')
|
||||||
|
|
||||||
|
# task manager
|
||||||
|
depends+=('htop')
|
||||||
# fonts
|
# fonts
|
||||||
depends+=('noto-fonts' 'ttf-material-design-icons-git' 'ttf-unifont')
|
depends+=('noto-fonts' 'ttf-material-design-icons-git' 'ttf-unifont')
|
||||||
|
|
||||||
# other
|
# other
|
||||||
# depends+=('usbutils')
|
# 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=()
|
provides=()
|
||||||
conflicts=()
|
conflicts=()
|
||||||
replaces=()
|
replaces=()
|
||||||
|
@ -166,6 +166,12 @@ function main() {
|
|||||||
# TODO: use FS_DEFAULT_MOUNT_OPTIONS and FS_MOUNT_OPTIONS in combination
|
# TODO: use FS_DEFAULT_MOUNT_OPTIONS and FS_MOUNT_OPTIONS in combination
|
||||||
mount "$DATA_PART" /mnt || return $?
|
mount "$DATA_PART" /mnt || return $?
|
||||||
mkdir /mnt/boot && mount "$BOOT_PART" /mnt/boot || 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 "$@"
|
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