]> spindle.queued.net Git - xodist/blob - mkjffs2.sh
suppress dd(1) stderr
[xodist] / mkjffs2.sh
1 #!/bin/bash -e
2 #
3 # Copyright © 2008  Andres Salomon <dilinger@queued.net>
4 #
5 # This file is free software; you can redistribute it and/or modify it
6 # under the terms of the GNU General Public License as published by
7 # the Free Software Foundation; either version 2 of the License, or
8 # (at your option) any later version.
9 #
10 # This program is distributed in the hope that it will be useful, but
11 # WITHOUT ANY WARRANTY; without even the implied warranty of
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13 # General Public License for more details.
14 #
15 # You should have received a copy of the GNU General Public License
16 # along with this program; if not, write to the Free Software
17 # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
18
19 . functions.sh
20
21 usage()
22 {
23         echo "" 1>&2
24         echo "Usage: $0 <root directory> <img>" 1>&2
25         echo "" 1>&2
26         exit 1
27 }
28
29 if [ "$#" != "2" ]; then
30         usage
31 fi
32
33 ROOT_DIR=$1
34 IMG_NAME=$2
35
36 if [ "${IMG_NAME}" == "${IMG_NAME/.img/.dat}" ]; then
37         DAT_NAME=${IMG_NAME}.dat
38 else
39         DAT_NAME=${IMG_NAME/.img/.dat}
40 fi
41
42 if [ ! -d "${ROOT_DIR}" ]; then
43         echo "" 1>&2
44         echo "*** Unable to find root directory!" 1>&2
45         usage
46 fi
47
48 check_for_cmds mkfs.jffs2 sumtool || exit 1
49 create_fstab ${ROOT_DIR} jffs2
50 create_ofwboot ${ROOT_DIR} jffs2
51
52 create_jffs2()
53 {
54         root_dir="$1"
55         out="$2"
56
57         # XXX:  do we want to switch to lzo?  (mkfs.jffs2 -X lzo)
58         mkfs.jffs2 -n -e128KiB -r ${root_dir} -o ${out}.pre
59         sumtool -n -p -e 128KiB -i ${out}.pre -o ${out}
60         rm -f ${out}.pre
61 }
62
63 do_sha256()
64 {
65         f=$1
66         eblocks=$((`stat --printf "%s\n" $f` / (128*1024)))
67         for b in $(seq 0 $(($eblocks - 1))); do
68                 sha=$(dd status=noxfer bs=128KiB skip=$b count=1 if=$f 2>/dev/null | sha256sum | cut -d- -f1)
69                 echo "eblock: `printf '%x' $b` sha256 $sha" >> ${IMG_NAME}
70         done
71 }
72
73 partition_map()
74 {
75         # 0x190 * 128KiB = 50MiB boot, and the rest for root
76         cat >${IMG_NAME}<<EOF
77 data:  ${DAT_NAME}
78 erase-all
79 partitions:  boot 190  root -1
80 set-partition: boot 
81 mark-pending: 0
82 EOF
83         do_sha256 "_boot.img"
84         cat >>${IMG_NAME}<<EOF
85 cleanmarkers
86 mark-complete: 0
87 set-partition: root
88 mark-pending: 0
89 EOF
90         do_sha256 "_root.img"
91         cat >>${IMG_NAME}<<EOF
92 cleanmarkers
93 mark-complete: 0
94 EOF
95 }
96
97 # create the boot partition
98 ln -s . ${ROOT_DIR}/boot/boot
99 create_jffs2 ${ROOT_DIR}/boot _boot.img
100 rm -f ${ROOT_DIR}/boot/boot
101
102 # create the root partition
103 mv ${ROOT_DIR}/boot _boot
104 mkdir ${ROOT_DIR}/boot
105 create_jffs2 ${ROOT_DIR} _root.img
106 rmdir ${ROOT_DIR}/boot
107 mv _boot ${ROOT_DIR}/boot
108
109 # concat partitions, finish up
110 partition_map
111 cat _boot.img _root.img > ${DAT_NAME}
112 rm -f _boot.img _root.img