source: rtems-libbsd/freebsd-userspace/from-freebsd.sh @ 1912d73

4.1155-freebsd-126-freebsd-12freebsd-9.3
Last change on this file since 1912d73 was 1912d73, checked in by Joel Sherrill <joel.sherrill@…>, on 07/28/12 at 12:11:56

from-freebsd.sh: Add arpa/ftp.h, clean up syslog.h a bit

  • Property mode set to 100755
File size: 6.3 KB
RevLine 
[1b13f69]1#! /bin/bash
2#
3#  Temporary hack of a script to get FreeBSD user space header
4#  files and network libc source code into this tree.
5#
6#  NOTE: libc and include are NOT in the FreeBSD checkout used for the
7#        USB and TCP/IP stacks. This has to be addressed.
8#
9#  This probably could be integrated into the main Python script.
10#  But so far, there are no real transformations needed and the
11#  script just performs two tasks:
12#
13#  + copies source files from FreeBSD libc and include files into this tree
14#  + generates "wrapper" header files for the public network .h files
15#
16src=/home/joel/newbsd/git/freebsd-8.2
17dest=/home/joel/newbsd/git/rtems-libbsd/freebsd-userspace
18
19progname=${0##*/}        # fast basename hack for ksh, bash
20
21USAGE=\
22"usage: $progname [ -opts ]
23        -v         -- verbose
24        -f DIR     -- FreeBSD directory
25        -r DIR     -- rtems-libbsd top directory
26"
27
28check_status()
29{
30  if [ $1 -ne 0 ] ; then
31    shift
32    echo "$USAGE" >&2
33    echo >&2
34    echo "FAILED: " "$*" >&2
35    exit 1
36  fi
37}
38
39usage()
40{
41  echo "$USAGE" >&2
42  exit 1
43}
44
45#
46# process the options
47#
48# defaults for getopt vars
49#
50
51src=NOTSET
52dest=NOTSET
53verbose="no"
54
55while getopts "vf:r:" OPT
56do
57 case "$OPT" in
58   v) verbose="yes";;
59   f) src="$OPTARG";;
60   r) dest="$OPTARG";;
61   *) usage;;
62  esac
63done
64
65# Check arguments specified
66test ${src} != "NOTSET"
67check_status $? "FreeBSD source directory not specified"
68
69test ${dest} != "NOTSET"
70check_status $? "rtems-libbsd source directory not specified"
71
72# Check that they are directories
73test -d ${src}
74check_status $? "FreeBSD source directory is not a directory"
75
76test -d ${dest}
77check_status $? "rtems-libbsd source directory is not a directory"
78
79# Check that they appear to be the right directories
80test -d ${src}/include
81check_status $? "FreeBSD source directory does not have include directory"
82
83test -d ${src}/lib/libc
84check_status $? "FreeBSD source directory does not have libc directory"
85
86test -d ${dest}/freebsd-userspace
87check_status $? "rtems-libbsd source directory does not have freebsd-userspace directory"
88
89dest=${dest}/freebsd-userspace
90
91# source files to simply copy
92while read f
93do
94  d=`dirname $f`
95  test -d ${dest}/${d} || mkdir -p ${dest}/${d}
96  test -r ${src}/${f}
97  check_status $? "${src}/${f} is not present"
98
99  test ${verbose} = "yes" && echo "Simple copy $f"
100  cp ${src}/${f} ${dest}/${d}
101done <<EOF
102include/db.h
103include/ifaddrs.h
[028aaaf]104include/netconfig.h
[1b13f69]105include/netdb.h
106include/nsswitch.h
107include/resolv.h
[028aaaf]108include/res_update.h
109include/rpc/auth.h
110include/rpc/auth_unix.h
111include/rpc/auth_des.h
112include/rpc/clnt.h
113include/rpc/clnt_soc.h
114include/rpc/clnt_stat.h
115include/rpc/pmap_clnt.h
116include/rpc/pmap_prot.h
117include/rpc/rpc.h
118include/rpc/rpcent.h
119include/rpc/rpc_msg.h
120include/rpc/rpcb_clnt.h
121include/rpc/rpcb_prot.x
122include/rpc/svc.h
123include/rpc/svc_auth.h
124include/rpc/svc_soc.h
125include/rpc/xdr.h
[1912d73]126include/arpa/ftp.h
[1b13f69]127include/arpa/inet.h
[939b12b]128include/arpa/nameser.h
[1b13f69]129sys/net/ethernet.h
[028aaaf]130sys/rpc/types.h
131sys/sys/_null.h
132sys/sys/un.h
[1b13f69]133lib/libc/include/libc_private.h
134lib/libc/include/namespace.h
135lib/libc/include/nss_tls.h
136lib/libc/include/reentrant.h
137lib/libc/include/resolv_mt.h
138lib/libc/include/un-namespace.h
139lib/libc/inet/inet_addr.c
140lib/libc/inet/inet_cidr_ntop.c
141lib/libc/inet/inet_cidr_pton.c
142lib/libc/inet/inet_lnaof.c
143lib/libc/inet/inet_makeaddr.c
144lib/libc/inet/inet_neta.c
145lib/libc/inet/inet_net_ntop.c
146lib/libc/inet/inet_netof.c
147lib/libc/inet/inet_net_pton.c
148lib/libc/inet/inet_network.c
149lib/libc/inet/inet_ntoa.c
150lib/libc/inet/inet_ntop.c
151lib/libc/inet/inet_pton.c
152lib/libc/inet/nsap_addr.c
153lib/libc/net/netdb_private.h
154lib/libc/net/res_config.h
155EOF
[939b12b]156# processed by hand
157# include/arpa/nameser_compat.h
[1b13f69]158
159# disable BIND_4_COMPAT since it trips a weird endian issue in nameser_compat.h
[939b12b]160#sed -e 's/#define BIND_4_COMPAT/\/* #define BIND_4_COMPAT *\//' \
161#  >${dest}/include/arpa/nameser.h
162#  <${src}/include/arpa/nameser.h \
163
164# fix include so it sees FreeBSD endian definitions
165sed -e 's/<machine\/endian.h>/<freebsd\/machine\/endian.h>/' \
166  <${src}/include/arpa/nameser_compat.h \
167  >${dest}/include/arpa/nameser_compat.h
168
[1b13f69]169
170# source files to prepend "include of local/port_before.h"
171while read f
172do
173  d=`dirname $f`
174  test -d ${dest}/${d} || mkdir -p ${dest}/${d}
175  test -r ${src}/${f}
176  check_status $? "${src}/${f} is not present"
177
178  test ${verbose} = "yes" && echo "Copy with prepend $f"
179   
180  ( echo "#include \"port_before.h\""; echo ; cat ${src}/${f} ) >${dest}/${f}
181done <<EOF
182lib/libc/net/base64.c
183lib/libc/net/ether_addr.c
184lib/libc/net/gethostbydns.c
185lib/libc/net/gethostbyht.c
186lib/libc/net/gethostbynis.c
187lib/libc/net/gethostnamadr.c
188lib/libc/net/getifaddrs.c
189lib/libc/net/getifmaddrs.c
190lib/libc/net/getnameinfo.c
191lib/libc/net/getnetbydns.c
192lib/libc/net/getnetbyht.c
193lib/libc/net/getnetbynis.c
194lib/libc/net/getnetnamadr.c
195lib/libc/net/getproto.c
196lib/libc/net/getprotoent.c
197lib/libc/net/getprotoname.c
198lib/libc/net/getservent.c
[028aaaf]199lib/libc/gen/gethostname.c
200lib/libc/nameser/ns_name.c
201lib/libc/nameser/ns_netint.c
202lib/libc/nameser/ns_parse.c
203lib/libc/nameser/ns_print.c
204lib/libc/nameser/ns_ttl.c
205lib/libc/net/if_indextoname.c
206lib/libc/net/if_nameindex.c
207lib/libc/net/linkaddr.c
208lib/libc/net/map_v4v6.c
209lib/libc/net/rcmd.c
210lib/libc/net/recv.c
211lib/libc/net/send.c
212lib/libc/resolv/res_private.h
213lib/libc/resolv/herror.c
214lib/libc/resolv/res_comp.c
215lib/libc/resolv/res_data.c
216lib/libc/resolv/res_debug.c
217lib/libc/resolv/res_init.c
218lib/libc/resolv/res_mkquery.c
219lib/libc/resolv/res_mkupdate.c
220lib/libc/resolv/res_query.c
221lib/libc/resolv/res_send.c
222lib/libc/resolv/res_update.c
223lib/libc/string/strsep.c
[1b13f69]224EOF
225
[939b12b]226# This file includes a private "dprintf" which conflicts with stdio.h
227sed -e 's/dprintf/DPRINTF/g' <${dest}/lib/libc/net/gethostbydns.c  >XXX
228mv XXX ${dest}/lib/libc/net/gethostbydns.c
229
[1b13f69]230
231# files to "include with freebsd"
232while read f
233do
234  d=`dirname $f`
235  test -d include/${d}/${d} || mkdir -p include/${d}/${d}
236
237  test ${verbose} = "yes" && echo "Generate wrapper $f"
[1912d73]238  ( echo "#include <freebsd/bsd.h>" ;
239    echo "#include <freebsd/${f}>" ) > include/${f}
[1b13f69]240done <<EOF
241net/if.h
242net/if_dl.h
243net/if_types.h
244net/in.h
245net/route.h
246netinet/in.h
247sys/socket.h
248sys/sysctl.h
249EOF
250
251
252# empty files
253while read f
254do
255  test ${verbose} = "yes" && echo "Generate empty file $f"
256  echo "/* empty file */" > ${f}
257done <<EOF
258local/pthread_np.h
259local/sys/_pthreadtypes.h
260EOF
261
262
263# Fix syslog.h issues...
264echo "#include <sys/syslog.h>" > local/syslog.h
[1912d73]265# Should be able to copy this except for printflike issue
266# sys/sys/syslog.h
Note: See TracBrowser for help on using the repository browser.