mirror of
https://git.yoctoproject.org/poky
synced 2026-01-29 21:08:42 +01:00
This is the first release in 13 years; I have reviewed the accumulated patches, and dropped some of them where purpose or issue being fixed is not clear. Specifically: 0001-Add-listen-action-for-a-tcp-socket.patch 0001-daemon.c-Libtirpc-porting-fixes.patch fixed upstream in84ab475f930001-attr-fix-utime-for-symlink.patch addresses an open issue in https://github.com/unfs3/unfs3/issues/4 please rebase and re-submit as a PR if the problem is still present. alternate_rpc_ports.patch unnecessary as of https://git.yoctoproject.org/poky/commit/?id=6bb9860ef7ba9c84fe9bd3a81aa6555f67ebd38e Command line options introduced by the patch no longer used anywhere. fix_compile_warning.patch merged upstream. fix_pid_race_parent_writes_child_pid.patch rebased and re-submitted upstream. no-yywrap.patch dropped as backport. relative_max_socket_path_len.patch needs to be re-submitted by the original author, purpose and reproducer scenario unclear. rename_fh_cache.patch merged upstream. tcp_no_delay.patch purpose and use case for oe unclear. unfs3_parallel_build.patch fixed upstream in987d32ca12a39a78995cDrop -N option from oeqa nfs helper and runqemu helper; the option was provided by tcp_no_delay.patch and is not needed for the tests or qemu. Drop ad hoc libtirpc support; upstream supports it directly now. Drop the check for portmap/rpcbind, it is unnecessary as of https://git.yoctoproject.org/poky/commit/?id=6bb9860ef7ba9c84fe9bd3a81aa6555f67ebd38e (From OE-Core rev: fa2f7cf545137b071db97015bca5b70d77566cd8) Signed-off-by: Alexander Kanavin <alex@linutronix.de> Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
44 lines
1.4 KiB
Python
44 lines
1.4 KiB
Python
#
|
|
# Copyright OpenEmbedded Contributors
|
|
#
|
|
# SPDX-License-Identifier: MIT
|
|
#
|
|
import os
|
|
import sys
|
|
import tempfile
|
|
import contextlib
|
|
import socket
|
|
from oeqa.utils.commands import bitbake, get_bb_var, Command
|
|
from oeqa.utils.network import get_free_port
|
|
|
|
@contextlib.contextmanager
|
|
def unfs_server(directory, logger = None):
|
|
unfs_sysroot = get_bb_var("RECIPE_SYSROOT_NATIVE", "unfs3-native")
|
|
if not os.path.exists(os.path.join(unfs_sysroot, "usr", "bin", "unfsd")):
|
|
# build native tool
|
|
bitbake("unfs3-native -c addto_recipe_sysroot")
|
|
|
|
exports = None
|
|
cmd = None
|
|
try:
|
|
# create the exports file
|
|
with tempfile.NamedTemporaryFile(delete = False) as exports:
|
|
exports.write("{0} (rw,no_root_squash,no_all_squash,insecure)\n".format(directory).encode())
|
|
|
|
# find some ports for the server
|
|
nfsport, mountport = get_free_port(udp = True), get_free_port(udp = True)
|
|
|
|
nenv = dict(os.environ)
|
|
nenv['PATH'] = "{0}/sbin:{0}/usr/sbin:{0}/usr/bin:".format(unfs_sysroot) + nenv.get('PATH', '')
|
|
cmd = Command(["unfsd", "-d", "-p", "-e", exports.name, "-n", str(nfsport), "-m", str(mountport)],
|
|
bg = True, env = nenv, output_log = logger)
|
|
cmd.run()
|
|
yield nfsport, mountport
|
|
finally:
|
|
if cmd is not None:
|
|
cmd.stop()
|
|
if exports is not None:
|
|
# clean up exports file
|
|
os.unlink(exports.name)
|
|
|