blob: b761eddd025996f728348eb11a4649c27330eeb4 (
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
|
#!/bin/sh -e
#
# $Header: /var/cvsroot/gentoo-x86/sys-kernel/linux-headers/files/generate-asm-sparc,v 1.2 2004/07/18 04:47:32 dragonheart Exp $
#
# This script generates the files in /usr/include/asm for sparc systems
# during installation of sys-kernel/linux-headers.
# Will no longer be needed when full 64 bit support is used on sparc64
# systems.
#
# Shamefully ripped from Debian
# ----------------------------------------------------------------------
# Idea borrowed from RedHat's kernel package
if [ -n "$1" ]; then
if [ ! -d "$1" ]; then
echo "$1" does not exist, or is not a directory
exit 1
fi
cd $1
else
cd /usr/include
fi
if [ ! -d asm-sparc -o ! -d asm-sparc64 ] ; then
echo E: asm-sparc and asm-sparc64 must exist, or you will have problems
exit 1
fi
rm -rf asm
mkdir asm
for h in `( ls asm-sparc; ls asm-sparc64 ) | grep '\.h$' | sort -u`; do
name=`echo $h | tr a-z. A-Z_`
# common header
cat > asm/$h << EOF
/* All asm/ files are generated and point to the corresponding
* file in asm-sparc or asm-sparc64. To regenerate, run "generate-asm"
*/
#ifndef __SPARCSTUB__${name}__
#define __SPARCSTUB__${name}__
EOF
# common for sparc and sparc64
if [ -f asm-sparc/$h -a -f asm-sparc64/$h ]; then
cat >> asm/$h <<EOF
#ifdef __arch64__
#include <asm-sparc64/$h>
#else
#include <asm-sparc/$h>
#endif
EOF
# sparc only
elif [ -f asm-sparc/$h ]; then
cat >> asm/$h <<EOF
#ifndef __arch64__
#include <asm-sparc/$h>
#endif
EOF
# sparc64 only
else
cat >> asm/$h <<EOF
#ifdef __arch64__
#include <asm-sparc64/$h>
#endif
EOF
fi
# common footer
cat >> asm/$h <<EOF
#endif /* !__SPARCSTUB__${name}__ */
EOF
done
exit 0
|