opensbi: 1.3.1 -> 1.4

Diff: https://github.com/riscv-software-src/opensbi/compare/v1.3.1...v1.4
This commit is contained in:
Nick Cao 2023-12-28 14:01:46 -05:00
parent 599a7191c2
commit 1843f731e1
No known key found for this signature in database
1 changed files with 4 additions and 2 deletions

View File

@ -9,13 +9,13 @@
stdenv.mkDerivation rec {
pname = "opensbi";
version = "1.3.1";
version = "1.4";
src = fetchFromGitHub {
owner = "riscv-software-src";
repo = "opensbi";
rev = "v${version}";
hash = "sha256-JNkPvmKYd5xbGB2lsZKWrpI6rBIckWbkLYu98bw7+QY=";
hash = "sha256-T8ZeAzjM9aeTXitjE7s+m+jjGGtDo2jK1qO5EuKiVLU=";
};
postPatch = ''
@ -36,6 +36,8 @@ stdenv.mkDerivation rec {
"FW_FDT_PATH=${withFDT}"
];
enableParallelBuilding = true;
dontStrip = true;
dontPatchELF = true;