:orphan: .. title:: FAKE_ENTROPY_NATIVE_POSIX .. option:: CONFIG_FAKE_ENTROPY_NATIVE_POSIX *Native posix entropy driver* Type: ``bool`` 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. Direct dependencies =================== (\ :option:`ENTROPY_GENERATOR ` && \ :option:`BOARD_NATIVE_POSIX `) || (\ :option:`ARCH_POSIX ` && \ :option:`ENTROPY_GENERATOR `) *(Includes any dependencies from ifs and menus.)* Default ======= - y Symbols selected by this symbol =============================== - \ :option:`ENTROPY_HAS_DRIVER ` Kconfig definitions =================== .. highlight:: kconfig At ``boards/posix/native_posix/Kconfig.defconfig:28`` Included via ``Kconfig:8`` → ``Kconfig.zephyr:18`` Menu path: (Top) .. parsed-literal:: config FAKE_ENTROPY_NATIVE_POSIX bool default y depends on \ :option:`ENTROPY_GENERATOR ` && \ :option:`BOARD_NATIVE_POSIX ` ---- At ``drivers/entropy/Kconfig.native_posix:3`` Included via ``Kconfig:8`` → ``Kconfig.zephyr:32`` → ``drivers/Kconfig:30`` → ``drivers/entropy/Kconfig:19`` Menu path: (Top) → Device Drivers → Entropy Drivers .. parsed-literal:: config FAKE_ENTROPY_NATIVE_POSIX bool "Native posix entropy driver" select \ :option:`ENTROPY_HAS_DRIVER ` depends on \ :option:`ARCH_POSIX ` && \ :option:`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.)*