blob: db3ce37b6945a497a6463f2629d0a695bcc8cce5 (
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
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
|
#!/bin/sh
FORCE="n"
BZIP2=""
GZIP=""
RUN=""
working_dir=""
APPNAME=$(basename "${0}")
usage ()
{
echo "usage ${APPNAME} [options] working-dir package [package [package..]]"
echo " options:"
echo " -r <app> run 'app' within the context of the chroot"
echo " -f force overwrite of files in the working-dir"
echo " -h this message."
exit 1
}
while getopts 'r:fh' arg; do
echo "getopts $arg"
case "${arg}" in
r) echo "run=>$OPTARG"; RUN="$OPTARG" ;;
f) FORCE="y" ;;
h|?) usage ;;
*) echo "invalid argument '${arg}'"; usage ;;
esac
done
shift $(($OPTIND - 1))
[ $# -lt 1 ] && echo "missing arguments" && usage
working_dir="$(readlink -f ${1})"
shift 1
[ "${working_dir}" = "" ] && echo "error: please specify a working directory" && usage
# {{{ functions
function chroot_mount ()
{
echo "mounting sysfs : /sys"
[ -e "${working_dir}/sys" ] || mkdir "${working_dir}/sys"
mount -t sysfs sysfs "${working_dir}/sys"
echo "mounting procfs : /proc"
[ -e "${working_dir}/proc" ] || mkdir "${working_dir}/proc"
mount -t proc proc "${working_dir}/proc"
echo "binding device nodes : /dev"
[ -e "${working_dir}/dev" ] || mkdir "${working_dir}/dev"
mount -o bind /dev "${working_dir}/dev"
echo "binding pacman cache : /var/cache/pacman"
[ -e "${working_dir}/var/cache/pacman" ] || mkdir -p "${working_dir}/var/cache/pacman"
mount -o bind /var/cache/pacman "${working_dir}/var/cache/pacman"
trap 'chroot_umount' 1 2 15
}
function chroot_umount ()
{
echo "cleaning up mounts"
umount "${working_dir}/proc"
umount "${working_dir}/sys"
umount "${working_dir}/dev"
umount "${working_dir}/var/cache/pacman"
}
# }}}
if [ "$RUN" != "" ]; then
# run chroot {{{
if [ "$EUID" != "0" ]; then
echo "Running a chroot requires root privileges, aborting"
exit 1
fi
#Sanity check
if [ ! -f "${working_dir}/.arch-chroot" ]; then
echo "'${working_dir}' does not appear to be a Arch chroot"
echo " please build the image using mkarchchroot"
exit 1
fi
chroot_mount
echo "starting chroot (using \$SHELL)"
chroot "${working_dir}" "${SHELL}"
# }}}
else
# {{{ build chroot
if [ -e "${working_dir}" -a "${FORCE}" = "n" ]; then
echo "Working dir '${working_dir}' already exists - try using -f"
exit 1
fi
mkdir -p "${working_dir}"
chroot_mount
pacargs="--noconfirm -v " #--noprogressbar -v
pacargs="$pacargs --root=${working_dir}"
pacargs="$pacargs --dbpath=${working_dir}/var/lib/pacman"
pacargs="$pacargs --cachedir=${working_dir}/var/cache/pacman"
if [ $# -eq 0 ]; then
echo "no packages to install"
else
echo "installing packages:"
for i in $@; do echo -e "\t$i"; done
op="-Sy"
if [ "$FORCE" == "y" ]; then
op="${op}f"
fi
if ! pacman ${op} ${pacargs} $@; then
echo "error: failed to instal all packages"
exit 1
fi
fi
if [ -d "${working_dir}/lib/modules" ]; then
echo "running ldconfig"
ldconfig -r "${working_dir}"
fi
if [ ! -e "${working_dir}/.arch-chroot" ]; then
date +%s > "${working_dir}/.arch-chroot"
fi
# }}}
fi
# vim:ft=sh:ts=4:sw=4:et:
|