blob: 87f422366e40c167328585317b824324670f6e55 (
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
|
arch i686 targets armv7l:cross-arm
arch x86_64 targets aarch64:cross-aarch64
qemu-accel-armv7l
targettype cross-arm requires "gcc"
targettype cross-aarch64 block!
targettype 32bit block!
targettype cross-arm
autoreqprov off
extension -cross
post "set -x"
post "if [ $(uname -m) = armv7l ]; then"
post " builtin echo armv7l arch"
post " ln -sf /emul/i586-for-arm/lib/libnsl.so.1 /lib/libnsl.so.1 || true"
post " /usr/sbin/ldconfig || true"
post "fi"
post "# load the binfmt_misc module"
post "if [ ! -d /proc/sys/fs/binfmt_misc ]; then"
post " builtin echo Calling modprobe"
post " /sbin/modprobe binfmt_misc"
post "fi"
post ""
post "did_mount_it=''"
post ""
post "if [ ! -f /proc/sys/fs/binfmt_misc/register ]; then"
post " builtin echo mounting binfmt_misc"
post " mount binfmt_misc -t binfmt_misc /proc/sys/fs/binfmt_misc"
post " did_mount_it=1"
post "fi"
post ""
post "if [ -e /proc/sys/fs/binfmt_misc/arm ]; then"
post " builtin echo Registering accelerated handler"
post " builtin echo -1 > /proc/sys/fs/binfmt_misc/arm"
post " builtin 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:/qemu/qemu-arm-binfmt:P' > /proc/sys/fs/binfmt_misc/register"
post "fi"
post ""
post "if [ $did_mount_it ]; then "
post " builtin echo "Unmounting again.";"
post " umount /proc/sys/fs/binfmt_misc"
post "fi"
post ""
post "builtin echo All done"
post ""
post "# Fix up sysroot paths"
post "rm -rf /usr/armv7l-tizen-linux-gnueabi/lib"
post "ln -s /lib /usr/armv7l-tizen-linux-gnueabi/usr/lib"
post "builtin echo 0 >/proc/sys/vm/mmap_min_addr"
post ""
post "if [ -f /usr/bin/gcc ] ; then"
post " export GCCVER=$(LANG=C gcc --version | head -1 | sed -e "s/^.*gcc[^0-9]*\([0-9]*\)\.\([0-9]*\)\.\([0-9]*\).*$/\1.\2/") "
post " # Create symlinks to files needed by native ld for the case if we want to use it instead of cross ld:"
post " for f in crtbegin.o crtbeginS.o crtbeginT.o crtend.o crtendS.o ; do"
post " ln -s /usr/lib/gcc/armv7l-tizen-linux-gnueabi/${GCCVER}/$f /usr/armv7l-tizen-linux-gnueabi/bin/$f;"
post " done"
post "fi"
+/
qemu-accel-aarch64
targettype cross-aarch64 requires "gcc"
targettype cross-arm block!
targettype 32bit block!
targettype cross-aarch64
autoreqprov off
extension -cross
post "set -x"
post "builtin echo 'Starting qemu post script'"
post "if [ $(uname -m) = aarch64 ]; then"
post " builtin echo aarch64 arch"
post " ln -sf %{our_path}/lib/libnsl.so.1 /lib/libnsl.so.1 || true"
post "fi"
post "# load the binfmt_misc module"
post "if [ ! -d /proc/sys/fs/binfmt_misc ]; then"
post " builtin echo Calling modprobe"
post " /sbin/modprobe binfmt_misc"
post "fi"
post ""
post "did_mount_it=''"
post ""
post "if [ ! -f /proc/sys/fs/binfmt_misc/register ]; then"
post " builtin echo mounting binfmt_misc"
post " mount binfmt_misc -t binfmt_misc /proc/sys/fs/binfmt_misc"
post " did_mount_it='1'"
post "fi"
post ""
post "if [ -e /proc/sys/fs/binfmt_misc/aarch64 ]; then"
post " builtin echo Unregistering accelerated handler"
post " builtin echo -1 > /proc/sys/fs/binfmt_misc/aarch64"
post "fi"
post "if [ ! -e /proc/sys/fs/binfmt_misc/aarch64 ]; then"
post " builtin echo Registering right binfmt handler"
post "%if 0%{?use_binfmt_binary}"
post "builtin echo ':aarch64:M::\x7fELF\x02\x01\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x02\x00\xb7:\xff\xff\xff\xff\xff\xff\xff\x00\xff\xff\xff\xff\xff\xff\xff\xff\xfe\xff\xff:/qemu/qemu-aarch64-binfmt:P' > /proc/sys/fs/binfmt_misc/register"
post "%else"
post "builtin echo ':aarch64:M::\x7fELF\x02\x01\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x02\x00\xb7:\xff\xff\xff\xff\xff\xff\xff\x00\xff\xff\xff\xff\xff\xff\xff\xff\xfe\xff\xff:/qemu/qemu-aarch64:OC' > /proc/sys/fs/binfmt_misc/register"
post "%endif"
post "fi"
post "cat /proc/sys/fs/binfmt_misc/aarch64 | sed -e 's/mask/mask /'"
post ""
post "if [ -n $did_mount_it ]; then "
post " builtin echo "Unmounting again.";"
post " umount /proc/sys/fs/binfmt_misc"
post "fi"
post ""
post "echo All done"
post ""
post "# Fix up sysroot paths"
post "echo 0 >/proc/sys/vm/mmap_min_addr"
post ""
post "if [ -f /usr/bin/gcc ] ; then"
post " export GCCVER=$(LANG=C gcc --version | head -1 | sed -e "s/^.*gcc[^0-9]*\([0-9]*\)\.\([0-9]*\)\.\([0-9]*\).*$/\1.\2/") "
post " # Create symlinks to files needed by native ld for the case if we want to use it instead of cross ld:"
post " for f in crtbegin.o crtbeginS.o crtbeginT.o crtend.o crtendS.o ; do"
post " ln -s /usr/lib64/gcc/aarch64-tizen-linux/${GCCVER}/$f /usr/lib/$f;"
post " done"
post "fi"
+/
|