forked from openSUSE/obs-build
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcommon_functions
executable file
·82 lines (73 loc) · 2.09 KB
/
common_functions
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
#!/bin/bash
: ${CACHE_DIR:=/var/cache/build}
set_build_arch()
{
: ${BUILD_HOST_ARCH:=`uname -m`}
if [ -z "$BUILD_ARCH" ]; then
BUILD_ARCH="$BUILD_HOST_ARCH"
test i686 != "$BUILD_ARCH" || BUILD_ARCH=i586 # XXX: why?
fi
case $BUILD_ARCH in
i686) BUILD_ARCH="i686:i586:i486:i386" ;;
i586) BUILD_ARCH="i586:i486:i386" ;;
i486) BUILD_ARCH="i486:i386" ;;
i386) BUILD_ARCH="i386" ;;
x86_64) BUILD_ARCH="x86_64:i686:i586:i486:i386" ;;
sparc64v) BUILD_ARCH="sparc64v:sparc64:sparcv9v:sparcv9:sparcv8:sparc" ;;
sparc64) BUILD_ARCH="sparc64:sparcv9:sparcv8:sparc" ;;
sparcv9v) BUILD_ARCH="sparcv9v:sparcv9:sparcv8:sparc" ;;
sparcv9) BUILD_ARCH="sparcv9:sparcv8:sparc" ;;
sparcv8) BUILD_ARCH="sparcv8:sparc" ;;
sparc) BUILD_ARCH="sparc" ;;
esac
if test "$BUILD_ARCH" != "${BUILD_ARCH#i686}" ; then
cpuflags=`grep ^flags /proc/cpuinfo`
cpuflags="$cpuflags "
if test "$cpuflags" = "${cpuflags/ cx8 /}" -o "$cpuflags" = "${cpuflags/ cmov /}"; then
echo "Your cpu doesn't support i686 rpms. Exit."
cleanup_and_exit 1
fi
fi
}
check_exit()
{
if test -e $BUILD_ROOT/exit; then
echo "exit ..."
cleanup_and_exit 1
fi
}
is_emulator_arch()
{
local arch
for arch in $EMULATOR_ARCHS; do
if test "$BUILD_ARCH" = "$arch" -a "$BUILD_HOST_ARCH" != "$arch"; then
return 0
fi
done
return 1
}
check_use_emulator()
{
is_emulator_arch || return
if [ -z "$VM_TYPE" ]; then
return 0
fi
# to run the qemu initialization in the XEN chroot, we need to
# register it with a static program or shell script
case "$BUILD_HOST_ARCH" in
i?86|x86_64)
if test -e /usr/lib/build/initvm && \
test -e /usr/lib/build/qemu-reg -o -e /.build/qemu-reg; then
return 0 # prefer initvm to handle registration
elif test -e /bin/bash-static \
-a -e /bin/mount-static \
-a -e /usr/sbin/qemu-binfmt-conf.sh; then
return 0 # as backup use /usr/sbin/qemu-binfmt.conf.sh
else
# XXX: error?
echo "Warning: cross compile not possible due to missing static binaries"
fi
;;
esac
return 1
}