add amd ucode
parent
3499e4efa3
commit
89320851fa
|
@ -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
|
||||
```
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue