|
@@ -8,6 +8,7 @@ import signal
|
|
|
MMC2DEV=['/dev/mmcblk1p1', '/dev/mmcblk2p1', '/dev/mmcblk3p1', '/dev/mmcblk4p1']
|
|
|
MMC2DEBUG='/sys/kernel/debug/mmc'
|
|
|
MODPROBE='/sbin/modprobe'
|
|
|
+MOUNTPOINT='/media/extSD'
|
|
|
|
|
|
def mountMMC2():
|
|
|
mmc_number=0
|
|
@@ -21,7 +22,7 @@ def mountMMC2():
|
|
|
if dev is not None:
|
|
|
r=None
|
|
|
for i in range(10):
|
|
|
- r=subprocess.run(['/bin/mount', dev, '/extSD','-o','user,ro,umask=000,iocharset=utf8,codepage=932,shortname=mixed'])
|
|
|
+ r=subprocess.run(['/bin/mount', dev, MOUNTPOINT,'-o','user,ro,umask=000,iocharset=utf8,codepage=932,shortname=mixed'])
|
|
|
if r.returncode != 0:
|
|
|
time.sleep(1)
|
|
|
else:
|
|
@@ -42,7 +43,7 @@ def mountMMC2():
|
|
|
return False
|
|
|
|
|
|
def umountMMC2():
|
|
|
- os.system('/bin/umount /extSD')
|
|
|
+ os.system('/bin/umount '+MOUNTPOINT)
|
|
|
return
|
|
|
|
|
|
def signal_handler(signal, handler):
|