mirror of
https://github.com/ps5-linux/ps5-linux-patches.git
synced 2026-07-18 03:50:53 +00:00
readme: add instructions for installation
This commit is contained in:
27
README.md
27
README.md
@@ -1,16 +1,37 @@
|
|||||||
# ps5-linux-patches
|
# ps5-linux-patches
|
||||||
|
|
||||||
## Compile
|
## Compilation
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
|
git clone https://github.com/ps5-linux/ps5-linux-patches
|
||||||
git clone https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
|
git clone https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
|
||||||
cd linux
|
cd linux
|
||||||
git checkout tags/v7.0.2
|
git checkout tags/v7.0.2
|
||||||
git apply ~/ps5-linux-patches/linux.patch
|
git apply ../ps5-linux-patches/linux.patch
|
||||||
cp ~/ps5-linux-patches/.config .config
|
cp ../ps5-linux-patches/.config .config
|
||||||
make -j16
|
make -j16
|
||||||
```
|
```
|
||||||
|
|
||||||
|
## Installation
|
||||||
|
|
||||||
|
In the same `linux` folder after compilation, do:
|
||||||
|
|
||||||
|
```bash
|
||||||
|
sudo make modules_install
|
||||||
|
sudo make install
|
||||||
|
```
|
||||||
|
|
||||||
|
If you are updating Linux on your external USB SSD or you are directly booting into M.2 SSD, i.e. you use `-m2` in `cmdline.txt`, then you have to update the files on the FAT32 partition of your USB drive:
|
||||||
|
|
||||||
|
```bash
|
||||||
|
sudo mv /boot/efi/bzImage /boot/efi/bzImage.old
|
||||||
|
sudo mv /boot/efi/initrd.img /boot/efi/initrd.img.old
|
||||||
|
sudo cp /boot/vmlinuz-$(uname -r) /boot/efi/bzImage
|
||||||
|
sudo cp /boot/initrd.img-$(uname -r) /boot/efi/initrd.img
|
||||||
|
```
|
||||||
|
|
||||||
|
If you are updating Linux on your M.2 SSD, but you do not directly boot into it, i.e. if you use `m2_exec.sh`, then you do need to do this step.
|
||||||
|
|
||||||
## TODO
|
## TODO
|
||||||
|
|
||||||
- amdgpu smu driver to show correct gpu frequency and temperature
|
- amdgpu smu driver to show correct gpu frequency and temperature
|
||||||
|
|||||||
Reference in New Issue
Block a user