Adriana Kobylak | adb57d9 | 2017-04-28 16:05:39 -0500 | [diff] [blame] | 1 | [Unit] |
| 2 | Description=Mount SquashFS image pnor-ro-%I |
| 3 | Requires=obmc-flash-bios-ubiattach.service |
| 4 | After=obmc-flash-bios-ubiattach.service |
| 5 | |
| 6 | [Service] |
| 7 | Type=oneshot |
Adriana Kobylak | f256ae5 | 2017-05-01 12:23:17 -0500 | [diff] [blame] | 8 | RemainAfterExit=no |
Adriana Kobylak | adb57d9 | 2017-04-28 16:05:39 -0500 | [diff] [blame] | 9 | ExecStart=/bin/sh -c '{sbindir}/ubimkvol /dev/ubi0 -N pnor-ro-%i -s 32MiB --type=static; \ |
| 10 | mkdir /media/pnor-ro-%i; \ |
| 11 | volumeid%i=`ubinfo -d 0 -N pnor-ro-%i | grep "Volume ID" | sed -e "s|Volume ID:||" -e "s/^ *//" | grep -o "^\S*"`; \ |
| 12 | ubiblock --create /dev/ubi0_$volumeid%i; \ |
| 13 | ubiupdatevol /dev/ubi0_$volumeid%i /tmp/images/%i/pnor.xz.squashfs; \ |
| 14 | mount -t squashfs -o ro /dev/ubiblock0_$volumeid%i /media/pnor-ro-%i' |