mirror of
https://github.com/systemd/systemd
synced 2026-03-11 07:34:58 +01:00
Compare commits
No commits in common. "a174da59c299f6197425707f23757dc9149e5fba" and "4b252eaa316ae811f6523cde0028fc53ba29e6cf" have entirely different histories.
a174da59c2
...
4b252eaa31
@ -10,8 +10,9 @@ SUBSYSTEM=="virtio-ports", KERNEL=="vport*", ATTR{name}=="?*", SYMLINK+="virtio-
|
|||||||
SUBSYSTEM=="rtc", ATTR{hctosys}=="1", SYMLINK+="rtc"
|
SUBSYSTEM=="rtc", ATTR{hctosys}=="1", SYMLINK+="rtc"
|
||||||
SUBSYSTEM=="rtc", KERNEL=="rtc0", SYMLINK+="rtc", OPTIONS+="link_priority=-100"
|
SUBSYSTEM=="rtc", KERNEL=="rtc0", SYMLINK+="rtc", OPTIONS+="link_priority=-100"
|
||||||
|
|
||||||
SUBSYSTEM=="usb", ENV{DEVTYPE}=="usb_device", IMPORT{builtin}="usb_id", IMPORT{builtin}="hwdb --subsystem=usb"
|
SUBSYSTEM=="usb", ENV{DEVTYPE}=="usb_device", IMPORT{builtin}="usb_id", IMPORT{builtin}="hwdb --subsystem=usb", GOTO="default_hwdb_imported"
|
||||||
ENV{MODALIAS}!="", IMPORT{builtin}="hwdb --subsystem=$env{SUBSYSTEM}"
|
ENV{MODALIAS}!="", IMPORT{builtin}="hwdb --subsystem=$env{SUBSYSTEM}"
|
||||||
|
LABEL="default_hwdb_imported"
|
||||||
|
|
||||||
ACTION!="add", GOTO="default_end"
|
ACTION!="add", GOTO="default_end"
|
||||||
|
|
||||||
|
|||||||
@ -4,8 +4,9 @@ ACTION=="remove", GOTO="serial_end"
|
|||||||
SUBSYSTEM!="tty", GOTO="serial_end"
|
SUBSYSTEM!="tty", GOTO="serial_end"
|
||||||
|
|
||||||
SUBSYSTEMS=="pci", ENV{ID_BUS}="pci", ENV{ID_VENDOR_ID}="$attr{vendor}", ENV{ID_MODEL_ID}="$attr{device}"
|
SUBSYSTEMS=="pci", ENV{ID_BUS}="pci", ENV{ID_VENDOR_ID}="$attr{vendor}", ENV{ID_MODEL_ID}="$attr{device}"
|
||||||
SUBSYSTEMS=="pci", IMPORT{builtin}="hwdb --subsystem=pci"
|
# We already ran the hwdb builtin for devices with MODALIAS in 50-default.rules.
|
||||||
SUBSYSTEMS=="usb", IMPORT{builtin}="usb_id", IMPORT{builtin}="hwdb --subsystem=usb"
|
# Let's cover the remaining case here, where we walk up the tree to find a node with $MODALIAS.
|
||||||
|
ENV{MODALIAS}=="", SUBSYSTEMS=="pci", IMPORT{builtin}="hwdb --subsystem=pci"
|
||||||
|
|
||||||
# /dev/serial/by-path/, /dev/serial/by-id/ for USB devices
|
# /dev/serial/by-path/, /dev/serial/by-id/ for USB devices
|
||||||
KERNEL!="ttyUSB[0-9]*|ttyACM[0-9]*", GOTO="serial_end"
|
KERNEL!="ttyUSB[0-9]*|ttyACM[0-9]*", GOTO="serial_end"
|
||||||
|
|||||||
@ -1078,10 +1078,8 @@ static int run_debug(int argc, char **argv, void *userdata) {
|
|||||||
if (r < 0)
|
if (r < 0)
|
||||||
return r;
|
return r;
|
||||||
|
|
||||||
if (!arg_quiet) {
|
print_info(stdout, j, false);
|
||||||
print_info(stdout, j, false);
|
fputs("\n", stdout);
|
||||||
fputs("\n", stdout);
|
|
||||||
}
|
|
||||||
|
|
||||||
r = sd_journal_get_data(j, "COREDUMP_EXE", (const void**) &data, &len);
|
r = sd_journal_get_data(j, "COREDUMP_EXE", (const void**) &data, &len);
|
||||||
if (r < 0)
|
if (r < 0)
|
||||||
|
|||||||
@ -744,7 +744,6 @@ mkdir -p /etc/udev/rules.d
|
|||||||
cat > /etc/udev/rules.d/00-set-LD_PRELOAD.rules << INNER_EOF
|
cat > /etc/udev/rules.d/00-set-LD_PRELOAD.rules << INNER_EOF
|
||||||
SUBSYSTEM=="block", ENV{LD_PRELOAD}="$ASAN_RT_PATH"
|
SUBSYSTEM=="block", ENV{LD_PRELOAD}="$ASAN_RT_PATH"
|
||||||
INNER_EOF
|
INNER_EOF
|
||||||
chmod 0644 /etc/udev/rules.d/00-set-LD_PRELOAD.rules
|
|
||||||
|
|
||||||
# The 'mount' utility doesn't behave well under libasan, causing unexpected
|
# The 'mount' utility doesn't behave well under libasan, causing unexpected
|
||||||
# fails during boot and subsequent test results check:
|
# fails during boot and subsequent test results check:
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user