diff --git a/Applications/System/systemd-boot.md b/Applications/System/systemd-boot.md index df40048..31b390e 100644 --- a/Applications/System/systemd-boot.md +++ b/Applications/System/systemd-boot.md @@ -40,7 +40,10 @@ Edit `/boot/loader/entries/archlinux.conf`: ```txt title Arch Linux linux /vmlinuz-linux +# Using Intel initrd /intel-ucode.img +# Using AMD +initrd /amd-ucode.img initrd /initramfs-linux.img options root="LABEL=ROOT" rw ``` @@ -50,7 +53,10 @@ Edit `/boot/loader/entries/archlinux-lts.conf`: ```txt title Arch Linux LTS linux /vmlinuz-linux-lts +# Using Intel initrd /intel-ucode.img +# Using AMD +initrd /amd-ucode.img initrd /initramfs-linux-lts.img options root="LABEL=ROOT" rw ``` @@ -60,7 +66,10 @@ Edit `/boot/loader/entries/archlinux-zen.conf`: ```txt title Arch Linux ZEN linux /vmlinuz-linux-zen +# Using Intel initrd /intel-ucode.img +# Using AMD +initrd /amd-ucode.img initrd /initramfs-linux-zen.img options root="LABEL=ROOT" rw ``` diff --git a/install-archlinux.md b/install-archlinux.md index edd32c7..0494ffd 100644 --- a/install-archlinux.md +++ b/install-archlinux.md @@ -72,7 +72,19 @@ mount /dev/sdxY /mnt/home ### Installation ```sh -pacstrap /mnt base base-devel linux linux-lts linux-zen linux-firmware man-db man-pages intel-ucode neovim +pacstrap /mnt base base-devel linux linux-lts linux-zen linux-firmware neovim +``` + +Using Intel: + +```sh +pacstrap /mnt intel-ucode +``` + +Using AMD: + +```sh +pacstrap /mnt amd-ucode ``` ### Boot loader