blob: 0c452e4851d1af244c5e18359a8b763c56caf294 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
|
#!/bin/bash
#
# Copyright 2011 by Bdale Garbee <bdale@gag.com>
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
# based on work by <ivan@sanchezortega.es>, who released his script under
# the following license terms:
# ----------------------------------------------------------------------------
# "THE BEER-WARE LICENSE" (Revision 42):
# As long as you retain this notice you can do whatever you want with
# this stuff. If we meet some day, and you think this stuff is worth it,
# you can buy me a beer in return.
# ----------------------------------------------------------------------------
# mk_dreamplug_rootfs
#
# Runs multistrap and readies the resulting root filesystem to silently
# complete package configuration on the first boot-up.
#
# Accepts the multistrap config file name as an argument.
# We don't tolerate errors.
set -e
architecture=armel
if [ -n "$1" ]
then
architecture=$1
fi
config=multistrap-configs/torouter-$architecture.conf
if [ -n "$2" ]
then
config=$2
fi
# users
hostname='torouter'
rootpassword='freedom'
user='fbx'
userpassword='freedom'
export hostname
export rootpassword
export user
export userpassword
# where to build images, etc
basedir=`pwd`/build
source=`pwd`/source
target=$basedir/$architecture
tmpdir=$basedir/tmp
pkgcache=$tmpdir/aptcache
homedir=$target/home/$user
export basedir
export source
export target
export tmpdir
export pkgcache
export homedir
# clear any old cruft
if (mount | grep $target/var/cache/apt)
then
umount $target/var/cache/apt/
fi
# make the directories we'll need.
mkdir -p $target
rm -rf $target/*
mkdir -p $tmpdir
mkdir -p $pkgcache
mkdir -p $target/var/cache/apt/ && mount -o bind $pkgcache $target/var/cache/apt/
mkdir -p $target/var/cache/apt/archives
mkdir -p $target/usr/bin
mkdir -p $homedir
# multistrap
echo "Multistrapping..."
# XXX: DEATH: work around torrouter.torproject.org GPG key issue
# multistrap -f $config -d $target
multistrap --no-auth -f $config -d $target
rm -f $target/etc/apt/sources.list.d/multistrap-debian.list
# un-do the bind mount so we don't trip over it later
umount $target/var/cache/apt/
# copy!
echo "Copying the source directory to the FreedomBox root."
rsync -av $source/ $target
# add projects to the image to make it a useful FreedomBox.
bin/projects
# torouter!
echo "Copying torouter-specific files..."
# Override the above stuff - we know better
cp ../packages/torouter-prep/configs/interfaces $target/etc/network/interfaces
# Stop the libertas module from loading
cp ../packages/torouter-prep/configs/modprobe.d-blacklist.conf $target/etc/modprobe.d/blacklist.conf
# cleanup and finalize the image so it boots correctly.
echo "Finalizing..."
bin/finalize
# finish!
echo "Syncing..."
sync
echo "Finished. You may now copy the rootfs to the plug."
|