https://github.com/uditkarode/xps9570_linux
🐧 Defconfig to make the Linux kernel work with the Dell XPS 15 9570 (2018)
https://github.com/uditkarode/xps9570_linux
15-9570 config genkernel gentoo linux make xps
Last synced: about 1 year ago
JSON representation
🐧 Defconfig to make the Linux kernel work with the Dell XPS 15 9570 (2018)
- Host: GitHub
- URL: https://github.com/uditkarode/xps9570_linux
- Owner: uditkarode
- Created: 2019-07-11T17:44:47.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2019-10-18T23:36:14.000Z (over 6 years ago)
- Last Synced: 2025-01-14T18:08:37.696Z (about 1 year ago)
- Topics: 15-9570, config, genkernel, gentoo, linux, make, xps
- Homepage:
- Size: 76.2 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# XPS9570_Linux
A config file to make the Linux kernel work with the Dell XPS 15 9570 (2018)
## How to compile
Assuming you already emerged `sys-kernel/gentoo-sources`
```bash
cd /usr/src/linux
git clone https://github.com/uditkarode/XPS9570_Linux.git
mv XPS*/4.19* . && rm -rf XPS*
mv 4.19* .config
make -j$(nproc --all)
make -j$(nproc --all) modules_install
make install
genkernel --install initramfs
```
the kernel should be compiled and present in /boot after these commands