]> CyberLeo.Net >> Repos - FreeBSD/releng/10.2.git/blob - contrib/ntp/html/hints/vxworks.html
- Copy stable/10@285827 to releng/10.2 in preparation for 10.2-RC1
[FreeBSD/releng/10.2.git] / contrib / ntp / html / hints / vxworks.html
1 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
2
3 <html>
4
5         <head>
6                 <meta http-equiv="content-type" content="text/html;charset=iso-8859-1">
7                 <meta name="generator" content="HTML Tidy, see www.w3.org">
8         <title>vxWorks Port of NTP</title>
9                 <link href="../scripts/style.css" type="text/css" rel="stylesheet">
10         </head>
11 <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
12
13     <body link="#00008B" vlink="#8B0000">
14         <h4>VxWorks port of NTP</h4>
15 <p>Last update:
16   <!-- #BeginDate format:En2m -->21-Oct-2010  23:44<!-- #EndDate -->
17   UTC</p>
18         <p>Creating a port for vxWorks posed some problems. This port may help as a starting point for similar ports to real-time OS's and other embeddable kernels, particularly where <tt>main()</tt> is not allowed, and where the configure scripts need to be altered.</p>
19         <h4>Configuration issues</h4>
20         <p>I decided to do as little invasive surgery as possible on the NTP code, so I brought the vxWorks header tree in line with the standard Unix tree. The following changes were needed, as a side effect these changes will allow for easy porting of other autoconfigure enabled code.</p>
21         <p>Where I have 386 you will need to put in your target type. The vxWorks tree entry point is <tt>/usr/wind</tt>. If these are the same for your system, you should be able to cut and paste the changes.</p>
22         <p><blink>WARNING: Check you are not overwriting files, before entering the following: there should be no conflict, but check first...</blink></p>
23                 <pre>
24             export CC=&quot;cc386 -nostdlib -m486 -DCPU=I80486 -I/usr/wind/target/h&quot;
25             export RANLIB=ranlib386
26             export AR=ar386
27             export VX_KERNEL=/usr/wind/target/config/ims_std_bsp/vxWorks<br>
28                         
29             cd /usr/wind/target/sys
30             ln -s ../signal.h
31             ln -s ../time.h
32             ln -s socket.h sockio.h
33             ln -s ../selectLib.h select.h
34             ln -s ../timers.h
35             touch file.h param.h resource.h utsname.h var.h ../netdb.h ../a.out.h ../termios.h
36          echo &quot; ******ADD #include \&quot;sys/times.h\&quot; to sys/time.h &quot;
37             </pre>
38                 The configure script must be changed in the following way to get the linking tests to work, once in the correct directory issue the following commands:
39                 
40                 <pre>      sed -e 's%main.*()%vxmain()%' configure &gt; configure.vxnew
41             mv configure.vxnew configure
42             chmod 755 configure
43       </pre>
44                 <p></p>The new version 4 of NTP requires some maths functions so it links in the maths library (-lm) in the <tt>./ntpd/Makefile.am</tt> file change the line <tt>ntpd_LDADD = $(LDADD) -lm</tt> by removing the &quot;-lm&quot;.</p>
45                  <p>>You are now ready to compile
46                 <p>The ./configure.in file needed to be altered to allow for a host-target configuration to take place.</p>
47                 <ul>
48             <li>The define SYS_VXWORKS was added to the compilation flags.
49             <li>Little endianess is set if the target is of type iX86.
50             <li>The size of char, integer, long values are all set. If Wind River ever changes these values they will need to be updated.
51             <li>clock_settime() is defined to be used for setting the clock.
52             <li>The Linking flags have -r added to allow for relinking into the vxWorks kernel
53         </ul>
54         <p>Unfortunately I have had to make use of the <tt>./include/ntp_machine.h</tt> file to add in the checks that would have been checked at linking stage by <tt>autoconf</tt>, a better method should be devised.</p>
55         <ul>
56             <li>There is now a <tt>NO_MAIN_ALLOWED</tt> define that simulates command line args, this allows the use of the normal startup sysntax.
57             <li>POSIX timers have been added.
58             <li>Structures normally found in <tt>netdb.h</tt> have been added with, the corresponding code is in <tt>./libntp/machines.c</tt>. Where possible the defines for these have been kept non-vxWorks specific.
59         </ul>
60         <p>Unfortunately there are still quite a few <tt>SYS_VXWORKS</tt> type defines in the source, but I have eliminated as many as possible. You have the choice of using the <tt>usrtime.a</tt> library avaliable from the vxworks archives or forgoing <tt>adjtime()</tt> and using the <tt>clock_[get|set]time()</tt>. The <tt>./include/ntp_machine.h</tt> file clearly marks how to do this.</p>
61         <h4>Compilation issues</h4>
62         <p>You will need autoconf and automake ... available free from the gnu archives worldwide.</p>
63         <p>The variable <tt>arch</tt> is the target architecture (e.g. i486)</p>
64         <pre>
65             mkdir A.vxworks)
66             cd A.vxworks
67             ../configure --target=arch-wrs-vxworks
68             make
69        </pre>
70         <p>Options I normally use are the <tt>--disable-all-clocks --enable-LOCAL-CLOCK</tt> flags. The program should proceed to compile without problem. The daemon ntpd, ntpdate, ntptrace, ntpdc, ntpq programs and of course the libraries are all fully ported. The other utilities are not, but they should be easy to port.</p>
71         <h4>Running the software</h4>
72         <p>Load in the various files, call them in the normal vxWorks function type manner. Here are some examples. Refer to the man pages for further information.</p>
73         <pre>
74             ld &lt; ntpdate/ntpdate
75             ld &lt; ntpd/ntpd
76             ld &lt; ntptrace/ntptrace
77             ld &lt; ntpq/ntpq
78             ld &lt; ntpdc/ntpdc
79             ntpdate (&quot;-b&quot;, &quot;192.168.0.245&quot;)
80             sp(ntpd, &quot;-c&quot;, &quot;/export/home/casey/ntp/ntp.conf&quot;)
81             ntpdc(&quot;-c&quot;, &quot;monlist&quot;, &quot;192.168.0.244&quot;)
82             ntpq(&quot;-c&quot;, &quot;peers&quot;, &quot;192.168.0.244&quot;)
83             ntptrace(&quot;192.168.0.244&quot;)
84         </pre>
85         <p>Casey Crellin, casey@csc.co.za</p>
86     </body>
87
88 </html>