summaryrefslogtreecommitdiffstats
path: root/include/hw
diff options
context:
space:
mode:
authorJason A. Donenfeld2022-07-07 12:36:07 +0200
committerPeter Maydell2022-07-07 12:36:07 +0200
commit5242876f37ca21017e3f6eafbaefaa174babd9b7 (patch)
treeb2796f67327a160153dc7fd5de8e905780a00996 /include/hw
parentMerge tag 'pull-ppc-20220706' of https://gitlab.com/danielhb/qemu into staging (diff)
downloadqemu-5242876f37ca21017e3f6eafbaefaa174babd9b7.tar.gz
qemu-5242876f37ca21017e3f6eafbaefaa174babd9b7.tar.xz
qemu-5242876f37ca21017e3f6eafbaefaa174babd9b7.zip
hw/arm/virt: dt: add rng-seed property
In 60592cfed2 ("hw/arm/virt: dt: add kaslr-seed property"), the kaslr-seed property was added, but the equally as important rng-seed property was forgotten about, which has identical semantics for a similar purpose. This commit implements it in exactly the same way as kaslr-seed. It then changes the name of the disabling option to reflect that this has more to do with randomness vs determinism, rather than something particular about kaslr. Cc: Peter Maydell <peter.maydell@linaro.org> Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com> [PMM: added deprecated.rst section for the deprecation] Reviewed-by: Peter Maydell <peter.maydell@linaro.org> Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Diffstat (limited to 'include/hw')
-rw-r--r--include/hw/arm/virt.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/hw/arm/virt.h b/include/hw/arm/virt.h
index 15feabac63..6ec479ca2b 100644
--- a/include/hw/arm/virt.h
+++ b/include/hw/arm/virt.h
@@ -152,7 +152,7 @@ struct VirtMachineState {
bool virt;
bool ras;
bool mte;
- bool dtb_kaslr_seed;
+ bool dtb_randomness;
OnOffAuto acpi;
VirtGICType gic_version;
VirtIOMMUType iommu;