about summary refs log tree commit diff
path: root/mkrootfs.sh.in
blob: d199938dcf4a8ca6fa8977c58cb31c24ffe11388 (plain) (blame)
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
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
#!/bin/sh
#-
# Copyright (c) 2013 Juan Romero Pardines.
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions
# are met:
# 1. Redistributions of source code must retain the above copyright
#    notice, this list of conditions and the following disclaimer.
# 2. Redistributions in binary form must reproduce the above copyright
#    notice, this list of conditions and the following disclaimer in the
#    documentation and/or other materials provided with the distribution.
#
# THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
# IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
# OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
# IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
# INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
# NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
# THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#-

readonly PROGNAME=$(basename $0)
readonly ARCH=$(uname -m)
readonly PKGBASE="base-system"

trap 'die "Interrupted! exiting..."' INT TERM HUP

info_msg() {
    printf "\033[1m$@\n\033[m"
}

die() {
    echo "FATAL: $@"
    umount_pseudofs
    [ -d "$rootfs" ] && rm -rf $rootfs
    exit 1
}

usage() {
    echo "Usage: $PROGNAME [-a rpi] [-p 'pkg1 pkg2'] [-V]"
}

mount_pseudofs() {
    for f in dev proc sys; do
        [ ! -d $rootfs/$f ] && mkdir -p $rootfs/$f
        mount -r --bind /$f $rootfs/$f
    done
}

umount_pseudofs() {
    for f in dev proc sys; do
        umount -f $rootfs/$f >/dev/null 2>&1
    done
}

run_cmd_target() {
    info_msg "Running $@ for target $_ARCH ..."
    eval XBPS_TARGET_ARCH=${_ARCH} "$@" >/dev/null 2>&1
    [ $? -ne 0 ] && die "Failed to run $@"
}

run_cmd() {
    info_msg "Running $@ ..."
    eval "$@" >/dev/null 2>&1
    [ $? -ne 0 ] && die "Failed to run $@"
}

register_binfmt() {
    if [ "$ARCH" = "${_ARCH}" ]; then
        return 0
    fi
    case "${_ARCH}" in
        armv6l)
            echo ':arm:M::\x7fELF\x01\x01\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x02\x00\x28\x00:\xff\xff\xff\xff\xff\xff\xff\x00\xff\xff\xff\xff\xff\xff\xff\xff\xfe\xff\xff\xff:/usr/bin/qemu-arm-static:' > /proc/sys/fs/binfmt_misc/register
            cp -f $(which qemu-arm-static) $rootfs/usr/bin || die "failed to copy qemu-arm-static to the rootfs"
            ;;
        *)
            die "Unknown target architecture!"
            ;;
    esac
}

#
# main()
#
while getopts "a:hp:V" opt; do
    case $opt in
        a) TARGET_ARCH="$OPTARG";;
        p) EXTRA_PKGS="$OPTARG";;
        h) usage; exit 0;;
        V) echo "$PROGNAME @@MKLIVE_VERSION@@"; exit 0;;
    esac
done
shift $(($OPTIND - 1))

if [ "$(id -u)" -ne 0 ]; then
    die "need root perms to continue, exiting."
fi

#
# Check for required binaries.
#
for f in chroot tar xbps-install xbps-reconfigure xbps-query; do
    if ! $f --version >/dev/null 2>&1; then
        die "$f binary is missing in your system, exiting."
    fi
done

#
# Sanitize target arch.
#
case "$TARGET_ARCH" in
    rpi) _ARCH=armv6l; QEMU_BIN=qemu-arm-static;;
    *) ;;
esac

#
# Check if package base-system is available.
#
run_cmd "xbps-query -R -ppkgver $PKGBASE"

rootfs=$(mktemp -d || die "FATAL: failed to create tempdir, exiting...")
chmod 755 $rootfs

PKGS="${PKGBASE}"
[ -n "$EXTRA_PKGS" ] && PKGS="${PKGS} ${EXTRA_PKGS}"

mount_pseudofs
#
# Install base-system to the rootfs directory.
#
run_cmd_target "xbps-install -S -r $rootfs -y ${PKGS}"

# Enable en_US.UTF-8 locale and generate it into the target rootfs.
LOCALE=en_US.UTF-8
sed -e "s/\#\(${LOCALE}.*\)/\1/g" -i $rootfs/etc/default/libc-locales

#
# Reconfigure packages for target architecture: must be reconfigured
# thru the qemu user mode binary.
#
if [ -n "$TARGET_ARCH" ]; then
    info_msg "Reconfiguring packages for $TARGET_ARCH ..."
    register_binfmt
    run_cmd "xbps-reconfigure -r $rootfs base-directories"
    run_cmd "chroot $rootfs xbps-reconfigure shadow"
    run_cmd "chroot $rootfs xbps-reconfigure systemd"
    run_cmd "chroot $rootfs xbps-reconfigure -a"
    rmdir $rootfs/usr/lib32
    rm -f $rootfs/lib32 $rootfs/lib64 $rootfs/usr/lib64
else
    run_cmd "chroot $rootfs xbps-reconfigure systemd"
fi

#
# Setup default root password.
#
run_cmd "chroot $rootfs sh -c 'echo "root:voidlinux" | chpasswd -c SHA512'"
umount_pseudofs
#
# Cleanup rootfs.
#
rm -f $rootfs/etc/.pwd.lock 2>/dev/null
rm -rf $rootfs/var/cache/xbps 2>/dev/null

#
# Generate final tarball.
#
arch=$ARCH
if [ -n "$TARGET_ARCH" ]; then
    rm -f $rootfs/usr/bin/qemu-*-static
    arch=$TARGET_ARCH
fi

tarball=void-${arch}-rootfs-$(date '+%Y%m%d').tar.xz

run_cmd "tar cp -C $rootfs . | xz -9 > $tarball"
rm -rf $rootfs

info_msg "Successfully created $tarball"

# vim: set ts=4 sw=4 et: