arm:if present start usbd
Change-Id: Ide4079b993f9525d09a6a42dfb09b958dc546942 http://gerrit.minix3.org/#/c/2695/
This commit is contained in:
parent
b32ff391d3
commit
489a81f55d
2 changed files with 15 additions and 0 deletions
5
etc/rc
5
etc/rc
|
@ -200,6 +200,11 @@ down|stop)
|
|||
/usr/pkg/etc/rc.d/usbd stop
|
||||
fi
|
||||
|
||||
if [ -x /usr/sbin/usbd ]
|
||||
then
|
||||
service down usbd
|
||||
fi
|
||||
|
||||
# Tell RS server we're going down.
|
||||
service shutdown
|
||||
;;
|
||||
|
|
10
etc/usr/rc
10
etc/usr/rc
|
@ -282,6 +282,11 @@ start|autoboot)
|
|||
# fb hasn't been ported to AM335X yet.
|
||||
fi
|
||||
|
||||
if [ -e /usr/sbin/usbd ]
|
||||
then
|
||||
echo "Starting USBD"
|
||||
up usbd
|
||||
fi
|
||||
# Detect expansion boards and start drivers.
|
||||
capemgr
|
||||
|
||||
|
@ -310,6 +315,11 @@ start|autoboot)
|
|||
#up fb -dev /dev/fb0 -args edid.0=tda19988.1.3470
|
||||
# fb hasn't been ported to AM335X yet.
|
||||
|
||||
if [ -e /usr/sbin/usbd ]
|
||||
then
|
||||
echo "Starting USBD"
|
||||
up usbd
|
||||
fi
|
||||
# Detect expansion boards and start drivers.
|
||||
capemgr
|
||||
|
||||
|
|
Loading…
Reference in a new issue