mirror of
https://github.com/systemd/systemd-stable.git
synced 2024-12-22 13:33:56 +03:00
units: add usb-gadget target
Linux can be run on a device meant to act as a USB peripheral. In order for a machine to act as such a USB device it has to be equipped with a UDC - USB Device Controller. This patch adds a target reached when UDC becomes available. It can be used for activating e.g. a service unit which composes a USB gadget with configfs and activates it.
This commit is contained in:
parent
791cd15993
commit
2c633a821e
@ -83,6 +83,7 @@
|
|||||||
<filename>time-sync.target</filename>,
|
<filename>time-sync.target</filename>,
|
||||||
<filename>timers.target</filename>,
|
<filename>timers.target</filename>,
|
||||||
<filename>umount.target</filename>,
|
<filename>umount.target</filename>,
|
||||||
|
<filename>usb-gadget.target</filename>,
|
||||||
<!-- slices --><filename>-.slice</filename>,
|
<!-- slices --><filename>-.slice</filename>,
|
||||||
<filename>system.slice</filename>,
|
<filename>system.slice</filename>,
|
||||||
<filename>user.slice</filename>,
|
<filename>user.slice</filename>,
|
||||||
@ -799,6 +800,16 @@
|
|||||||
dynamically when audio hardware is found.</para>
|
dynamically when audio hardware is found.</para>
|
||||||
</listitem>
|
</listitem>
|
||||||
</varlistentry>
|
</varlistentry>
|
||||||
|
<varlistentry>
|
||||||
|
<term><filename>usb-gadget.target</filename></term>
|
||||||
|
<listitem>
|
||||||
|
<para>This target is started automatically as soon as a
|
||||||
|
USB Device Controller becomes available at boot.</para>
|
||||||
|
|
||||||
|
<para>This may be used to pull in usb gadget
|
||||||
|
dynamically when UDC hardware is found.</para>
|
||||||
|
</listitem>
|
||||||
|
</varlistentry>
|
||||||
</variablelist>
|
</variablelist>
|
||||||
</refsect2>
|
</refsect2>
|
||||||
|
|
||||||
|
@ -56,6 +56,8 @@ SUBSYSTEM=="printer", TAG+="systemd", ENV{SYSTEMD_WANTS}+="printer.target"
|
|||||||
SUBSYSTEM=="usb", KERNEL=="lp*", TAG+="systemd", ENV{SYSTEMD_WANTS}+="printer.target"
|
SUBSYSTEM=="usb", KERNEL=="lp*", TAG+="systemd", ENV{SYSTEMD_WANTS}+="printer.target"
|
||||||
SUBSYSTEM=="usb", ENV{DEVTYPE}=="usb_device", ENV{ID_USB_INTERFACES}=="*:0701??:*", TAG+="systemd", ENV{SYSTEMD_WANTS}+="printer.target"
|
SUBSYSTEM=="usb", ENV{DEVTYPE}=="usb_device", ENV{ID_USB_INTERFACES}=="*:0701??:*", TAG+="systemd", ENV{SYSTEMD_WANTS}+="printer.target"
|
||||||
|
|
||||||
|
SUBSYSTEM=="udc", ACTION=="add", TAG+="systemd", ENV{SYSTEMD_WANTS}+="usb-gadget.target"
|
||||||
|
|
||||||
# Apply sysctl variables to network devices (and only to those) as they appear.
|
# Apply sysctl variables to network devices (and only to those) as they appear.
|
||||||
ACTION=="add", SUBSYSTEM=="net", KERNEL!="lo", RUN+="@rootlibexecdir@/systemd-sysctl --prefix=/net/ipv4/conf/$name --prefix=/net/ipv4/neigh/$name --prefix=/net/ipv6/conf/$name --prefix=/net/ipv6/neigh/$name"
|
ACTION=="add", SUBSYSTEM=="net", KERNEL!="lo", RUN+="@rootlibexecdir@/systemd-sysctl --prefix=/net/ipv4/conf/$name --prefix=/net/ipv4/neigh/$name --prefix=/net/ipv6/conf/$name --prefix=/net/ipv6/neigh/$name"
|
||||||
|
|
||||||
|
12
units/usb-gadget.target
Normal file
12
units/usb-gadget.target
Normal file
@ -0,0 +1,12 @@
|
|||||||
|
# SPDX-License-Identifier: LGPL-2.1+
|
||||||
|
#
|
||||||
|
# This file is part of systemd.
|
||||||
|
#
|
||||||
|
# systemd is free software; you can redistribute it and/or modify it
|
||||||
|
# under the terms of the GNU Lesser General Public License as published by
|
||||||
|
# the Free Software Foundation; either version 2.1 of the License, or
|
||||||
|
# (at your option) any later version.
|
||||||
|
|
||||||
|
[Unit]
|
||||||
|
Description=Hardware activated USB gadget
|
||||||
|
Documentation=man:systemd.special(7)
|
Loading…
Reference in New Issue
Block a user