Merge branch '13-microcode' into 'main'

Add microcode to drivers packages

Closes #13 and #1

See merge request tipragot/tos!3
This commit is contained in:
Tipragot 2023-02-21 17:59:39 +01:00
commit 31c6454e89
4 changed files with 6 additions and 5 deletions

View file

@ -96,7 +96,7 @@ install_system() {
echo "Server = https://git.tipragot.fr/tipragot/tos/-/raw/working-desktop/repository" >> /etc/pacman.conf # TEMP: For development echo "Server = https://git.tipragot.fr/tipragot/tos/-/raw/working-desktop/repository" >> /etc/pacman.conf # TEMP: For development
echo "Install arch linux..." echo "Install arch linux..."
pacstrap -K /mnt tos-desktop-wm networkmanager $microcode pacstrap -K /mnt tos-desktop-wm networkmanager "tos-drivers-${drivers}"
echo "Generate fstab..." echo "Generate fstab..."
genfstab -U /mnt >> /mnt/etc/fstab genfstab -U /mnt >> /mnt/etc/fstab

View file

@ -5,6 +5,7 @@
# Install settings # Install settings
root_size="16G" root_size="16G"
home_size="16G" home_size="16G"
drivers="intel" # intel, amd or nvidia
# User settings # User settings
password="azertyuiop" password="azertyuiop"

View file

@ -4,6 +4,6 @@ arch=('any')
url='https://git.tipragot.fr/tipragot/tos' url='https://git.tipragot.fr/tipragot/tos'
license=('MIT') license=('MIT')
pkgver='0.1.0' pkgver='0.1.1'
pkgrel='1' pkgrel='1'
depends=('xf86-video-amdgpu') depends=('xf86-video-amdgpu' 'amd-ucode')

View file

@ -4,6 +4,6 @@ arch=('any')
url='https://git.tipragot.fr/tipragot/tos' url='https://git.tipragot.fr/tipragot/tos'
license=('MIT') license=('MIT')
pkgver='0.1.0' pkgver='0.1.1'
pkgrel='1' pkgrel='1'
depends=('xf86-video-intel') depends=('xf86-video-intel' 'intel-ucode')