blob: cbe58e13c8e99eec82df1b7baa9bd6cbd78ca8e5 [file] [log] [blame]
Adriana Kobylake882f912017-07-06 10:31:59 -05001#!/bin/sh
2
3# Get the mtd device number (mtdX)
4findmtd() {
5 m="$(grep -xl "$1" /sys/class/mtd/*/name)"
6 m="${m%/name}"
7 m="${m##*/}"
8 echo "${m}"
9}
10
Adriana Kobylakf15e77c2017-07-06 11:26:42 -050011# Get the ubi device number (ubiX_Y)
12findubi() {
13 u="$(grep -xl "$1" /sys/class/ubi/ubi?/subsystem/ubi*/name)"
14 u="${u%/name}"
15 u="${u##*/}"
16 echo "${u}"
17}
18
19# Get the mount information
20is_mounted() {
21 grep -q "$1" /proc/mounts
22 return $?
23}
24
Adriana Kobylake882f912017-07-06 10:31:59 -050025# Attach the pnor mtd device to ubi
26attach_ubi() {
27 pnormtd="$(findmtd pnor)"
28 pnor="${pnormtd#mtd}"
29 pnordev="/dev/mtd${pnor}"
30
31 ubiattach /dev/ubi_ctrl -m "${pnor}" -d "${pnor}"
32 rc=$?
33 if [ ${rc} -ne 0 ]; then
34 # Check the pnor mtd device is formatted as ubi by reading the first 3 byes,
35 # which should be the ascii chars 'UBI'
36 magic="$(hexdump -C -n 3 ${pnordev})"
37 if [[ "${magic}" =~ "UBI" ]]; then
38 # Device already formatted as ubi, ubiattach failed for some other reason
39 return ${rc}
40 else
41 # Format device as ubi
42 echo "Starting ubiformat ${pnordev}"
43 ubiformat "${pnordev}" -y -q
44 # Retry the ubiattach
45 ubiattach /dev/ubi_ctrl -m "${pnor}" -d "${pnor}"
46 fi
47 fi
48}
49
Adriana Kobylakf15e77c2017-07-06 11:26:42 -050050mount_squashfs() {
51 pnormtd="$(findmtd pnor)"
52 pnor="${pnormtd#mtd}"
53 ubidev="/dev/ubi${pnor}"
54 mountdir="/media/${name}"
55
56 if [ ! -d "${mountdir}" ]; then
57 mkdir "${mountdir}"
58 fi
59
Adriana Kobylakd3165592017-07-18 12:24:24 -050060 # Create a static ubi volume of arbitrary size 24MB,
61 # the current pnor image is ~19MB
62 # TODO Set size based on file size openbmc/openbmc#1840
Adriana Kobylakf15e77c2017-07-06 11:26:42 -050063 vol="$(findubi "${name}")"
64 if [ -z "${vol}" ]; then
Adriana Kobylakd3165592017-07-18 12:24:24 -050065 ubimkvol "${ubidev}" -N "${name}" -s 24MiB --type=static
Adriana Kobylakf15e77c2017-07-06 11:26:42 -050066 vol="$(findubi "${name}")"
67 fi
68
69 # Create a ubi block needed for read-only volumes,
70 # and update the volume with the pnor squashfs image
71 ubidevid="${vol#ubi}"
72 block="/dev/ubiblock${ubidevid}"
73 if [ ! -e "$block" ]; then
74 img="/tmp/images/${version}/pnor.xz.squashfs"
75 ubiblock --create "/dev/ubi${ubidevid}"
76 ubiupdatevol "/dev/ubi${ubidevid}" "${img}"
77 fi
78
79 if ! is_mounted "${name}"; then
80 mount -t squashfs -o ro "${block}" "${mountdir}"
81 fi
82}
83
Adriana Kobylak6aff5742017-07-06 11:29:46 -050084mount_ubi() {
85 pnormtd="$(findmtd pnor)"
86 pnor="${pnormtd#mtd}"
87 ubidev="/dev/ubi${pnor}"
88 mountdir="/media/${name}"
89
Adriana Kobylakd3165592017-07-18 12:24:24 -050090 if [[ "${name}" == "pnor-prsv" ]]; then
91 size="2MiB"
92 else
93 size="16MiB"
94 fi
95
Adriana Kobylak6aff5742017-07-06 11:29:46 -050096 if [ ! -d "${mountdir}" ]; then
97 mkdir "${mountdir}"
98 fi
99
Adriana Kobylak6aff5742017-07-06 11:29:46 -0500100 vol="$(findubi "${name}")"
101 if [ -z "${vol}" ]; then
Adriana Kobylakd3165592017-07-18 12:24:24 -0500102 ubimkvol "${ubidev}" -N "${name}" -s "${size}"
Adriana Kobylak6aff5742017-07-06 11:29:46 -0500103 fi
104
105 if ! is_mounted "${name}"; then
106 mountdev="ubi${pnor}:${name}"
107 mount -t ubifs "${mountdev}" "${mountdir}"
108 fi
109}
110
Adriana Kobylake882f912017-07-06 10:31:59 -0500111case "$1" in
112 ubiattach)
113 attach_ubi
114 ;;
Adriana Kobylakf15e77c2017-07-06 11:26:42 -0500115 squashfsmount)
116 name="$2"
117 version="$3"
118 mount_squashfs
119 ;;
Adriana Kobylak6aff5742017-07-06 11:29:46 -0500120 ubimount)
121 name="$2"
122 mount_ubi
123 ;;
Adriana Kobylake882f912017-07-06 10:31:59 -0500124 *)
125 echo "Invalid argument"
126 exit 1
127 ;;
128esac
129rc=$?
130if [ ${rc} -ne 0 ]; then
131 echo "$0: error ${rc}"
132 exit ${rc}
133fi