repo.or.cz
/
anomen-kernel-config.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
raspi customs
[anomen-kernel-config.git]
/
raspi
/
customs
/
usr
/
local
/
bin
/
mountall
blob
056b18052cef2c12a2a4e520b4d17d1a87de2dfe
1
#!/bin/sh
2
3
for
A
in
`ls /dev/disk/by-label `
4
do
5
test
"x
$A
"
=
"xboot"
&&
continue
6
test
"x
$A
"
=
"xTAKEMS_16GB"
&&
continue
7
8
echo
Mounting
:
$A
9
pumount
/
dev
/
disk
/
by-label
/
$A
10
pmount
-u
000
--noatime
/
dev
/
disk
/
by-label
/
$A $A
11
done
12