:orphan: .. title:: CONFIG_FAKE_ENTROPY_NATIVE_POSIX .. kconfig:: CONFIG_FAKE_ENTROPY_NATIVE_POSIX CONFIG_FAKE_ENTROPY_NATIVE_POSIX ################################ *Native posix entropy driver* Type: ``bool`` Help ==== .. code-block:: none This option enables the test random number generator for the native_posix board (ARCH_POSIX). This is based on the host random() API. Note that this entropy generator is only meant for test purposes and does not generate real entropy. It actually generates always the same sequence of random numbers if initialized with the same seed. Direct dependencies =================== (\ :kconfig:`ENTROPY_GENERATOR ` && \ :kconfig:`BOARD_NATIVE_POSIX `) || (\ :kconfig:`ARCH_POSIX ` && \ :kconfig:`ENTROPY_GENERATOR `) *(Includes any dependencies from ifs and menus.)* Default ======= - y Symbols selected by this symbol =============================== - \ :kconfig:`ENTROPY_HAS_DRIVER ` Kconfig definitions =================== At ``/posix/native_posix/Kconfig.defconfig:28`` Included via ``Kconfig:8`` → ``Kconfig.zephyr:22`` Menu path: (Top) .. code-block:: kconfig config FAKE_ENTROPY_NATIVE_POSIX bool default y depends on ENTROPY_GENERATOR && BOARD_NATIVE_POSIX ---- At ``/entropy/Kconfig.native_posix:3`` Included via ``Kconfig:8`` → ``Kconfig.zephyr:42`` → ``/Kconfig:32`` → ``/entropy/Kconfig:20`` Menu path: (Top) → Device Drivers → Entropy Drivers .. code-block:: kconfig config FAKE_ENTROPY_NATIVE_POSIX bool "Native posix entropy driver" select ENTROPY_HAS_DRIVER depends on ARCH_POSIX && ENTROPY_GENERATOR help This option enables the test random number generator for the native_posix board (ARCH_POSIX). This is based on the host random() API. Note that this entropy generator is only meant for test purposes and does not generate real entropy. It actually generates always the same sequence of random numbers if initialized with the same seed. *(The 'depends on' condition includes propagated dependencies from ifs and menus.)*