Home
last modified time | relevance | path

Searched refs:targetPath (Results 1 – 7 of 7) sorted by relevance

/openbmc/openbmc/poky/meta/recipes-devtools/go/go/
H A D0010-cmd-go-clear-GOROOT-for-func-ldShared-when-trimpath-.patch35 dir, targetPath := filepath.Split(targetPath)
37 - return b.Shell(root).run(dir, targetPath, nil, cfg.BuildToolexec, base.Tool("link"), "-o", target…
45 + return b.Shell(root).run(dir, targetPath, env, cfg.BuildToolexec, base.Tool("link"), "-o", target…
/openbmc/openpower-pnor-code-mgmt/test/
H A Dtest_functions.cpp265 std::filesystem::path targetPath = workdir / "target"; in TEST() local
267 functions::process_hostfirmware::writeLink(linkPath.filename(), targetPath, in TEST()
280 auto targetPath = workdir / "target"; in TEST() local
281 std::ofstream link{linkPath}, target{targetPath}; in TEST()
282 functions::process_hostfirmware::writeLink(linkPath.filename(), targetPath, in TEST()
298 auto targetPath = workdir / "target"; in TEST() local
299 std::filesystem::create_directory(targetPath); in TEST()
301 auto filePath = targetPath / "file"; in TEST()
303 functions::process_hostfirmware::writeLink(linkPath.filename(), targetPath, in TEST()
307 EXPECT_EQ(callbackPath, targetPath); in TEST()
[all …]
/openbmc/openbmc-tools/sensor_yaml_config/
H A Dsensor_yaml_config.py16 targetPath: str
249 r["path"] = getDimmTempPath(s.targetPath)
264 r["path"] = getCoreTempPath(s.name, s.targetPath)
398 s.targetPath,
402 if "dimm" in s.targetPath.lower():
405 elif "core" in s.targetPath.lower():
/openbmc/openbmc/poky/meta/classes-recipe/
H A Dpopulate_sdk_base.bbclass304 targetPath = os.readlink(linkPath)
305 if not os.path.isabs(targetPath):
306 targetPath = os.path.join(linkDirPath, targetPath)
307 targetPath = norm_path(targetPath)
309 if SCAN_ROOT != os.path.commonprefix( [SCAN_ROOT, targetPath] ):
310 bb.error("Escaping symlink {0!s} --> {1!s}".format(linkPath, targetPath))
313 if not os.path.exists(targetPath):
314 bb.error("Broken symlink {0!s} --> {1!s}".format(linkPath, targetPath))
317 if os.path.isdir(targetPath):
318 dir_walk(targetPath)
/openbmc/phosphor-fan-presence/monitor/
H A Djson_parser.cpp145 std::string targetPath; in getSensorDefs() local
148 targetPath = sensor["target_path"].get<std::string>(); in getSensorDefs()
179 .targetPath = targetPath, in getSensorDefs()
H A Dtypes.hpp107 std::string targetPath; member
H A Dfan.cpp68 s.targetInterface, s.targetPath, s.factor, s.offset, def.method, in Fan()