Home
last modified time | relevance | path

Searched refs:uname (Results 1 – 25 of 25) sorted by relevance

/Zephyr-latest/samples/posix/uname/
DREADME.rst1 .. 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 …]
DMakefile.host3 uname: src/main.c
/Zephyr-latest/lib/posix/shell/
DKconfig.uname7 bool "Support for `uname` command"
11 Support for `uname` command in the terminal.
Duname.c125 ret = uname(&info); in uname_cmd_handler()
173 POSIX_CMD_ADD(uname, NULL, "Print system information", uname_cmd_handler, 1, 1);
DCMakeLists.txt11 zephyr_library_sources_ifdef(CONFIG_POSIX_UNAME_SHELL uname.c)
DKconfig14 rsource "Kconfig.uname"
/Zephyr-latest/lib/posix/options/
DKconfig.proc111 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"
Duname.c45 int uname(struct utsname *name) in uname() function
DCMakeLists.txt116 uname.c
DKconfig.deprecated160 bool "Support for uname [DEPRECATED]"
/Zephyr-latest/tests/posix/single_process/src/
Duname.c15 zassert_ok(uname(&info)); in ZTEST()
/Zephyr-latest/include/zephyr/posix/sys/
Dutsname.h29 int uname(struct utsname *name);
/Zephyr-latest/samples/posix/uname/src/
Dmain.c14 uname(&info); in main()
/Zephyr-latest/
Dzephyr-env.sh38 if uname | grep -q "MINGW"; then
/Zephyr-latest/samples/modules/thrift/hello/server/
DMakefile6 OS = $(shell uname -s)
/Zephyr-latest/samples/modules/thrift/hello/client/
DMakefile6 OS = $(shell uname -s)
/Zephyr-latest/scripts/west_commands/runners/
Dbossac.py272 if 'microsoft' in platform.uname().release.lower() or \
/Zephyr-latest/subsys/mgmt/mcumgr/grp/os_mgmt/
DKconfig165 Can be used similarly to the unix/linux uname command for retrieving system information
/Zephyr-latest/doc/releases/
Drelease-notes-1.5.rst274 * ``ZEP-724`` - build on windows failed: 'make: execvp: uname: File or path name too long'
Drelease-notes-1.6.rst292 * ``ZEP-724`` - build on windows failed: 'make: execvp: uname: File or path name too long'
Drelease-notes-3.6.rst1178 the POSIX API can be added as subcommands (e.g. ``posix uname -a``)
Drelease-notes-3.5.rst2142 :c:func:`pthread_mutexattr_destroy`, :c:func:`pthread_mutexattr_init`, :c:func:`uname`,
/Zephyr-latest/doc/services/portability/posix/option_groups/
Dindex.rst522 uname(),yes
/Zephyr-latest/doc/services/device_mgmt/smp_groups/
Dsmp_group_0.rst732 uname command, allowing details such as kernel name, kernel version, build
/Zephyr-latest/scripts/kconfig/
Dkconfiglib.py6883 _UNAME_RELEASE = os.uname()[2]
6887 _UNAME_RELEASE = platform.uname()[2]