Skip to content

Commit

Permalink
Graphics now working on the Lichee RV 86 Panel
Browse files Browse the repository at this point in the history
  • Loading branch information
Tim Molteno committed May 27, 2022
1 parent e8f7fc6 commit 695cb22
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 18 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ RUN ls -l
FROM builder as build_uboot
ARG UBOOT_TAG
ARG BOARD
RUN apt-get install -y python3-setuptools
RUN apt-get install -y python3-setuptools git
WORKDIR /build
RUN git clone --depth 1 --branch ${UBOOT_TAG} https://github.com/smaeul/u-boot.git
WORKDIR /build/u-boot
Expand Down
18 changes: 1 addition & 17 deletions config/lichee_rv_86_boot.its
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,11 @@

/ {
description = "Lichee RV FIT Image";
#address-cells = <1>;

images {
uboot {
description = "U-Boot";
data = /incbin/("u-boot-nodtb.bin");
data = /incbin/("u-boot/u-boot-nodtb.bin");
type = "standalone";
os = "U-Boot";
arch = "riscv";
Expand All @@ -32,28 +31,13 @@
compression = "none";
load = <0x44000000>;
entry = <0x44000000>;
hash {
algo = "sha1";
};
};
initrd {
description = "Initrd";
data = /incbin/("core-image-minimal-nitrogen8m.ext2.gz");
type = "ramdisk";
arch = "riscv64";
os = "linux";
compression = "none";
hash {
algo = "sha1";
};
};
};

configurations {
default = "standard";
standard {
description = "Standard Boot";
description = "U-Boot FIT";
firmware = "opensbi";
loadables = "uboot";
};
Expand Down

0 comments on commit 695cb22

Please sign in to comment.