OSDN Git Service

clarify
[uclinux-h8/uClibc.git] / docs / uclibc.org / FAQ.html
1 <!--#include file="header.html" -->
2
3
4 <h3>Frequently Asked Questions</h3>
5
6 This is a collection of some of the most frequently asked questions
7 about uClibc.  Some of the questions even have answers. If you
8 have additions to this FAQ document, we would love to add them,
9
10 <ol>
11 <li><a href="#naming">Why is it called uClibc?</a>
12 <li><a href="#platforms">What platforms does uClibc run on?</a>
13 <li><a href="#why">Why are you doing this?  What's wrong with glibc?</a>
14 <li><a href="#doesnt_suck">So uClibc is smaller then glibc?  Doesn't that mean it
15         completely sucks?  How could it be smaller and not suck?</a>
16 <li><a href="#why_should_i">Why should I use uClibc?</a>
17 <li><a href="#licensing">If I use uClibc, do I have to release all my source code to the world for
18         free?  I want to create a closed source commercial application and I want
19         to protect my intellectual property.</a>
20 <li><a href="#development">Can I use it on my x86 development system?</a>
21 <li><a href="#shared"> Does uClibc support shared libraries?</a>
22 <li><a href="#compiling">How do I compile programs with uClibc?</a>
23 <li><a href="#toolchain">Do I really need to build a uClibc toolchain?</a>
24 <li><a href="#wrapper">What happened to the old toolchain wrapper?</a>
25 <li><a href="#dev_systems">Is a pre-compiled uClibc development system available?</a>
26 <li><a href="#bugs">I think I found a bug in uClibc!  What should I do?!</a>
27 <li><a href="#job_control">Why do I keep getting "sh: can't access tty; job control
28         turned off" errors?  Why doesn't Control-C work within my shell?</a>
29 <li><a href="#autoconf">How do I make autoconf and automake behave?</a>
30 <li><a href="#ldd">When I run 'ldd' to get a list of the library dependencies
31         for a uClibc binary, ldd segfaults!  What should I do?</a>
32 <li><a href="#timezones">Why does localtime() return times in UTC even when I have my timezone set?</a>
33 <li><a href="#history">What is the history of uClibc?  Where did it come from?</a>
34 <li><a href="#demanding">I demand that you to add &lt;favorite feature&gt; right now!   How come
35         you don't answer all my questions on the mailing list instantly?  I demand
36         that you help me with all of my problems <em>Right Now</em>!</a>
37 <li><a href="#helpme">I need help with uClibc!  What should I do?</a>
38 <li><a href="#contracts">I need you to add &lt;favorite feature&gt;!  Are the uClibc developers willing to
39         be paid in order to fix bugs or add in &lt;favorite feature&gt;?  Are you willing to provide
40         support contracts?</a>
41 <li><a href="#support">I think you guys are great and I want to help support your work!</a>
42
43
44 </ol>
45
46
47 <hr />
48 <p>
49 <h2><a name="naming">Why is it called uClibc?</a></h2>
50 <p>
51
52     The letter 'u' is short for µ (the greek letter "mu").  µ is commonly used
53     as the abbreviation for the word "micro".  The capital "C" is short for
54     "controller".  So the name uClibc is sortof an abbreviation for "the
55     microcontroller C library".  For simplicity, uClibc is pronounced
56     "yew-see-lib-see".
57     <p>
58     The name is partly historical, since uClibc was originally
59     created to support <a href="http://www.uclinux.org">µClinux</a>, a port of
60     Linux for MMU-less microcontrollers such as the Dragonball, Coldfire, and
61     ARM7TDMI.  These days, uClibc also works just fine on normal Linux systems
62     (such as i386, ARM, and PowerPC), but we couldn't think of a better name.
63
64 <hr />
65 <p>
66 <h2><a name="platforms">What platforms does uClibc run on?</a></h2>
67 <p>
68
69
70     Currently uClibc runs on alpha, ARM, cris, i386, i960, h8300,
71     m68k, mips/mipsel, PowerPC, SH, SPARC, and v850 processors.
72
73
74 <hr />
75 <p>
76 <h2><a name="why">Why are you doing this?  What's wrong with glibc?</a></h2>
77 <p>
78
79     Initially, the project began since the GNU C library lacked support for
80     MMU-less systems, and because glibc is very large.  The GNU C library is
81     designed with a very different set of goals then uClibc.  The GNU C library
82     is a great piece of software, make no mistake.  It is compliant with just
83     about every standard ever created, and runs on just about every operating
84     system and architecture -- no small task!  But there is a price to be paid
85     for that.  It is quite a large library, and keeps getting larger with each
86     release.  It does not even pretend to target embedded systems.  To quote
87     from Ulrich Drepper, the maintainer of GNU libc: "...glibc is not the right
88     thing for [an embedded OS]. It is designed as a native library (as opposed
89     to embedded).  Many functions (e.g., printf) contain functionality which is
90     not wanted in embedded systems." 24 May 1999
91
92
93
94 <hr />
95 <p>
96 <h2><a name="doesnt_suck">So uClibc is smaller then glibc?  Doesn't that mean it completely sucks?
97 How could it be smaller and not suck?</a></h2>
98 <p>
99 <p>
100
101     uClibc and glibc have different goals.  glibc strives for features
102     and performance, and is targeted for desktops and servers with
103     (these days) lots of resources.  It also strives for ABI stability.
104
105     <p>
106
107     On the other hand, the goal of uClibc is to provide as much functionality
108     as possible in a small amount of space, and it is intended primarily for
109     embedded use.  It is also highly configurable in supported features, at the
110     cost of ABI differences for different configurations.  uClibc has been
111     designed from the ground up to be a C library for embedded Linux.  We don't
112     need to worry about things like MS-DOS support, or BeOS, or AmigaOs any
113     other system.  This lets us cut out a lot of complexity and very carefully
114     optimize for Linux.
115
116     <p>
117
118     In other cases, uClibc leaves certain features (such as full C99 Math
119     library support, wordexp, IPV6, and RPC support) disabled by default.
120     Those features can be enabled for people that need them, but are otherwise
121     disabled to save space.
122
123     <p>
124
125     Some of the space savings in uClibc is obtained at the cost of performance,
126     and some is due to sacrificing features.  Much of it comes from aggressive
127     refactoring of code to eliminate redundancy.  In regards to locale data,
128     elimination of redundant data storage resulted in substantial space
129     savings.  The result is a libc that currently includes the features needed
130     by nearly all applications and yet is considerably smaller than glibc.  To
131     compare "apples to apples", if you take uClibc and compile in locale data
132     for about 170 UTF-8 locales, then uClibc will take up about 570k.  If you
133     take glibc and add in locale data for the same 170 UTF-8 locales, you will
134     need over 30MB!!!
135
136     <p>
137
138     The end result is a C library that will compile just about everything you
139     throw at it, that looks like glibc to application programs when you
140     compile, and is many times smaller.
141
142
143 <hr />
144 <p>
145 <h2><a name="why_should_i">Why should I use uClibc?</a></h2>
146 <p>
147
148     I don't know if you should use uClibc or not.  It depends on your needs.
149     If you are building an embedded Linux system and you are tight on space, then
150     using uClibc instead if glibc may be a very good idea.
151
152     <p>
153
154     If you are building an embedded Linux system and you find that
155     glibc is eating up too much space, you should consider using
156     uClibc.  If you are building a huge fileserver with 12 Terabytes
157     of storage, then using glibc may make more sense.  Unless, for
158     example, that 12 Terabytes will be Network Attached Storage and
159     you plan to burn Linux into the system's firmware...
160
161
162
163 <hr />
164 <p>
165 <h2><a name="licensing">If I use uClibc, do I have to release all my source code to the world for
166         free?  I want to create a closed source commercial application and I want
167         to protect my intellectual property.</a></h2>
168 <p>
169
170     No, you do not need to give away your application source code just because
171     you use uClibc and/or run on Linux.  uClibc is licensed under the <a
172     href="http://www.gnu.org/copyleft/lesser.html">Lesser GPL</a> licence, just
173     like the GNU C library (glibc).  Please read this licence, or have a lawyer
174     read this licence if you have any questions.  Here is my brief summary...
175     Using shared libraries makes complying with the license easy.  You can
176     distribute a closed source application which is linked with an unmodified
177     uClibc shared library.  In this case, you do not need to give away any
178     source code for your application.  Please consider sharing some of the
179     money you make with us!  :-)
180     <p>
181
182     If you make any changes to uClibc, and distribute uClibc or distribute any
183     applications using your modified version, you must also distribute the
184     source code for uClibc containing all of your changes.
185     <p>
186
187     If you distribute an application which has uClibc statically linked, you
188     must also make your application available as an object file which can later
189     be re-linked against updated versions of uClibc.  This will (in theory)
190     allow your customers to apply uClibc bug fixes to your application.  You do
191     not need to make the application object file available to everyone, just to
192     those you gave the fully linked application.
193
194
195 <hr />
196 <p>
197 <h2><a name="development">Can I use it on my x86 development system?</a></h2>
198 <p>
199
200     Sure!  In fact, this can be very nice during development.  By
201     installing uClibc on your development system, you can be sure that
202     the code you are working on will actually run when you deploy it on
203     your target system.
204
205
206
207 <hr />
208 <p>
209 <h2><a name="shared"> Does uClibc support shared libraries?</a></h2>
210 <p>
211
212     Yes.  uClibc has native shared library support on i386, ARM, mips,
213     SH, CRIS, and PowerPC processors.  Other architectures can use shared
214     libraries but will need to use the GNU libc shared library loader.
215     <p>
216     Shared Libraries are not currently supported by uClibc on MMU-less systems.
217     <a href="http://www.snapgear.com/">SnapGear</a> has implemented
218     shared library support for MMU-less systems, however, so if you need MMU-less
219     shared library support they may be able to help.
220
221
222 <hr />
223 <p>
224 <h2><a name="compiling">How do I compile programs with uClibc?</a></h2>
225 <p>
226
227     You will need to have your own uClibc toolchain.  A toolchain consists
228     of <a href="http://sources.redhat.com/binutils/">GNU binutils</a>,
229     <a href="http://gcc.gnu.org/">the gcc compiler</a>, and uClibc, all
230     built to produce binaries linked with uClibc for your target system.
231     You can build your own native uClibc toolchain using the
232     <a href="/cgi-bin/cvsweb/buildroot/">uClibc buildroot system</a>.
233
234     <p>
235     To build your own uClibc toolchain, follow the following simple
236     steps:
237     <ul>
238         <li> Point your web browser <a href="/cgi-bin/cvsweb/buildroot/">here</a>,
239         <li> Click on "Download tarball"
240         <li> Unpack the tarball on your Linux system somewhere
241         <li> Edit the Makefile as needed if you wish to change anything.
242         <li> run 'unset CC'.   Then run 'unset CXX'.  Some Linux systems
243             (i.e. Gentoo) set variables such as 'CC' in the system environment
244             which really messes things up when cross compiling.
245         <li> run 'make menuconfig'
246         <li> Select the things you want to build.  If you <em>only</em> want a
247             toolchain, leave everything except the toolchain disabled.
248         <li> save your buildroot configuration.
249         <li> run 'make'
250         <li> go eat a nice loose meat sandwich, drink a pop, call a friend,
251             play a video game, and generally find something to do.  While you
252             are waiting, buildroot will download all the needed source code and
253             then compile things up for you.
254         <li> You should now have a shiny new toolchain, and maybe even a shiny
255             new uClibc based root filesystem or development system, depending on
256             the options you selected.
257     </ul>
258
259 <hr />
260 <p>
261 <h2><a name="toolchain">Do I really need to build a uClibc toolchain?</h2>
262 <p>
263
264     Yes, you really do need to build a toolchain to produce uClibc binaries.
265     We used to provide a toolchain wrapper, but that has been removed due to
266     numerous problems.  The uClibc developers have gone to a lot of trouble
267     to produce the
268     <a href="/cgi-bin/cvsweb/buildroot/">uClibc buildroot system</a>,
269     which makes it easy to build your own uClibc toolchain and/or an initial
270     uClibc based system.
271
272     <p>
273     Feel free to take the gcc and binutils patches we provide and use them in
274     your own toolchain build system.  If you choose to use your own toolchain
275     build system, you will need to use these patches since the upstream GNU
276     binutils and gcc releases do not currently have full support for building a
277     uClibc toolchain.
278
279
280 <hr />
281 <p>
282 <h2><a name="wrapper">What happened to the old toolchain wrapper?</h2>
283 <p>
284
285     It is possible in some limited cases to re-use an existing glibc toolchain
286     and subvert it into building uClibc binaries by using gcc commands such as
287     "-nostdlib" and "-nostdinc".   In fact, this used to be the recommended
288     method for compiling programs with uClibc, and we made this easy to do by
289     providing a uClibc toolchain wrapper, which attempted to automagically subvert
290     an existing glibc toolchain.
291
292     <p>
293
294     This toolchain wrapper was removed from uClibc 0.9.22, and it will not be
295     coming back.  This is because it proved impossible to completely subvert an
296     existing toolchain in many cases, and therefore proved to be a real
297     maintainence burder.  As uClibc became more capable, the many problems with
298     re-using an existing glibc toolchain led us to conclude that the only safe
299     and sane way to build uClibc binaries was to use a uClibc toolchain.
300
301     <p>
302
303     Some discussion on the reasoning behind this decision can be found here:
304     <a href="http://www.uclibc.org/lists/uclibc/2003-October/007315.html">
305     http://www.uclibc.org/lists/uclibc/2003-October/007315.html</a>
306     in the uClibc mailing list archives.
307
308 <hr />
309 <p>
310 <h2><a name="dev_systems">Is a pre-compiled uClibc development system available?</a></h2>
311 <p>
312
313     If you want to be <em>really</em> lazy and start using uClibc right away
314     without needing to compile your own toolchain or anything, you can grab a
315     pre-compiled uClibc development system.  These are currently available for
316
317     <a href="http://www.kernel.org/pub/linux/libs/uclibc/root_fs_i386.bz2">i386</a>,
318     <a href="http://www.kernel.org/pub/linux/libs/uclibc/root_fs_powerpc.bz2">powerpc</a>,
319     <a href="http://www.kernel.org/pub/linux/libs/uclibc/root_fs_arm.bz2">arm</a>,
320     <a href="http://www.kernel.org/pub/linux/libs/uclibc/root_fs_mips.bz2">mips</a>,
321     <a href="http://www.kernel.org/pub/linux/libs/uclibc/root_fs_mipsel.bz2">mipsel</a>, and
322     <a href="http://www.kernel.org/pub/linux/libs/uclibc/root_fs_sh4.bz2">sh4</a>.
323
324     <p>
325
326     Each of these uClibc development systems was created using
327     <a href="/cgi-bin/cvsweb/buildroot/">buildroot</a>.
328
329     <p>
330
331     These are bzip2 compressed ext2 filesystems containing all the development
332     software you need to build your own uClibc applications, including: bash, awk,
333     make, gcc, g++, autoconf, automake, ncurses, zlib, openssl, openssh, gdb,
334     strace, busybox, GNU coreutils, GNU tar, GNU grep, etc.
335
336     <p>
337
338     This should be pretty much everything you need to get started building your
339     own applications with uClibc.  Once you download one of these systems, you
340     can then boot into it, loop mount it, dd it to a spare drive and use a tool
341     such as resize2fs to make it fill a partition...  Whatever works best for
342     you.
343
344     <p>
345     The quickest way to get started using a root_fs image (using the i386
346     platform as an example) is:
347     <ul>
348         <li>Download root_fs_i386.bz2 from kernel.org</li>
349         <li>bunzip2 root_fs_i386.bz2</li>
350         <li>mkdir root_fs</li>
351         <li>su root</li>
352         <li>mount -o loop root_fs_i386 root_fs</li>
353         <li>chroot root_fs /bin/su -</li>
354     </ul>
355     Type "exit" to end the chroot session and return to the host system.
356     <p>
357
358
359
360 <hr />
361 <p>
362 <h2><a name="bugs">I think I found a bug in uClibc!  What should I do?</h2>
363 <p>
364
365     If you find a problem with uClibc, please submit a detailed bug report to
366     the uClibc mailing list at <a href="mailto:uclibc@mail.uclibc.org">
367     uclibc@mail.uclibc.org</a>.  Please do not send private email to Erik
368     (the maintainer of uClibc) asking for private help unless you are planning
369     on paying for consulting services.  When we answer questions on the uClibc
370     mailing list, it helps everyone, while private answers help only you...
371
372     A well-written bug report should include an example that demonstrates the
373     problem behaviors and enables anyone else to duplicate the bug on their own
374     machine.  For larger applications where it may prove difficult to provide
375     an example application, we recommend that you use a tool such as gdb,
376     strace, ltrace, and or valgrind to create a logfile showing the problem
377     behavior.
378
379 <hr />
380 <p>
381 <h2><a name="job_control">Why do I keep getting "sh: can't access tty; job control
382         turned off" errors?  Why doesn't Control-C work within my shell?</a></h2>
383 <p>
384
385     This isn't really a uClibc question, but I'll answer it here anyways.  Job
386     control will be turned off since your shell can not obtain a controlling
387     terminal.  This typically happens when you run your shell on /dev/console.
388     The kernel will not provide a controlling terminal on the /dev/console
389     device.  Your should run your shell on a normal tty such as tty1 or ttyS0
390     and everything will work perfectly.  If you <em>REALLY</em> want your shell
391     to run on /dev/console, then you can hack your kernel (if you are into that
392     sortof thing) by changing drivers/char/tty_io.c to change the lines where
393     it sets "noctty = 1;" to instead set it to "0".  I recommend you instead
394     run your shell on a real console...
395
396
397 <hr />
398 <p>
399 <h2><a name="autoconf">How do I make autoconf and automake behave?</a></h2>
400 <p>
401
402     When you are cross-compiling, autoconf and automake are known to behave
403     badly.  This is because a large number of configure scripts (such as the
404     one from openssh) try to actually execute applications that were cross
405     compiled for your target system.  This is bad, since of course these won't
406     run, and this will also prevent your programs from compiling.  You need to
407     complain to the authors of these programs and ask them to fix their broken
408     configure scripts.
409
410
411 <hr />
412 <p>
413 <h2><a name="ldd">When I run 'ldd' to get a list of the library dependencies
414         for a uClibc binary, ldd segfaults!  What should I do?</a></h2>
415 <p>
416
417     Use the ldd that is built by uClibc, not your system's one.  You can build
418     uClibc'd ldd for your host system by going into the uClibc/utils/ directory
419     in the uClibc source and running 'make ldd.host'.
420     <p>
421
422     When your system's ldd looks for library dependencies, it actually _runs_
423     that program.  This works fine -- usually.  It generally will not work at
424     all when you have been cross compiling (which is why ldd segfaults).  The
425     ldd program created by uClibc is cross platform and doesn't mind at all if
426     it cannot execute the target program.  If you use the uClibc version of
427     'ldd', it will do the right thing and produce correct results, even when it
428     is used on cross compiled binaries.
429
430
431 <hr />
432 <p>
433 <h2><a name="timezones">Why does localtime() return times in UTC even when I have my timezone set?</a></h2>
434 <p>
435
436
437     The uClibc time functions get timezone information from the TZ environment
438     variable, as described in the Single Unix Specification Version 3.  See
439      <a href="http://www.opengroup.org/onlinepubs/007904975/basedefs/xbd_chap08.html">
440     http://www.opengroup.org/onlinepubs/007904975/basedefs/xbd_chap08.html</a>
441     for details on valid settings of TZ.  For some additional examples, read
442     <a href="http://www.uclibc.org/lists/uclibc/2002-August/006261.html">
443     http://www.uclibc.org/lists/uclibc/2002-August/004010.html</a> in the uClibc
444     mailing list archive.
445     You can store the value of TZ in the file '/etc/TZ' and uClibc will then
446     automagically use the specified setting.
447
448
449 <hr />
450 <p>
451 <h2><a name="history">What is the history of uClibc?  Where did it come from?</a></h2>
452 <p>
453
454
455     uClibc started off as a fork on the <a
456     href="http://www.cix.co.uk/~mayday/">Linux-8086 C library</a>, which is
457     part of the <a href="http://www.elks.ecs.soton.ac.uk/">elks project</a>.
458     The Linux-8086 C library was, apparently, largely written from scratch but
459     also borrowed code from libc4, glibc, some Atari library code, with bits
460     and pieces from about 20 other places.
461
462     <p>
463
464     I had for some time been despairing over the state of C libraries in Linux.
465     GNU libc, the standard, is very poorly suited to embedded systems and has
466     been getting bigger with every release.  I spent quite a bit of time
467     looking over the available Open Source C libraries that I knew of, and none
468     of them really impressed me.  I felt there was a real vacancy in the
469     embedded Linux ecology.  The closest library to what I imagined an embedded
470     C library should be was uClibc.  But it had a lot of problems too -- not
471     the least of which was that, traditionally, uClibc required a complete
472     source tree fork in order to support each and every new platform.  This
473     resulted in a big mess of twisty versions, all different.  I decided to fix
474     it and the result is what you see here.
475
476     <p>
477
478     To start with, (with some initial help from <a
479     href="http://www.uclinux.org/developers/">D. Jeff Dionne</a>), I ported
480     uClibc to run on i386.  I then grafted in the header files from glibc and
481     cleaned up the resulting breakage.  This (plus some additional work) has
482     made it much less dependant on kernel headers, a large departure from its
483     traditional tightly-coupled-to-the-kernel origins.  I have written and/or
484     rewritten a number of things that were missing or broken, and sometimes
485     grafted in bits of code from the current glibc and libc5.  I have also
486     added a proper configuration system which allows you to easily select your
487     target architecture and enable and disable various features.  Many people
488     have helped by testing, contributing ports to new architectures, and adding
489     support for missing features.
490
491     <p>
492
493     In particular, around the end of 2000, Manuel Novoa III got involved with
494     uClibc.  One of his first contributions was the original gcc wrapper (which
495     has since been removed).  Since then, he has written virtually all of the
496     current uClibc stdio, time, string, ctype, locale, and wchar-related code,
497     as well as much of stdlib and various other bits throught the library.
498
499     <p>
500
501     These days, uClibc is being developed and enhanced by Erik Andersen
502     and Manuel Novoa III of
503     <a href="http://codepoet-consulting.com/">CodePoet Consulting</a>
504     along with the rest of the embedded Linux community.
505
506
507
508 <hr />
509 <p>
510 <h2><a name="demanding">I demand that you to add &lt;favorite feature&gt; right now!   How come
511         you don't answer all my questions on the mailing list instantly?  I demand
512         that you help me with all of my problems <em>Right Now</em>!</a></h2>
513 <p>
514
515     You have not paid us a single cent and yet you still have the
516     product of several years of work from Erik and Manuel and
517     many other people.  We are not your slaves!  We work on uClibc
518     because we find it interesting.  If you go off flaming us, we will
519     ignore you.
520
521
522
523 <hr />
524 <p>
525 <h2><a name="helpme">I need help with uClibc!  What should I do?</a></h2>
526 <p>
527
528     If you find that you need help with uClibc, you can ask for help on the
529     uClibc mailing list at uclibc@mail.uclibc.org.  In addition to the uClibc
530     mailing list, Erik and Manuel are also known to sometimes hang out on the
531     uClibc IRC channel: #uclibc on irc.freenode.net.
532
533     <p>
534
535     <b>Please do not send private email to Erik and/or Manuel asking for
536     private help unless you are planning on paying for consulting services.</b>
537     When we answer questions on the uClibc mailing list, it helps everyone
538     since people with similar problems in the future will be able to get help
539     by searching the mailing list archives.  Private help is reserved as a paid
540     service.  If you need to use private communication, or if you are serious
541     about getting timely assistance with uClibc, you should seriously consider
542     paying for consulting time.
543
544     <p>
545
546
547
548 <hr />
549 <p>
550 <h2><a name="contracts">I need you to add &lt;favorite feature&gt;!  Are the uClibc developers willing to
551         be paid in order to fix bugs or add in &lt;favorite feature&gt;?  Are you willing to provide
552         support contracts?</a></h2>
553 <p>
554
555     Sure!  Now you have our attention!  What you should do is contact <a
556         href="mailto:andersen@codepoet.org">Erik Andersen</a> of <a
557         href="http://codepoet-consulting.com/">CodePoet Consulting</a> to bid
558     on your project.  If Erik is too busy to personally add your feature, there
559     are several other active uClibc contributors who will almost certainly be able
560     to help you out.  Erik can contact them and ask them about their availability.
561
562
563 <hr />
564 <p>
565 <h2><a name="support">I think you guys are great and I want to help support your work!</a></h2>
566 <p>
567
568     Wow, that would be great!  You can click here to help support uClibc and/or request features.
569
570     <!-- Begin PayPal Logo -->
571     <center>
572     <form action="https://www.paypal.com/cgi-bin/webscr" method="post">
573         <input type="hidden" name="cmd" value="_xclick">
574         <input type="hidden" name="business" value="andersen@codepoet.org">
575         <input type="hidden" name="item_name" value="Support uClibc and/or request features">
576         <input type="hidden" name="image_url" value="https://codepoet-consulting.com/images/codepoet.png">
577         <input type="hidden" name="no_shipping" value="1">
578         <input type="image" src="images/donate.png" name="submit" alt="Make donation using PayPal">
579     </form>
580     </center>
581     <!-- End PayPal Logo -->
582
583     If you prefer to contact us directly for payments, hardware donations,
584     support requests, etc., you can contact
585     <a href="http://codepoet-consulting.com/">CodePoet Consulting</a> here.
586
587 <hr />
588
589 <br>
590 <br>
591 <br>
592 <br>
593 <br>
594 <br>
595 <br>
596 <br>
597 <br>
598 <br>
599 <br>
600 <br>
601 <br>
602 <br>
603 <br>
604 <br>
605 <br>
606 <br>
607 <br>
608 <br>
609 <br>
610 <br>
611 <br>
612 <br>
613 <br>
614 <br>
615 <br>
616 <br>
617 <br>
618 <br>
619 <br>
620 <br>
621 <br>
622 <br>
623 <br>
624 <br>
625 <br>
626 <br>
627 <br>
628 <br>
629 <br>
630 <br>
631 <br>
632 <br>
633 <br>
634 <br>
635 <br>
636 <br>
637 <br>
638 <br>
639 <br>
640 <br>
641 <br>
642 <br>
643 <br>
644 <br>
645 <br>
646 <br>
647 <br>
648 <br>
649 <br>
650 <br>
651 <br>
652 <br>
653
654 <!--#include file="footer.html" -->
655