/openbmc/u-boot/test/py/tests/ |
H A D | test_bind.py | 28 #bind /bind-test. Device should come up as well as its children 29 response = u_boot_console.run_command('bind /bind-test generic_simple_bus') 32 assert in_tree(tree, 'bind-test', 'simple_bus', 'generic_simple_bus', 0, True) 33 assert in_tree(tree, 'bind-test-child1', 'phy', 'phy_sandbox', 1, False) 34 assert in_tree(tree, 'bind-test-child2', 'simple_bus', 'generic_simple_bus', 1, True) 36 #Unbind child #1. No error expected and all devices should be there except for bind-test-child1 37 response = u_boot_console.run_command('unbind /bind-test/bind-test-child1') 40 assert in_tree(tree, 'bind-test', 'simple_bus', 'generic_simple_bus', 0, True) 41 assert 'bind-test-child1' not in tree 42 assert in_tree(tree, 'bind-test-child2', 'simple_bus', 'generic_simple_bus', 1, True) [all …]
|
/openbmc/openbmc/poky/meta/recipes-connectivity/bind/ |
H A D | bind_9.20.5.bb | 2 HOMEPAGE = "https://www.isc.org/bind/" 3 DESCRIPTION = "BIND 9 provides a full-featured Domain Name Server system" 16 file://make-etc-initd-bind-stop-work.patch \ 18 file://bind-ensure-searching-for-json-headers-searches-sysr.patch \ 20 file://0001-avoid-start-failure-with-bind-user.patch \ 29 # Issue only affects dhcpd with recent bind versions. We don't ship dhcpd anymore 31 CVE_STATUS[CVE-2019-6470] = "not-applicable-config: Issue only affects dhcpd with recent bind versi… 44 --sysconfdir=${sysconfdir}/bind \ 53 USERADD_PARAM:${PN} = "--system --home ${localstatedir}/cache/bind --no-create-home \ 54 --user-group bind" [all …]
|
/openbmc/openbmc/poky/meta/recipes-connectivity/bind/bind/ |
H A D | conf.patch | 4 Subject: [PATCH] bind: add new recipe 43 +; BIND reverse data file for broadcast zone 61 +; BIND reverse data file for local loopback interface 80 +; BIND reserve data file for broadcast zone 97 +; BIND reverse data file for empty rfc1918 zone 118 +; BIND data file for local loopback interface 187 +// This is the primary configuration file for the BIND DNS server named. 189 +// If you are just adding zones, please do that in /etc/bind/named.conf.local 191 +include "/etc/bind/named.conf.options"; 196 + file "/etc/bind/db.root"; [all …]
|
H A D | generate-rndc-key.sh | 3 if [ ! -s /etc/bind/rndc.key ]; then 4 echo -n "Generating /etc/bind/rndc.key:" 6 chown root:bind /etc/bind/rndc.key 7 chmod 0640 /etc/bind/rndc.key
|
H A D | bind-ensure-searching-for-json-headers-searches-sysr.patch | 4 Subject: [PATCH] bind: ensure searching for json headers searches sysroot 6 Bind can fail configure by detecting headers w/o libs[1], or 10 Rerun configure task after fixing this. The path was 'build/tmp/work/core2-64-poky-linux/bind/9.10.… 12 ERROR: Logfile of failure stored in: build/tmp/work/core2-64-poky-linux/bind/9.10.2-r1/temp/log.do_… 13 ERROR: Task 5 (meta/recipes-connectivity/bind/bind_9.10.2.bb, do_configure) failed with exit code '… 18 /meta/recipes-connectivity/bind/bind_9.10.2.bb, do_configure 20 One way to fix it would be to unconditionally disable json in bind
|
H A D | 0001-avoid-start-failure-with-bind-user.patch | 4 Subject: [PATCH] avoid start failure with bind user 19 if [ ! -f /etc/bind/rndc.key ]; then 21 + chown root:bind /etc/bind/rndc.key >/dev/null 2>&1 || true 22 chmod 0640 /etc/bind/rndc.key
|
/openbmc/linux/tools/testing/selftests/media_tests/ |
H A D | media_dev_allocator.sh | 6 echo "Media Device Allocator testing: unbind and bind" 37 echo "Test bind both devices - start" 38 echo "Running bind of $MDEV from $MDRIVER" 39 echo $MDEV > $MDRIVER/bind; 44 echo "Running bind of $ADEV from $ADRIVER" 45 echo $ADEV > $ADRIVER/bind; 50 echo "Test bind both devices - end" 54 echo "Test unbind $MDEV - bind $MDEV - unbind $ADEV - bind $ADEV start" 64 echo "Running bind of $MDEV from $MDRIVER" 65 echo $MDEV > $MDRIVER/bind; [all …]
|
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-security/nmap/files/ |
H A D | 0002-Fix-building-with-libc.patch | 20 /* Bind to local address and the specified port */ 21 - if( bind(master_sd, (struct sockaddr *)&server_addr6, sizeof(server_addr6)) != 0 ){ 22 + if( ::bind(master_sd, (struct sockaddr *)&server_addr6, sizeof(server_addr6)) != 0 ){ 23 …nping_warning(QT_3, "Failed to bind to source address %s. Trying to bind to port %d...", IPtoa(ser… 24 /* If the bind failed for the supplied address, just try again with in6addr_any */ 27 - if( bind(master_sd, (struct sockaddr *)&server_addr6, sizeof(server_addr6)) != 0 ){ 28 + if( ::bind(master_sd, (struct sockaddr *)&server_addr6, sizeof(server_addr6)) != 0 ){ 29 nping_fatal(QT_3, "Could not bind to port %d (%s).", port, strerror(errno)); 38 /* Bind to local address and the specified port */ 39 - if( bind(master_sd, (struct sockaddr *)&server_addr4, sizeof(server_addr4)) != 0 ){ [all …]
|
/openbmc/u-boot/include/linux/usb/ |
H A D | composite.h | 43 * @strings: tables of strings, keyed by identifiers assigned during bind() 46 * string identifiers assigned during @bind(). If this pointer is null, 49 * string identifiers assigned during @bind(). If this pointer is null, 53 * @bind: Before the gadget can register, all of its functions bind() to the 56 * @unbind: Reverses @bind; called as a side effect of unregistering the 73 * causes @bind() to be called so resources can be allocated as part of 101 /* REVISIT: bind() functions can be marked __init, which 104 * Related: unbind() may kfree() but bind() won't... 107 /* configuration management: bind/unbind */ 108 int (*bind)(struct usb_configuration *, member [all …]
|
/openbmc/phosphor-fan-presence/presence/ |
H A D | eeprom_device.hpp | 20 * Provides an API to bind an EEPROM driver to a device, after waiting 40 * before actually doing the bind. 47 std::bind(std::mem_fn(&EEPROMDevice::bindTimerExpired), this)) in EEPROMDevice() 51 * @brief Kicks off the timer to do the actual bind 53 void bind() in bind() function in phosphor::fan::presence::EEPROMDevice 59 * @brief Stops the bind timer if running and unbinds the device 73 * @brief When the bind timer expires it will bind the device. 79 auto bindPath = path / "bind"; in bindTimerExpired() 80 std::ofstream bind{bindPath}; in bindTimerExpired() local 81 if (bind.good()) in bindTimerExpired() [all …]
|
/openbmc/u-boot/include/dm/ |
H A D | root.h | 34 * dm_scan_platdata() - Scan all platform data and bind drivers 38 * @pre_reloc_only: If true, bind only drivers with the DM_FLAG_PRE_RELOC 39 * flag. If false bind all drivers. 45 * dm_scan_fdt() - Scan the device tree and bind drivers 51 * @pre_reloc_only: If true, bind only nodes with special devicetree properties, 52 * or drivers with the DM_FLAG_PRE_RELOC flag. If false bind all drivers. 58 * dm_extended_scan_fdt() - Scan the device tree and bind drivers 65 * @pre_reloc_only: If true, bind only nodes with special devicetree properties, 66 * or drivers with the DM_FLAG_PRE_RELOC flag. If false bind all drivers. 79 * @pre_reloc_only: If true, bind only nodes with special devicetree properties, [all …]
|
H A D | lists.h | 36 * lists_bind_drivers() - search for and bind all drivers to parent 42 * @pre_reloc_only: If true, bind only drivers with the DM_FLAG_PRE_RELOC flag. 43 * If false bind all drivers. 48 * lists_bind_fdt() - bind a device tree node 54 * @node: device tree node to bind 56 * @pre_reloc_only: If true, bind only nodes with special devicetree properties, 57 * or drivers with the DM_FLAG_PRE_RELOC flag. If false bind all drivers. 65 * device_bind_driver() - bind a device to a driver 78 * device_bind_driver_to_node() - bind a device to a driver for a node
|
/openbmc/openbmc/meta-facebook/meta-yosemite4/recipes-phosphor/gpio/phosphor-gpio-monitor/ |
H A D | probe-slot-device | 8 echo $HOST_BUS-0020 > /sys/bus/i2c/drivers/pca953x/bind 9 echo $HOST_BUS-0021 > /sys/bus/i2c/drivers/pca953x/bind 10 echo $HOST_BUS-0022 > /sys/bus/i2c/drivers/pca953x/bind 11 echo $HOST_BUS-0023 > /sys/bus/i2c/drivers/pca953x/bind 13 echo $HOST_VIRTUAL_BUS-0049 > /sys/bus/i2c/drivers/pca953x/bind 14 echo $HOST_VIRTUAL_BUS-0050 > /sys/bus/i2c/drivers/at24/bind 15 echo $HOST_VIRTUAL_BUS-0051 > /sys/bus/i2c/drivers/at24/bind 16 echo $HOST_VIRTUAL_BUS-0054 > /sys/bus/i2c/drivers/at24/bind
|
/openbmc/linux/tools/testing/selftests/net/ |
H A D | reuseaddr_ports_exhausted.c | 5 * Rules to bind sockets to the same port when all ephemeral ports are 8 * 1. if there are TCP_LISTEN sockets on the port, fail to bind. 9 * 2. if there are sockets without SO_REUSEADDR, fail to bind. 10 * 3. if SO_REUSEADDR is disabled, fail to bind. 12 * succeed to bind. 15 * succeed to bind. 16 * 6. fail to bind. 73 if (bind(fd, (struct sockaddr *)&local_addr, len) == -1) { in bind_port() 92 ASSERT_NE(-1, fd[0]) TH_LOG("failed to bind."); in TEST() 93 EXPECT_EQ(-1, fd[1]) TH_LOG("should fail to bind."); in TEST() [all …]
|
/openbmc/openbmc/poky/bitbake/bin/ |
H A D | bitbake-hashserv | 32 The bind address may take one of the following formats: 33 unix://PATH - Bind to unix domain socket at PATH 34 ws://ADDRESS:PORT - Bind to websocket on ADDRESS:PORT 35 ADDRESS:PORT - Bind to raw TCP socket on ADDRESS:PORT 37 To bind to all addresses, leave the ADDRESS empty, e.g. "--bind :8686" or 38 "--bind ws://:8686". To bind to a specific IPv6 address, enclose the address in 39 "[]", e.g. "--bind [::1]:8686" or "--bind ws://[::1]:8686" 74 "--bind", 76 help='Bind address (default $HASHSERVER_BIND, "%(default)s")', 131 … help="Enable SO_REUSEPORT, allowing multiple servers to bind to the same port for load balancing", [all …]
|
/openbmc/openbmc/meta-openembedded/meta-networking/recipes-connectivity/dhcp/files/ |
H A D | 0003-bind-Makefile.in-regenerate-configure.patch | 4 Subject: [PATCH] bind/Makefile.in: regenerate configure 12 bind/Makefile.in | 2 +- 15 diff --git a/bind/Makefile.in b/bind/Makefile.in 17 --- a/bind/Makefile.in 18 +++ b/bind/Makefile.in 21 echo Configuring BIND libraries for DHCP. ; \
|
H A D | 0002-bind-Makefile.in-disable-backtrace.patch | 4 Subject: [PATCH] bind/Makefile.in: disable backtrace 13 bind/Makefile.in | 2 +- 16 diff --git a/bind/Makefile.in b/bind/Makefile.in 18 --- a/bind/Makefile.in 19 +++ b/bind/Makefile.in
|
/openbmc/linux/tools/usb/usbip/doc/ |
H A D | usbipd.8 | 13 .B usbip bind 23 Bind to IPv4. Default is both. 29 Bind to IPv6. Default is both. 35 Run in device mode. Rather than drive an attached device, create a virtual UDC to bind gadgets to. 90 server:# usbip bind --busid=1-2 91 - Bind usbip-host.ko to the device of busid 1-2. 105 - Bind a gadget to usbip-vudc.
|
/openbmc/linux/drivers/gpu/drm/i915/ |
H A D | i915_vma_resource.h | 37 * struct i915_vma_bindinfo - Information needed for async bind 38 * only but that can be dropped after the bind has taken place. 76 * @private: Bind backend private info. 77 * @start: Offset into the address space of bind range start. Note that 81 * @vma_size: Bind size. 82 * @guard: The size of guard area preceding and trailing the bind. 83 * @page_sizes_gtt: Resulting page sizes from the bind operation. 113 * @bi: Information needed for async bind only but that can be dropped 114 * after the bind has taken place. 190 * @private: Bind backend private info. [all …]
|
/openbmc/linux/include/linux/usb/ |
H A D | composite.h | 108 * @strings: tables of strings, keyed by identifiers assigned during bind() 111 * string identifiers assigned during @bind(). If this pointer is null, 114 * string identifiers assigned during @bind(). If this pointer is null, 117 * string identifiers assigned during @bind(). If this 121 * interface and string identifiers assigned during @bind(). If 130 * @bind: Before the gadget can register, all of its functions bind() to the 133 * @unbind: Reverses @bind; called as a side effect of unregistering the 160 * causes @bind() to be called so resources can be allocated as part of 194 /* REVISIT: bind() functions can be marked __init, which 197 * Related: unbind() may kfree() but bind() won't... [all …]
|
/openbmc/u-boot/cmd/ |
H A D | bind.c | 42 printf("Unable to bind. err:%d\n", ret); in bind_by_class_index() 156 printf("Unable to bind. err:%d\n", ret); in bind_by_node_path() 201 bool bind; in do_bind_unbind() local 207 bind = (argv[0][0] == 'b'); in do_bind_unbind() 210 if (by_node && bind) { in do_bind_unbind() 214 } else if (by_node && !bind) { in do_bind_unbind() 218 } else if (!by_node && bind) { in do_bind_unbind() 224 } else if (!by_node && !bind) { in do_bind_unbind() 243 bind, 4, 0, do_bind_unbind, 244 "Bind a device to a driver", [all …]
|
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-graphics/directfb/directfb/ |
H A D | 0001-inputdrivers-Correct-the-signature-of-bind-call-on-m.patch | 4 Subject: [PATCH] inputdrivers: Correct the signature of bind() call on musl 9 …tdrivers/linux_input/linux_input.c:1551:27: error: passing argument 2 of 'bind' from incompatible … 10 1551 | rt = bind(socket_fd, &sock_addr, 29 - rt = bind(socket_fd, &sock_addr, 30 + rt = bind(socket_fd, (struct sockaddr *)&sock_addr, 33 D_PERROR( "DirectFB/linux_input: bind() failed: %s\n",
|
/openbmc/linux/drivers/xen/ |
H A D | evtchn.c | 62 struct mutex bind_mutex; /* serialize bind/unbind operations */ 386 * serialized bind operations.) in evtchn_bind_to_user() 414 /* bind failed, should close the port now */ in evtchn_bind_to_user() 442 /* Prevent bind from racing with unbind */ in evtchn_ioctl() 447 struct ioctl_evtchn_bind_virq bind; in evtchn_ioctl() local 455 if (copy_from_user(&bind, uarg, sizeof(bind))) in evtchn_ioctl() 458 bind_virq.virq = bind.virq; in evtchn_ioctl() 472 struct ioctl_evtchn_bind_interdomain bind; in evtchn_ioctl() local 476 if (copy_from_user(&bind, uarg, sizeof(bind))) in evtchn_ioctl() 481 u->restrict_domid != bind.remote_domain) in evtchn_ioctl() [all …]
|
/openbmc/linux/include/linux/ |
H A D | component.h | 18 * @bind: 21 * ready to bind the overall driver. 23 int (*bind)(struct device *comp, struct device *master, member 29 * ready to bind the overall driver, or when component_bind_all() fails 54 * @bind: 58 * ready. Usually there are 3 steps to bind an aggregate driver: 62 * 2. Bind all components to the aggregate driver by calling 74 int (*bind)(struct device *master); member
|
/openbmc/linux/Documentation/driver-api/ |
H A D | console.rst | 25 do_take_over_console() - load and bind driver to console layer 45 . .. bind name uevent 49 1. bind - this is a read/write file. It shows the status of the driver if 50 read, or acts to bind or unbind the driver to the virtual consoles 59 bind 67 commanded to bind or unbind 75 directly commanded to bind or unbind. 81 hand, will bind the driver to the consoles that are currently occupied by a 126 bind to) the console.
|