linuxOS_PX30_CAR/buildroot/package/rockchip/thunderboot/S90tb_emmc

19 lines
162 B
Plaintext
Raw Normal View History

2026-01-20 05:50:57 +00:00
#!/bin/sh
#
case "$1" in
start)
{
insmod /lib/modules/dw_mmc-rockchip.ko
}&
;;
stop)
;;
*)
echo "Usage: $0 {start|stop}"
exit 1
;;
esac
exit 0