linuxOS_AP05/buildroot/package/rockchip/thunderboot/S90tb_emmc

19 lines
162 B
Plaintext
Raw Normal View History

2025-06-02 05:59:07 +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