Browse Source
Add `qemu_cortex_a53` target which has the `virtio,entropy` device. Signed-off-by: TOKITA Hiroshi <tokita.hiroshi@gmail.com>pull/91115/merge
2 changed files with 21 additions and 0 deletions
@ -0,0 +1 @@
@@ -0,0 +1 @@
|
||||
CONFIG_HEAP_MEM_POOL_SIZE=1024 |
@ -0,0 +1,20 @@
@@ -0,0 +1,20 @@
|
||||
/* |
||||
* Copyright (c) 2025 TOKITA Hiroshi |
||||
* |
||||
* SPDX-License-Identifier: Apache-2.0 |
||||
*/ |
||||
|
||||
/ { |
||||
chosen { |
||||
zephyr,entropy = &virtio_entropy; |
||||
}; |
||||
}; |
||||
|
||||
&virtio_mmio0 { |
||||
status = "okay"; |
||||
|
||||
virtio_entropy: virtio_entropy { |
||||
compatible = "virtio,device4"; |
||||
status = "okay"; |
||||
}; |
||||
}; |
Loading…
Reference in new issue