Merge pull request !2 from woqidaideshi/dev
raspberrypi-kernel
Description
Kernel Image of Raspberry Pi.
The kernel.tar.gz is from https://gitee.com/openeuler/raspberrypi-kernel. After you put your public ssh key into your account in gitee, you can obtain kernel.tar.gz by executing command . SOURCE. You can directly use the kernel.tar.gz in this repository instead.
Software Architecture
AArch64
Installation
dnf install raspberrypi-kernel
Instructions
-
The version of raspberrypi kernel ends with
.raspi, e.g.,4.19.90-2005.2.0.0036.raspi.aarch64. -
The module files will be installed into
/lib/modules. The directory name of these module files is the same as the version of raspberrypi kernel, such as4.19.90-2005.2.0.0036.raspi.aarch64. -
The image file will be installed into
/boot, whose filename is likevmlinuz-4.19.90-2005.2.0.0036.raspi.aarch64. Note that the image file is in GZ compression format by default. You can decompress this file, and then rename it tokernel8.imgas follows.cd /boot cp vmlinuz-4.19.90-2005.2.0.0036.raspi.aarch64 Image.gz gunzip Image.gz mv Image kernel8.img -
The device tree files will be installed into
/boot. The directory name of these files looks likedtb-4.19.90-2005.2.0.0036.raspi.aarch64. You need to copy the device tree files to/bootas follows.cd /boot cp dtb-4.19.90-2005.2.0.0036.raspi.aarch64/*.dtb ./
Contribution
- Fork the repository
- Create Feat_xxx branch
- Commit your code
- Create Pull Request