-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.sh
executable file
·65 lines (60 loc) · 1.62 KB
/
build.sh
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
#!/bin/bash
# Initial variables
PACKAGE="helloworld"
VERSION="0.1"
REVISION="1"
SRCDIR="/vagrant/src"
SCRATCH="/vagrant/scratch"
OUTDIR="$SCRATCH"
TEMPDIR="$(mktemp -d)"
INSTALL=0
BUILDDIR="$TEMPDIR/${PACKAGE}_$VERSION-$REVISION"
# Build debian package
function build_deb {
[ $INSTALL -eq 1 ] && install_headers
mkdir -p "$BUILDDIR/usr/src/${PACKAGE}-$VERSION"
mkdir -p "$BUILDDIR/etc"
mkdir -p "$BUILDDIR/DEBIAN"
cp -r $SRCDIR/usr/src/* "$BUILDDIR/usr/src/${PACKAGE}-$VERSION"
cp -r $SRCDIR/etc/* "$BUILDDIR/etc"
cp -r $SRCDIR/DEBIAN/* "$BUILDDIR/DEBIAN"
cd "$TEMPDIR"
dpkg-deb --build "${PACKAGE}_$VERSION-$REVISION"
}
# Display details on module
function info_mod {
modinfo "$PACKAGE"
cat /proc/modules | grep "$PACKAGE"
rmmod "$PACKAGE"
modprobe "$PACKAGE"
cat /var/log/messages | grep "$PACKAGE"
}
# Install Linux headers for current kernel
function install_headers {
export DEBIAN_FRONTEND=noninteractive
apt-get update
apt-get install -y linux-headers-$(uname -r)
}
# Build and install helloworld module or module(s) in $SCRATCH
set -x
if [ ! -z "$(ls -Al $SCRATCH | grep -e ^d)" ]; then
cd "$SCRATCH"
for d in */ ; do
if [ -f "$(basename $d)/override.sh" ]; then
SRCDIR="$(pwd)/$(basename $d)"
. "$(basename $d)/override.sh"
build_deb
if [ $INSTALL -eq 1 ]; then
apt-get install -y "./${PACKAGE}_$VERSION-$REVISION.deb"
info_mod
fi
cp "./${PACKAGE}_$VERSION-$REVISION.deb" \
"$OUTDIR/${PACKAGE}_$VERSION-$REVISION-$(date +%s).deb"
fi
done
else
INSTALL=1
build_deb
apt-get install -y "./${PACKAGE}_$VERSION-$REVISION.deb"
info_mod
fi