blob: 7bafa6356b66d5d3ad72f47d299f952edd73f44c [file] [log] [blame]
# Copyright (c) 2012 The Chromium OS Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
description "Trigger udev events"
author "chromium-os-dev@chromium.org"
# We must run eventually even if the UI doesn't come up correctly,
# because network configuration depends on this job.
start on starting failsafe
script
# Some classes of devices are triggered by separate udev-trigger-*.conf
# jobs
udevadm trigger --subsystem-nomatch="input" --subsystem-nomatch="misc" \
--subsystem-nomatch="graphics" --subsystem-nomatch="drm" \
--subsystem-nomatch="nvhost"
exec udevadm settle
end script