Home
last modified time | relevance | path

Searched full:mkdir (Results 1 – 25 of 99) sorted by relevance

1234

/Zephyr-latest/samples/application_development/external_lib/mylib/
DMakefile14 MKDIR := mkdir macro
17 MKDIR := mkdir -p macro
21 -$(MKDIR) "$(OBJ_DIR)"
22 -$(MKDIR) "$(LIB_DIR)"
/Zephyr-latest/tests/posix/fs/src/
Dtest_fs_dir.c27 res = mkdir(TEST_DIR, S_IRWXG); in test_mkdir()
121 * @brief Test for POSIX mkdir API
124 * mkdir API and open a new file under the directory and
161 * mkdir API and remove directory using rmdir.
167 zassert_ok(mkdir(TEST_DIR, IRWXG), "Error creating dir: %d", errno); in ZTEST()
174 zassert_ok(mkdir(TEST_DIR, IRWXG), "Error creating dir: %d", errno); in ZTEST()
/Zephyr-latest/doc/_extensions/zephyr/
Dapplication.py269 def _mkdir(mkdir, build_dir, host_os, skip_config): argument
275 content.append(f'mkdir {build_dir} && cd {build_dir}')
277 content.append(f'{mkdir} {build_dir} && cd {build_dir}')
280 content.append(f'mkdir {build_dir} & cd {build_dir}')
294 def _cd_into(self, mkdir, **kwargs): argument
305 if not app and mkdir and num_slashes == 0:
308 content.extend(self._mkdir(mkdir, build_dir, 'all',
325 if mkdir:
326 content.extend(self._mkdir(mkdir, build_dir, host, skip_config))
351 mkdir = 'mkdir' if num_slashes == 0 else 'mkdir -p'
[all …]
/Zephyr-latest/doc/develop/west/
Dmoving-to-west.rst27 mkdir zephyrproject
33 mkdir zephyrproject
/Zephyr-latest/boards/intel/common/scripts/
Dbuild_grub.sh53 mkdir -p bin
63 mkdir -p ${SCRIPT_DIR}/grub
/Zephyr-latest/samples/posix/gettimeofday/
DMakefile.host4 mkdir -p build
/Zephyr-latest/samples/posix/uname/
DMakefile.host4 mkdir -p build
/Zephyr-latest/samples/posix/eventfd/
DMakefile.host4 mkdir -p build
/Zephyr-latest/scripts/footprint/
Dtrack.py25 pathlib.Path(f'footprint_data/{version}').mkdir(exist_ok=True, parents=True)
55 …pathlib.Path(f'footprint_data/{version}/{name}/{feature}/{board}').mkdir(parents=True, exist_ok=Tr…
/Zephyr-latest/tests/net/lib/mqtt/v3_1_1/mqtt_packet/
DREADME15 mkdir build; cd build
22 mkdir build; cd build
/Zephyr-latest/tests/subsys/fs/littlefs/src/
Dtest_lfs_dirops.c8 * * mkdir
/Zephyr-latest/scripts/native_simulator/
DMakefile102 @if [ ! -d ${NSI_BUILD_PATH} ]; then mkdir -p ${NSI_BUILD_PATH}; fi
106 @if [ ! -d $(dir $@) ]; then mkdir -p $(dir $@); fi
110 @if [ ! -d $(dir $@) ]; then mkdir -p $(dir $@); fi
126 @if [ ! -d $(dir $@) ]; then mkdir -p $(dir $@); fi
/Zephyr-latest/samples/boards/enjoydigital/litex/i2s/
DREADME.rst29 mkdir build && cd build
/Zephyr-latest/scripts/tests/build/
Dtest_subfolder_list.py25 os.mkdir(name)
63 tmpdir.mkdir(dirs_dir)
/Zephyr-latest/scripts/pylib/pytest-twister-harness/tests/
Dplugin_test.py49 os.mkdir(build_dir)
Dconftest.py49 os.mkdir(build_dir)
/Zephyr-latest/tests/subsys/fs/fat_fs_api/
DREADME.txt12 mkdir build; cd build
69 mkdir tests:
/Zephyr-latest/samples/net/sockets/tcp/
DREADME.rst29 mkdir build && cd build
/Zephyr-latest/samples/drivers/ipm/ipm_ivshmem/
DREADME.rst59 $ mkdir -p path/to/instance_1
65 $ mkdir -p path/to/instance_2
/Zephyr-latest/scripts/tests/twister/
Dtest_testplan.py1117 tmp_soc_root_dir.mkdir()
1120 tmp_vend1_dir.mkdir()
1123 tmp_soc1_dir.mkdir()
1137 tmp_board_root_dir.mkdir()
1140 tmp_vend1_dir.mkdir()
1143 tmp_p1_dir.mkdir()
1186 tmp_p2_dir.mkdir()
1233 tmp_vend2_dir.mkdir()
1236 tmp_p3_dir.mkdir()
1357 tmp_test_root_dir.mkdir()
[all …]
/Zephyr-latest/scripts/pylib/pytest-twister-harness/tests/device/
Dqemu_adapter_test.py20 os.mkdir(build_dir)
/Zephyr-latest/tests/subsys/fs/common/
Dtest_fs_dirops.c42 "mkdir failed"); in check_mkdir()
192 "rename mkdir failed"); in check_rename()
300 "check mkdir failed"); in test_fs_dirops()
/Zephyr-latest/samples/subsys/shell/fs/
DREADME.rst205 Mkdir subsection
212 fs mkdir <path>
/Zephyr-latest/samples/tfm_integration/tfm_ipc/
DREADME.rst41 mkdir build
186 mkdir build && cd build
218 mkdir build && cd build
/Zephyr-latest/include/zephyr/posix/
Dunistd.h46 int mkdir(const char *path, mode_t mode);

1234