1
0
mirror of https://git.yoctoproject.org/meta-ti synced 2026-05-07 03:49:20 +00:00

gadget-init: add ugly, ugly hack to make USB work on ti33x boards

This is NOT suitable for customers or production.

Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
This commit is contained in:
Koen Kooi
2011-10-18 10:22:48 +02:00
parent ff7221f486
commit 8757f93089
3 changed files with 40 additions and 0 deletions
+22
View File
@@ -0,0 +1,22 @@
DESCRIPTION = "Units to initialize usb gadgets"
LICENSE = "MIT"
LIC_FILES_CHKSUM = "file://${COREBASE}/LICENSE;md5=3f40d7994397109285ec7b81fdeb3b58"
COMPATIBLE_MACHINE = "(ti33x)"
PACKAGE_ARCH = "${MACHINE_ARCH}"
SRC_URI = "file://storage-gadget-init.service \
file://hokey-pokey.service \
"
do_install() {
install -d ${D}${base_libdir}/systemd/system/basic.target.wants
install -m 0644 ${WORKDIR}/*.service ${D}${base_libdir}/systemd/system
for i in ${WORKDIR}/*.service ; do
install -m 0644 $i ${D}${base_libdir}/systemd/system
ln -sf ../$(basename $i) ${D}${base_libdir}/systemd/system/basic.target.wants/
done
}
FILES_${PN} = "${base_libdir}/systemd"
@@ -0,0 +1,9 @@
[Unit]
Description=Hokey Pokey modprobe dance to get the USB host port working
After=storage-gadget-init.service
[Service]
ExecStart=/sbin/modprobe g_zero
[Install]
WantedBy=basic-user.target
@@ -0,0 +1,9 @@
[Unit]
Description=Start usb mass storage gadget
After=dev-mmcblk0p1.device
[Service]
ExecStart=/sbin/modprobe g_mass_storage file=/dev/mmcblk0p1 cdrom=0 stall=0 removable=1 nofua=1
[Install]
WantedBy=basic-user.target