Merge pull request #35846 from lheckemann/vboot-no-auto-host
vboot: disable host autodetection
This commit is contained in:
commit
b62084375f
@ -25,6 +25,7 @@ stdenv.mkDerivation rec {
|
|||||||
|
|
||||||
makeFlags = [
|
makeFlags = [
|
||||||
"DESTDIR=$(out)"
|
"DESTDIR=$(out)"
|
||||||
|
"HOST_ARCH=${stdenv.hostPlatform.parsed.cpu.name}"
|
||||||
];
|
];
|
||||||
|
|
||||||
postInstall = ''
|
postInstall = ''
|
||||||
@ -32,9 +33,10 @@ stdenv.mkDerivation rec {
|
|||||||
cp -r tests/devkeys* $out/share/vboot/
|
cp -r tests/devkeys* $out/share/vboot/
|
||||||
'';
|
'';
|
||||||
|
|
||||||
meta = {
|
meta = with stdenv.lib; {
|
||||||
description = "Chrome OS partitioning and kernel signing tools";
|
description = "Chrome OS partitioning and kernel signing tools";
|
||||||
license = stdenv.lib.licenses.bsd3;
|
license = licenses.bsd3;
|
||||||
platforms = stdenv.lib.platforms.linux;
|
platforms = platforms.linux;
|
||||||
|
maintainers = with maintainers; [ lheckemann ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user