2019-04-06 21:08:09 +08:00
|
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
|
2019-05-18 04:49:52 +08:00
|
|
|
config BOARD_NATIVE_POSIX_32BIT
|
|
|
|
bool "Native POSIX for 32-bit host"
|
2017-12-21 21:14:19 +08:00
|
|
|
depends on SOC_POSIX
|
2019-05-18 04:49:52 +08:00
|
|
|
select BOARD_NATIVE_POSIX
|
2017-12-21 21:14:19 +08:00
|
|
|
help
|
2019-05-18 04:49:52 +08:00
|
|
|
Will produce a console Linux process which can be executed natively
|
|
|
|
as a 32-bit executable.
|
|
|
|
It provides some minimal needed models:
|
|
|
|
An interrupt controller, timer (system tick), and redirects kernel prints to
|
|
|
|
stdout.
|
|
|
|
|
|
|
|
config BOARD_NATIVE_POSIX_64BIT
|
|
|
|
bool "Native POSIX for 64-bit host"
|
|
|
|
depends on SOC_POSIX
|
|
|
|
select BOARD_NATIVE_POSIX
|
|
|
|
select 64BIT
|
|
|
|
help
|
|
|
|
Will produce a console Linux process which can be executed natively
|
|
|
|
as a 64-bit executable.
|
2017-12-21 21:14:19 +08:00
|
|
|
It provides some minimal needed models:
|
|
|
|
An interrupt controller, timer (system tick), and redirects kernel prints to
|
|
|
|
stdout.
|