evbarm.conf revision 1.16 1 1.16 jmcneill # $NetBSD: evbarm.conf,v 1.16 2014/09/09 13:02:25 jmcneill Exp $
2 1.1 christos # evbarm shared config
3 1.1 christos #
4 1.1 christos image=$HOME/${board}.img
5 1.1 christos
6 1.1 christos specialdirs="/kern /proc"
7 1.14 christos MACHINE=evbarm
8 1.1 christos
9 1.1 christos swap=256
10 1.1 christos extra=8 # spare space
11 1.1 christos boot=112
12 1.1 christos init=8
13 1.15 christos ffsoffset=$(( (${init} + ${boot} + ${swap}) / 2 ))m
14 1.1 christos
15 1.1 christos size=0 # autocompute
16 1.1 christos msdosid=12
17 1.1 christos
18 1.15 christos mkdir -p ${mnt}/boot
19 1.15 christos
20 1.5 christos make_label_evbarm() {
21 1.10 htodd # compute all sizes in terms of sectors
22 1.10 htodd local totalsize=$(( ${newsize} * 1024 * 2 / 512 ))
23 1.10 htodd
24 1.1 christos local swapsize=$(( ${swap} * 1024 ))
25 1.1 christos local bootsize=$(( ${boot} * 1024 ))
26 1.1 christos
27 1.3 skrll local bootoffset=$(( ${init} * 1024 ))
28 1.1 christos local swapoffset=$(( ${bootoffset} + ${bootsize} ))
29 1.3 skrll
30 1.3 skrll local asize=$(( ${totalsize} - ${swapsize} - ${bootsize} - ${bootoffset} ))
31 1.1 christos local aoffset=$(( ${swapoffset} + ${swapsize} ))
32 1.1 christos
33 1.1 christos local bps=512
34 1.1 christos local spt=32
35 1.1 christos local tpc=64
36 1.1 christos local spc=2048
37 1.1 christos local cylinders=$(( ${totalsize} / ${spc} ))
38 1.1 christos
39 1.5 christos cat << EOF
40 1.1 christos type: SCSI
41 1.1 christos disk: STORAGE DEVICE
42 1.1 christos label: fictitious
43 1.1 christos flags: removable
44 1.1 christos bytes/sector: ${bps}
45 1.1 christos sectors/track: ${spt}
46 1.1 christos tracks/cylinder: ${tpc}
47 1.1 christos sectors/cylinder: ${spc}
48 1.1 christos cylinders: ${cylinders}
49 1.1 christos total sectors: ${totalsize}
50 1.1 christos rpm: 3600
51 1.1 christos interleave: 1
52 1.1 christos trackskew: 0
53 1.1 christos cylinderskew: 0
54 1.1 christos headswitch: 0 # microseconds
55 1.1 christos track-to-track seek: 0 # microseconds
56 1.1 christos drivedata: 0
57 1.1 christos
58 1.1 christos 8 partitions:
59 1.1 christos # size offset fstype [fsize bsize cpg/sgs]
60 1.1 christos a: ${asize} ${aoffset} 4.2BSD ${fsize} ${bsize} 0 #
61 1.1 christos b: ${swapsize} ${swapoffset} swap #
62 1.12 matt c: ${totalsize} 0 unused 0 0 #
63 1.1 christos d: ${totalsize} 0 unused 0 0 #
64 1.1 christos e: ${bootsize} ${bootoffset} MSDOS #
65 1.1 christos EOF
66 1.1 christos }
67 1.1 christos
68 1.11 christos make_fstab_evbarm_normal() {
69 1.5 christos cat > ${mnt}/etc/fstab << EOF
70 1.1 christos # NetBSD /etc/fstab
71 1.1 christos # See /usr/share/examples/fstab/ for more examples.
72 1.1 christos /dev/ld0a / ffs rw,log 1 1
73 1.1 christos /dev/ld0b none swap sw 0 0
74 1.1 christos /dev/ld0e /boot msdos rw 1 1
75 1.1 christos kernfs /kern kernfs rw
76 1.1 christos ptyfs /dev/pts ptyfs rw
77 1.1 christos procfs /proc procfs rw
78 1.1 christos EOF
79 1.1 christos }
80 1.1 christos
81 1.11 christos # From Richard Neswold's:
82 1.11 christos # http://rich-tbp.blogspot.com/2013/03/netbsd-on-rpi-minimizing-disk-writes.html
83 1.11 christos # Also for the postfix stuff below
84 1.11 christos make_fstab_evbarm_minwrites() {
85 1.11 christos cat > ${mnt}/etc/fstab << EOF
86 1.11 christos # NetBSD /etc/fstab
87 1.11 christos # See /usr/share/examples/fstab/ for more examples.
88 1.11 christos /dev/ld0a / ffs rw,log,noatime,nodevmtime 1 1
89 1.11 christos /dev/ld0b none swap sw 0 0
90 1.11 christos /dev/ld0e /boot msdos rw 1 1
91 1.11 christos kernfs /kern kernfs rw
92 1.11 christos ptyfs /dev/pts ptyfs rw
93 1.11 christos procfs /proc procfs rw
94 1.11 christos tmpfs /tmp tmpfs rw,-s32M
95 1.11 christos tmpfs /var/log tmpfs rw,union,-s32M
96 1.11 christos tmpfs /var/run tmpfs rw,union,-s1M
97 1.11 christos tmpfs /var/mail tmpfs rw,union,-s10M
98 1.11 christos tmpfs /var/spool/postfix tmpfs rw,union,-s20M
99 1.11 christos tmpfs /var/db/postfix tmpfs rw,union,-s1M
100 1.11 christos tmpfs /var/chroot tmpfs rw,union,-s10M
101 1.11 christos EOF
102 1.11 christos }
103 1.11 christos
104 1.11 christos make_fstab_evbarm() {
105 1.11 christos if $minwrites; then
106 1.11 christos make_fstab_evbarm_minwrites
107 1.11 christos else
108 1.11 christos make_fstab_evbarm_normal
109 1.11 christos fi
110 1.11 christos }
111 1.11 christos
112 1.1 christos customize_evbarm() {
113 1.6 christos cp ${release}/etc/rc.conf ${mnt}/etc/rc.conf
114 1.11 christos if $minwrites; then
115 1.11 christos mkdir ${mnt}/etc/postfix
116 1.11 christos (umask 022
117 1.11 christos sed -e 's/fifo/unix/' < ${release}/etc/postfix/master.cf > \
118 1.11 christos ${mnt}/etc/postfix/master.cf)
119 1.11 christos fi
120 1.5 christos cat >> ${mnt}/etc/rc.conf << EOF
121 1.7 jmcneill rc_configured=YES
122 1.7 jmcneill hostname=${board}
123 1.1 christos sshd=YES
124 1.1 christos dhcpcd=YES
125 1.16 jmcneill ntpd=YES
126 1.16 jmcneill ntpd_flags="-g"
127 1.1 christos EOF
128 1.5 christos if [ ! -f ${release}/dev/MAKEDEV ]; then
129 1.5 christos echo ${PROG}: Missing ${release}/dev/MAKEDEV 1>&2
130 1.1 christos exit 1
131 1.1 christos fi
132 1.1 christos echo "${bar} running MAKEDEV ${bar}"
133 1.13 skrll ${HOST_SH} ${release}/dev/MAKEDEV -s all | sed -e 's:^\./:\./dev/:' \
134 1.13 skrll >> "$tmp/selected_sets"
135 1.8 jmcneill
136 1.8 jmcneill echo "${bar} creating directories ${bar}"
137 1.8 jmcneill mkdir ${mnt}/proc ${mnt}/kern
138 1.1 christos }
139