Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(risc): check device tree, avoid oom #4153

Open
wants to merge 4 commits into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -70,16 +70,23 @@ Linux kernel.
4. Build the Linux kernel.
```bash
cd linux/

# Make sure the required device tree is available in the default branch
ls -lhF arch/riscv/boot/dts/thead/th1520-lichee-cluster-4a-16g.dts
# Otherwise switch to another branch that has it
#git branch -a
#git switch ...

make revyos_defconfig
# This can take several hours.
make -j
make -j4
sudo make modules_install
cd ..
```
5. Build OpenSBI.
```bash
cd opensbi/
make PLATFORM=generic -j
make PLATFORM=generic -j4
cd ..
```
6. Build and install the FIT image.
Expand All @@ -89,8 +96,8 @@ Linux kernel.
# Build the device tree
cpp \
-nostdinc \
-I ../linux/arch/riscv/boot/dts/thead/ \
-I ../linux/include/ \
-I ../../linux/arch/riscv/boot/dts/thead/ \
-I ../../linux/include/ \
-undef \
-x assembler-with-cpp \
em-rv1-c4m16s128-a.dts \
Expand All @@ -100,7 +107,7 @@ Linux kernel.
sudo mv /boot/boot.itb /boot/boot.itb.bak
sudo mkimage -f em-rv1-c4m16s128-a-boot.its /boot/boot.itb

cd -
cd ../..
```
7. Reboot the server to load the new kernel.

Expand Down
Loading