Searched full:uname (Results 1 – 25 of 28) sorted by relevance
12
/Zephyr-latest/samples/posix/uname/ |
D | README.rst | 1 .. zephyr:code-sample:: posix-uname 2 :name: uname() 4 Use ``uname()`` to acquire system information and output it to the console. 9 In this sample application, the POSIX `uname()`_ function is used to acquire system information and 10 it is output to the console. Additionally, uname is added as a shell command and system information 19 :zephyr-app: samples/posix/uname 29 cd samples/posix/uname 32 The make output file will be located in samples/posix/uname/build. 47 uart:~$ uname -a 49 uart:~$ uname -smi [all …]
|
D | sample.yaml | 2 description: posix uname sample 3 name: posix uname 23 sample.posix.uname: 24 tags: uname
|
D | Makefile.host | 3 uname: src/main.c
|
/Zephyr-latest/lib/posix/options/ |
D | Kconfig.proc1 | 11 Select 'y' here to use confstr(), environ, errno, getenv(), setenv(), sysconf(), uname(), 40 int "uname version string length" 43 Defines the maximum string length of uname version. 46 int "uname nodename string length"
|
D | uname.c | 45 int uname(struct utsname *name) in uname() function
|
D | CMakeLists.txt | 116 uname.c
|
D | Kconfig.deprecated | 160 bool "Support for uname [DEPRECATED]"
|
/Zephyr-latest/lib/posix/shell/ |
D | uname.c | 25 "Usage: uname [OPTION]\n" \ 54 /* Get the uname options */ in uname_cmd_handler() 102 shell_error(sh, "uname: extra operand %s", argv[optind]); in uname_cmd_handler() 112 shell_error(sh, "uname: illegal option -- %c", badarg); in uname_cmd_handler() 123 /* Get uname data */ in uname_cmd_handler() 125 ret = uname(&info); in uname_cmd_handler() 173 POSIX_CMD_ADD(uname, NULL, "Print system information", uname_cmd_handler, 1, 1);
|
D | Kconfig.uname | 7 bool "Support for `uname` command" 11 Support for `uname` command in the terminal.
|
D | Kconfig | 14 rsource "Kconfig.uname"
|
D | CMakeLists.txt | 11 zephyr_library_sources_ifdef(CONFIG_POSIX_UNAME_SHELL uname.c)
|
/Zephyr-latest/tests/posix/single_process/src/ |
D | uname.c | 15 zassert_ok(uname(&info)); in ZTEST()
|
/Zephyr-latest/include/zephyr/posix/sys/ |
D | utsname.h | 29 int uname(struct utsname *name);
|
/Zephyr-latest/samples/posix/uname/src/ |
D | main.c | 14 uname(&info); in main()
|
/Zephyr-latest/samples/modules/thrift/hello/server/ |
D | Makefile | 6 OS = $(shell uname -s)
|
/Zephyr-latest/samples/modules/thrift/hello/client/ |
D | Makefile | 6 OS = $(shell uname -s)
|
/Zephyr-latest/ |
D | zephyr-env.sh | 38 if uname | grep -q "MINGW"; then
|
/Zephyr-latest/subsys/mgmt/mcumgr/grp/os_mgmt/include/ |
D | os_mgmt_processor.h | 15 * Processor name (used in uname output command)
|
/Zephyr-latest/subsys/mgmt/mcumgr/grp/os_mgmt/ |
D | Kconfig | 165 Can be used similarly to the unix/linux uname command for retrieving system information
|
/Zephyr-latest/scripts/west_commands/runners/ |
D | bossac.py | 272 if 'microsoft' in platform.uname().release.lower() or \
|
/Zephyr-latest/scripts/ |
D | checkstack.pl | 41 $arch = `uname -m`;
|
/Zephyr-latest/doc/releases/ |
D | release-notes-1.5.rst | 274 * ``ZEP-724`` - build on windows failed: 'make: execvp: uname: File or path name too long'
|
D | release-notes-1.6.rst | 292 * ``ZEP-724`` - build on windows failed: 'make: execvp: uname: File or path name too long'
|
D | release-notes-3.6.rst | 1178 the POSIX API can be added as subcommands (e.g. ``posix uname -a``)
|
/Zephyr-latest/doc/services/portability/posix/option_groups/ |
D | index.rst | 522 uname(),yes
|
12