Changelog.full 44 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028
  1. 2002-11-09 Erik Andersen <andersen@dillweed>
  2. * libm/Makefile: Patch from Simon Rowe to try and build asm libm code
  3. only when HAS_FPU is set. If you don't have an FPU
  4. then usm FPU code isn't going to help much...
  5. * Makefile:
  6. Patch from Stefan Allius, rebuild extra/config/conf if it is missing
  7. following a make clean
  8. * extra/config/mconf.c:
  9. Patch from Stefan Allius: avoid implicit casting of void *(64bit) to int(32bit)
  10. 2002-11-08 Erik Andersen <andersen@dillweed>
  11. * test/string/string.c: Re-enable the strchrnul and rawmemchr tests
  12. * extra/Configs/Config.in:
  13. Scare people away from enabling locale support for now.
  14. * extra/Configs/Config.i386.default:
  15. Disable ldso debugging. It should not be on by default.
  16. * extra/gcc-uClibc/Makefile:
  17. Use NATIVE_CC. Don't hard code using 'gcc'.
  18. -Erik
  19. * extra/scripts/get-needed-libgcc-objects.sh, ldso/ldso/Makefile, libc/Makefile:
  20. Patch from Stefan Allius for libgcc multilib support
  21. this is the last patch, we need to make the support of multitarget libgcc
  22. complete.
  23. ---------------------------------
  24. In ldso/ldso/Makefile
  25. I added the CPU_LDFLAGS-y to the LDFLAGS
  26. ---------------------------------
  27. In libc/Makefile
  28. I set the LDFLAGS for the script get-needed-objects.sh with CPU_LDFLAGS-y
  29. ---------------------------------
  30. In extra/scripts/get-needed-object.sh
  31. we now use the LIBGCC from Rules.mak and call LD with LDFLAGS
  32. (==CPU_LDFLAGS-y). Addtionally I grep the NM output, to fix the unresolved
  33. external __GLOBAL_OFFSET_TABLE__ on SuperH targets.
  34. ---------------------------------
  35. * include/fstab.h: Disble unimplemented function prototypes
  36. * extra/Configs/Config.sh:
  37. Patch from Stefan Allius to fixup SuperH ARCH_HAS_MMU and ARCH_HAS_FPU
  38. 2002-11-08 miles <miles@dillweed>
  39. * extra/Configs/Config.v850.default: Initial checkin.
  40. 2002-11-08 Erik Andersen <andersen@dillweed>
  41. * Rules.mak:
  42. Add CPU_CFLAGS-y into LIBGCC_CFLAGS so multilibs gcc will behave
  43. itself. Revery the "=" to ":=" change, so people like Miles can
  44. set stuff in their .config
  45. * extra/Configs/Config.powerpc.default: Add defaults for powerpc
  46. * extra/Configs/uClibc_config_fix.pl:
  47. Kill the now obsolete uClibc_config_fix.pl
  48. * extra/Configs/Config.sh.default: Add a default for sh
  49. 2002-11-08 Manuel Novoa III <mjn3@dillweed>
  50. * docs/Glibc_vs_uClibc_Differences.txt:
  51. Add notes about setvbuf and struct tm extension fields tm_gmtoff and tm_zone.
  52. * libc/string/Makefile, libc/string/strxfrm.c, libc/string/wstring.c:
  53. Added some temporary "stubs" for collation.
  54. strcoll is an alias for strcmp.
  55. strxfrm is an alias for strlcpy.
  56. wcscoll is an alias for wcscmp.
  57. wcsxfrm is implemented as a wchar version of strlcpy.
  58. Real locale-dependent implementations are coming soon.
  59. 2002-11-08 Erik Andersen <andersen@dillweed>
  60. * test/ldso/Makefile: Cleanup everything
  61. 2002-11-08 Manuel Novoa III <mjn3@dillweed>
  62. * libc/misc/wchar/Makefile, libc/misc/wchar/wchar.c:
  63. Add wcwidth and wcswidth, based on Markus Kuhn's wcwidth of 2002-05-08.
  64. Added some size/speed optimizations and integrated it into my locale
  65. framework. Minimally tested at the moment, but the stub C-locale
  66. version (which most people would probably be using) should be fine.
  67. 2002-11-08 Erik Andersen <andersen@dillweed>
  68. * extra/Configs/Config.arm.default: Leave ldso debugging off by default
  69. * ldso/ldso/arm/elfinterp.c: Fix a silly compile bug
  70. * extra/Configs/Config.in: Doh! Leave ldso debugging off by default..
  71. * extra/Configs/Config.arm.default:
  72. Construct a default arm configuration
  73. * extra/config/conf.c, extra/config/confdata.c, extra/config/mconf.c, extra/config/symbol.c:
  74. Some minor changes from Stefan Allius to make conf and
  75. mconf compile under Solaris.
  76. * ldso/ldso/sh/ld_sysdep.h, ldso/ldso/sh/resolve.S:
  77. Another SuperH patch from Stefan Allius. This make it so
  78. the SuperH lib loader can be compiled by GCC 3.3
  79. * INSTALL, README: Update the docs
  80. * extra/Configs/Config.in.arch, Rules.mak:
  81. Large cleanup patch, based in large part on a patch from
  82. Stefan Allius, which adds a great deal of sanity.
  83. * extra/config/symbol.c, extra/config/zconf.l, extra/config/zconf.tab.c_shipped, extra/config/zconf.tab.h_shipped, extra/config/conf.c, extra/config/confdata.c, extra/config/expr.h, extra/config/lex.zconf.c_shipped, extra/config/mconf.c:
  84. Merge an update from upstream
  85. * extra/Configs/Config.in, extra/Configs/Config.in.arch, extra/Configs/Config.m68k, extra/Configs/Config.mips, extra/Configs/Config.mipsel, extra/Configs/Config.powerpc, extra/Configs/Config.sh, extra/Configs/Config.sparc, extra/Configs/Config.v850, extra/Configs/Config.alpha, extra/Configs/Config.arm, extra/Configs/Config.cris, extra/Configs/Config.h8300, extra/Configs/Config.i386, extra/Configs/Config.i386.default, extra/Configs/Config.i960, extra/config/Kconfig-language.txt:
  86. Update doc reference
  87. 2002-11-07 sjhill <sjhill@dillweed>
  88. * Rules.mak, extra/Configs/Config.mips, extra/Configs/Config.mips.default, extra/Configs/Config.mipsel.default:
  89. Changes for MIPS and new configuration system.
  90. * Rules.mak: Fix target determination for MIPSEL.
  91. 2002-11-07 Manuel Novoa III <mjn3@dillweed>
  92. * libc/stdlib/strtod.c: Remove atof from strtod.o...
  93. * libc/stdlib/Makefile: Okay, fix for atof _correctly_...
  94. * libc/stdlib/Makefile: Apparently I forgot to build atof...
  95. 2002-11-07 Erik Andersen <andersen@dillweed>
  96. * libc/sysdeps/linux/powerpc/sys/procfs.h:
  97. Fixup function prototype for __uint128_t which fixes the compile
  98. on powerpc with gcc 3.2.
  99. -Erik
  100. 2002-11-07 sjhill <sjhill@dillweed>
  101. * extra/config/Makefile, extra/Makefile, Makefile:
  102. Fixed makefiles to remove binaries generated for the configuration
  103. menu system when doing a 'make clean'.
  104. 2002-11-07 Erik Andersen <andersen@dillweed>
  105. * extra/Configs/Config.in.arch: Add missing blank line
  106. 2002-11-07 miles <miles@dillweed>
  107. * extra/Configs/Config.v850, extra/Configs/Config.v850e:
  108. Rename `Config.v850e' to `Config.v850'.
  109. * extra/Configs/Config.in.arch (UCLIBC_HAS_MMU):
  110. Depend on !ARCH_HAS_NO_MMU, rather than just using it
  111. to set the default.
  112. (HAS_FPU): Depend on !ARCH_HAS_NO_FPU.
  113. (USE_GCC_SOFT_FLOAT_OPTION): New option.
  114. * extra/Configs/Config.in (DOPIC): Depend on !HAVE_NO_PIC.
  115. (UCLIBC_HAS_FULL_RPC): default to `y' if !HAVE_SHARED.
  116. (SYSTEM_LDSO): Depend on HAVE_SHARED.
  117. (DOASSERTS): New option.
  118. * Rules.mak: * Make -DNDEBUG depend on DOASSERTS, not DODEBUG
  119. * Make -msoft-float depend on USE_GCC_SOFT_FLOAT_OPTION, not
  120. UCLIBC_HAS_SOFT_FLOAT.
  121. 2002-11-06 Erik Andersen <andersen@dillweed>
  122. * libc/sysdeps/linux/arm/__longjmp.S, libc/sysdeps/linux/arm/setjmp.S, libc/sysdeps/linux/mips/__longjmp.c, libc/sysdeps/linux/mips/setjmp_aux.c:
  123. Update soft-float handling
  124. * extra/config/confdata.c: Increase maximum .config line size to 1024.
  125. * extra/config/confdata.c:
  126. Recognize 'n' tristate/boolean symbol value in the .config file,
  127. allowing more convenient manual editing of the .config file. Patch
  128. by Petr Baudis, skimmed from linux-kernel mailing list.
  129. * ldso/ldso/powerpc/elfinterp.c: Fix up a compile error
  130. * ldso/ldso/Makefile: Cleanup patch from Simon Rowe
  131. 2002-11-05 Manuel Novoa III <mjn3@dillweed>
  132. * libc/misc/wchar/wchar.c:
  133. Forgot to change btowc and wctob when I changed the wc<->mb functions yesterday.
  134. 2002-11-05 Erik Andersen <andersen@dillweed>
  135. * libc/stdio/stdio.c:
  136. For now, leave the "Oddly enough, __fsetlocking() is NOT threadsafe."
  137. comment as an mjn3 only item.
  138. * Rules.mak, extra/Configs/Config.in.arch: Cleanup soft-float support
  139. * libc/sysdeps/linux/h8300/Makefile, libc/sysdeps/linux/m68k/Makefile, Rules.mak:
  140. Fixup handling of disabled options
  141. * extra/gcc-uClibc/Makefile: Fix gcc-uClibc.h dependancies
  142. * ldso/ldso/sparc/elfinterp.c, ldso/ldso/sh/elfinterp.c, ldso/ldso/powerpc/elfinterp.c, ldso/ldso/mips/elfinterp.c, ldso/ldso/m68k/elfinterp.c, ldso/ldso/i386/elfinterp.c, ldso/ldso/cris/elfinterp.c, ldso/ldso/arm/elfinterp.c, ldso/ldso/readelflib1.c, ldso/ldso/Makefile, ldso/ldso/ldso.c, extra/Configs/Config.in:
  143. Massive scrubbing of the shared lib loader error handling.
  144. Move all configuration options into the new config system.
  145. -Erik
  146. * libc/termios/ttyname.c:
  147. A patch from Danny Lepage so that we do not setting on symlinks
  148. when looking for a device match, and instead keep looking till
  149. we find the correct device.
  150. * docs/Glibc_vs_uClibc_Differences.txt: Expand NIS comments
  151. * Rules.mak, extra/gcc-uClibc/Makefile, extra/gcc-uClibc/gcc-uClibc.c, libpthread/Makefile:
  152. Standardize LIBGCC_DIR
  153. * ldso/ldso/Makefile: Kill legacy DOPIC=true assignment
  154. * libc/Makefile: Patch from Stefan Allius -- export LIBGCC
  155. * libc/sysdeps/linux/common/Makefile:
  156. Patch from Stefan Allius. Include CPU_CFLAGS when compiling
  157. initfini
  158. * extra/config/symbol.c: Patch from M. R. Brown to fix 'make defconfig'
  159. * Rules.mak: Export TARGET_ARCH
  160. 2002-11-04 Manuel Novoa III <mjn3@dillweed>
  161. * docs/Glibc_vs_uClibc_Differences.txt:
  162. Hit the highlights of glibc differences in my code. Not yet complete though.
  163. * libc/misc/wchar/wchar.c, libc/stdio/printf.c:
  164. Add printf wchar support for %lc (%C) and %ls (%S).
  165. Require printf format strings to be valid multibyte strings beginning and
  166. ending in their initial shift state, as per the stds.
  167. Fixed a bug in _wchar_wcsntoutf8s(). Don't store wcs position if dst is NULL.
  168. Also, introduce an awful hack into _wchar_wcsntoutf8s() and wcsrtombs() in
  169. order to support %ls in printf. See comments below for details.
  170. Change behaviour of wc<->mb functions when in the C locale. Now they do
  171. a 1-1 map for the range 0x80-UCHAR_MAX. This is for backwards compatibility
  172. and consistency with the stds requirements that a printf format string by
  173. a valid multibyte string beginning and ending in it's initial shift state.
  174. * Rules.mak: This fixes a broken build for me.
  175. 2002-11-04 Erik Andersen <andersen@dillweed>
  176. * Rules.mak: Fixup so we use soft-float when HAS_FPU is disabled.
  177. -Erik
  178. * libc/sysdeps/linux/sh/__longjmp.S, libc/sysdeps/linux/sh/bsd-_setjmp.S, libc/sysdeps/linux/sh/bsd-setjmp.S, libc/sysdeps/linux/sh/clone.S, libc/sysdeps/linux/sh/setjmp.S, libc/sysdeps/linux/sh/vfork.S:
  179. I dunno why there were align 5, but align 4 is much more sensible.
  180. * libc/sysdeps/linux/sh/bsd-setjmp.S, libc/sysdeps/linux/sh/clone.S, libc/sysdeps/linux/sh/setjmp.S, libc/sysdeps/linux/sh/sysdep.h, libc/sysdeps/linux/sh/vfork.S, libc/sysdeps/linux/sh/__longjmp.S, libc/sysdeps/linux/sh/bsd-_setjmp.S:
  181. Kill sysdep.h and fixup the SH asm to not use it.
  182. -Erik
  183. * libc/sysdeps/linux/sh/clone.S:
  184. Don't use ENTRY(), make the asm explicit
  185. -Erik
  186. * docs/uclibc.org/index.html:
  187. Add link to search google's uclibc archive
  188. * libc/sysdeps/linux/common/syscalls.c: Oops. Fix compilation on arm.
  189. -Erik
  190. 2002-11-03 Erik Andersen <andersen@dillweed>
  191. * libc/sysdeps/linux/arm/inout_bwl.c, libc/sysdeps/linux/arm/ioperm.c, libc/sysdeps/linux/arm/Makefile:
  192. A patch from Vincent Sanders to fix the arm implementation of
  193. ioperm() and iopl()
  194. 2002-11-03 Manuel Novoa III <mjn3@dillweed>
  195. * libc/stdio/printf.c:
  196. It was easy enough to respect locale-specific decimal point for printf
  197. floating point output, so at least implement that. But grouping will
  198. have to wait for the rewrite of _dtostr.
  199. * libc/stdio/stdio.c, libc/stdio/printf.c, libc/sysdeps/linux/common/bits/uClibc_stdio.h:
  200. Implement locale-specific grouping in printf for base 10 integer conversions
  201. when the grouping flag "'" is specified. Grouping for floating point values
  202. may wait until I do a rewrite of the floating pt to string code...
  203. 2002-11-03 Erik Andersen <andersen@dillweed>
  204. * ldso/ldso/sh/elfinterp.c, ldso/ldso/sh/ld_sysdep.h, ldso/ldso/sh/resolve.S, ldso/ldso/ldso.c:
  205. Several SH lib loader patches by Stefan Allius <allius@atecom.com>
  206. and "M. R. Brown" <mrbrown@0xd6.org>
  207. * extra/scripts/initfini.awk, libc/sysdeps/linux/common/initfini.c:
  208. Another update to initfini.awk and initfini.c from Stefan Allius
  209. to hopefully address SH wierdness. Now works on other architecture
  210. properly as well.
  211. * libc/sysdeps/linux/cris/sysdep.h, libc/sysdeps/linux/i960/clone.S, libc/sysdeps/linux/m68k/clone.S, libc/sysdeps/linux/sh/sysdep.h:
  212. Properly prefix some symbols
  213. * extra/Configs/Config.in.arch, extra/Configs/Config.m68k, extra/Configs/Config.mips, extra/Configs/Config.mipsel, extra/Configs/Config.powerpc, extra/Configs/Config.sh, extra/Configs/Config.sparc, extra/Configs/Config.v850e, extra/Configs/Config.cris, extra/Configs/Config.h8300, extra/Configs/Config.i386, extra/Configs/Config.i386.default, extra/Configs/Config.i960, extra/Configs/Config.alpha, extra/Configs/Config.arm, Rules.mak:
  214. Yet more config system updating.
  215. * ldso/ldso/sh/boot1_arch.h, ldso/ldso/sh/ld_sysdep.h:
  216. Patch from M. R. Brown <mrbrown@0xd6.org> to get rid of
  217. "depreciated multi-line string literals" warnings
  218. * libc/inet/resolv.c:
  219. Patch from "Cho, Seong-Myun" <smcho@xecurenexus.com> to limit
  220. things to the lower 16 bits of 'id'.
  221. * Makefile, Rules.mak: Use "include_config" not "include-config"
  222. 2002-11-02 Erik Andersen <andersen@dillweed>
  223. * extra/Configs/Config.sh:
  224. kill some ancient stuff that appears to be lingering
  225. * extra/Configs/Config.sh: Default to SH4
  226. * extra/Configs/Config.sparc, extra/Configs/Config.v850e, extra/Configs/Config.alpha, extra/Configs/Config.arm, extra/Configs/Config.cris, extra/Configs/Config.cross.arm.uclinux, extra/Configs/Config.h8300, extra/Configs/Config.i386, extra/Configs/Config.i386.default, extra/Configs/Config.i960, extra/Configs/Config.in.arch, extra/Configs/Config.m68k, extra/Configs/Config.m68k.coff, extra/Configs/Config.mips, extra/Configs/Config.mipsel, extra/Configs/Config.powerpc, extra/Configs/Config.sh:
  227. update all the Config files for the various arches so they work with the new
  228. config system. Hopefully I got everything here correct...
  229. -Erik
  230. * TODO: Update TODO items
  231. * extra/config/.cvsignore, extra/config/Makefile, extra/config/zconf.tab.c_shipped, extra/config/zconf.y:
  232. A few cosmetic adjustments, and fixup the makefile a bit
  233. * extra/Configs/Config.i386.default, extra/Configs/Config.in, ldso/ldso/Makefile:
  234. Fix PIC configuration, so shared libraries once again work
  235. -Erik
  236. * extra/Configs/Config.in:
  237. It looks like I lost DEVEL_TOOL_PREFIX. Put it back.
  238. -Erik
  239. 2002-11-01 Manuel Novoa III <mjn3@dillweed>
  240. * libc/misc/locale/locale.c: Fix a stupid bug.
  241. * libc/misc/locale/locale.c:
  242. Reworked setlocale() return values and locale arg processing to
  243. be more like glibc. Applications expecting to be able to
  244. query locale settings should now work... at the cost of almost
  245. doubling the size of the setlocale object code.
  246. Fixed a bug in the internal fixed-size-string locale specifier code.
  247. * extra/locale/LOCALES: Add a few more entries.
  248. * extra/locale/gen_locale.c:
  249. Work around glibc brain-damage regarding nl_langinfo and {mon_}grouping
  250. entries.
  251. 2002-11-01 Erik Andersen <andersen@dillweed>
  252. * docs/uclibc.org/uClibc-apps.html: Fix udhcp link
  253. * Rules.mak: Don't assume i386
  254. 2002-10-31 Erik Andersen <andersen@dillweed>
  255. * extra/Configs/Config.arm, extra/Configs/Config.i386, extra/Configs/Config.in.arch, Rules.mak:
  256. Make it so arch specific stuff can be simpler. Initial attempt at
  257. making CPU_CFLAGS, which should allow things to be optimized per-CPU
  258. and/or per-system.
  259. -Erik
  260. * extra/config/lxdialog/.cvsignore, extra/config/lxdialog/lxdialog, extra/config/zconf.tab.c, extra/config/zconf.tab.h, extra/config/.cvsignore, extra/config/conf, extra/config/lex.zconf.c, extra/config/lkc_defs.h, extra/config/mconf:
  261. Oops. Kill generated binaries.
  262. * extra/gcc-uClibc/Makefile: Skip the dependancy on .config for now
  263. * extra/gcc-uClibc/Makefile: Fix a lingering reference to Config
  264. -Erik
  265. * test/Makefile, test/Rules.mak:
  266. Allow 'make clean' on the test stuff to work with the new config system.
  267. -Erik
  268. * Rules.mak: Don't force gcc 3.2 on the world
  269. -Erik
  270. * libutil/Makefile, libpthread/linuxthreads/attr.c, libpthread/linuxthreads/weaks.c, libpthread/linuxthreads/wrapsyscall.c, libpthread/Makefile, libm/powerpc/Makefile, libm/Makefile, libc/unistd/Makefile, libc/unistd/daemon.c, libc/unistd/fpathconf.c, libc/unistd/pathconf.c, libc/sysdeps/linux/sh/sysdep.h, libc/sysdeps/linux/powerpc/Makefile, libc/sysdeps/linux/m68k/Makefile, libc/sysdeps/linux/m68k/clone.S, libc/sysdeps/linux/m68k/crt0.S, libc/sysdeps/linux/m68k/vfork.S, libc/sysdeps/linux/i960/README, libc/sysdeps/linux/h8300/Makefile, libc/sysdeps/linux/h8300/crt0.S, libc/sysdeps/linux/h8300/vfork.S, libc/sysdeps/linux/cris/Makefile, libc/sysdeps/linux/common/bits/posix_opt.h, libc/sysdeps/linux/common/bits/uClibc_stdio.h, libc/sysdeps/linux/common/setrlimit64.c, libc/sysdeps/linux/common/syscalls.c, libc/sysdeps/linux/common/truncate64.c, libc/sysdeps/linux/common/Makefile, libc/sysdeps/linux/common/creat64.c, libc/sysdeps/linux/common/ftruncate64.c, libc/sysdeps/linux/common/getdirname.c, libc/sysdeps/linux/common/getrlimit64.c, libc/sysdeps/linux/common/initfini.c, libc/sysdeps/linux/common/llseek.c, libc/sysdeps/linux/common/mmap64.c, libc/sysdeps/linux/common/open64.c, libc/sysdeps/linux/common/pread_write.c, libc/string/Makefile, libc/stdlib/Makefile, libc/stdlib/getpt.c, libc/stdlib/grantpt.c, libc/stdlib/ptsname.c, libc/stdio/Makefile, libc/stdio/tmpfile.c, libc/pwd_grp/Makefile, libc/misc/time/Makefile, libc/misc/statfs/Makefile, libc/misc/statfs/fstatfs64.c, libc/misc/statfs/fstatvfs64.c, libc/misc/statfs/statfs64.c, libc/misc/statfs/statvfs64.c, libc/misc/locale/Makefile, libc/misc/internals/Makefile, libc/misc/internals/tempname.c, libc/misc/glob/glob64.c, libc/misc/dirent/alphasort64.c, libc/misc/dirent/readdir64.c, libc/misc/dirent/readdir64_r.c, libc/misc/dirent/scandir64.c, libc/misc/Makefile, libc/inet/rpc/Makefile, libc/inet/Makefile, ldso/ldso/Makefile, ldso/Makefile, include/sys/cdefs.h, include/features.h, extra/locale/Makefile, extra/gcc-uClibc/Makefile, extra/gcc-uClibc/gcc-uClibc.c, extra/config/lxdialog/inputbox.c, extra/config/lxdialog/lxdialog, extra/config/lxdialog/lxdialog.c, extra/config/lxdialog/menubox.c, extra/config/lxdialog/msgbox.c, extra/config/lxdialog/textbox.c, extra/config/lxdialog/util.c, extra/config/lxdialog/yesno.c, extra/config/lxdialog/BIG.FAT.WARNING, extra/config/lxdialog/Makefile, extra/config/lxdialog/checklist.c, extra/config/lxdialog/colors.h, extra/config/lxdialog/dialog.h, extra/config/zconf.tab.c_shipped, extra/config/zconf.tab.h, extra/config/zconf.tab.h_shipped, extra/config/zconf.y, extra/config/lkc_proto.h, extra/config/mconf, extra/config/mconf.c, extra/config/menu.c, extra/config/symbol.c, extra/config/zconf.l, extra/config/zconf.tab.c, extra/config/lex.zconf.c_shipped, extra/config/lkc.h, extra/config/lkc_defs.h, extra/config/Makefile, extra/config/conf, extra/config/conf.c, extra/config/confdata.c, extra/config/expr.c, extra/config/expr.h, extra/config/lex.zconf.c, extra/Configs/Config.i386, extra/Configs/Config.i386.default, extra/Configs/Config.in, Rules.mak, .cvsignore, Makefile:
  271. Ok, this commit is _huge_ and its gonna change the world. I've
  272. been working on a new config system on and off for about 6 months
  273. now, but I've never been fully satisfied. Well, I'm finally am
  274. happy with the new config system, so here it is. This completely
  275. removes the old uClibc configuration system, and replaces it with
  276. an entirely new system based on LinuxKernelConf, from
  277. http://www.xs4all.nl/~zippel/lc/
  278. As it turns out, Linus has just merged LinuxKernelConf into Linux
  279. 2.5.45, so it looks like I made the right choice.
  280. I have thus far updated only x86. I'll be updating the other
  281. architectures shortly.
  282. -Erik
  283. * test/malloc/.cvsignore: Ignore generated stuff
  284. * test/malloc/Makefile, test/malloc/realloc0.c:
  285. Add a simple realloc test
  286. -Erik
  287. * extra/scripts/get-needed-libgcc-objects.sh:
  288. Fixup script to avoid potential spurious whining over empty object files.
  289. -Erik
  290. 2002-10-30 Erik Andersen <andersen@dillweed>
  291. * ldso/util/bswap.h: Use '#ifdef __linux__' not '#ifdef linux'
  292. * Rules.mak: Use a nifty macro to make testing gcc features simpler
  293. and easier to read.
  294. -Erik
  295. 2002-10-29 Manuel Novoa III <mjn3@dillweed>
  296. * libc/stdlib/stdlib.c:
  297. Fix a couple of 'restrict' bugs in mbstowcs and wcstombs.
  298. 2002-10-29 Erik Andersen <andersen@dillweed>
  299. * libc/stdio/printf.c: Fix a silly typo for Manuel
  300. -Erik
  301. * extra/scripts/initfini.awk: For now, comment out the broken part
  302. * extra/scripts/initfini.awk, libc/sysdeps/linux/common/initfini.c:
  303. Remove my horrible SH hack infavor of this fix for initfini.awk from
  304. Stefan Allius <allius@atecom.com>, which does a better job.
  305. * libpthread/linuxthreads/manager.c:
  306. A patch from Arne Jonsson <arne.jonsson@i3micro.com>:
  307. Attached are the changes we think is necessary in order to use user
  308. defined stacksizes for each thread. When testing I forgot to lower the
  309. PTHREAD_STACK_MIN to the lowest value used for the stacks, this caused
  310. stranged reboots.
  311. As said before, we are using uClinux 2.0.38 on a ARM7TDMI.
  312. * libc/sysdeps/linux/common/initfini.c:
  313. Add in a horrible hack that seems necessary for the Hitachi
  314. SH processors to work properly.
  315. -Erik
  316. 2002-10-29 Manuel Novoa III <mjn3@dillweed>
  317. * libc/stdio/printf.c:
  318. Fix a problem in vasprintf (reported by vodz a while back) when built
  319. without custom stream support. In that case, it is necessary to do
  320. a va_copy. Note: The affected code is not built in the stock config.
  321. Also, make sure each va_copy has a matching va_end, as required by C99.
  322. 2002-10-28 Manuel Novoa III <mjn3@dillweed>
  323. * libc/misc/assert/__assert.c:
  324. ANSI/ISO C99 requires assert() to write to stderr. This means that
  325. writing to STDERR_FILENO is insufficient, as the user could freopen
  326. stderr. It is also insufficient to output to fileno(stderr) since
  327. this would fail in the custom stream case. I didn't remove the
  328. old code though, as it doesn't use stdio stream functionality
  329. and is useful in debugging the stdio code.
  330. * libc/misc/time/time.c:
  331. Allow timezone info to be specified in a file... /etc/TZ. Turned on by
  332. default for now. From the comments...
  333. * Defining __TIME_TZ_FILE causes tzset() to attempt to read the TZ value
  334. * from the file /etc/TZ if the TZ env variable isn't set. The file contents
  335. * must be the intended value of TZ, followed by a newline. No other chars,
  336. * spacing, etc is allowed. As an example, an easy way for me to init
  337. * /etc/TZ appropriately would be: echo CST6CDT > /etc/TZ
  338. Also optimized timezone setting when the timezone string hasn't changed,
  339. as well as fixed a minor buglet wrt SUSv3-allowed chars in TZ std and
  340. dst fields.
  341. 2002-10-28 miles <miles@dillweed>
  342. * Makefile:
  343. Define TOPDIR to be just `.' when invoking gen_bits_syscall_h.sh, since
  344. we've already chdir'ed to $(TOPDIR).
  345. * extra/scripts/gen_bits_syscall_h.sh:
  346. Add appropriate -I options so that any files included by unistd.h are
  347. found correctly.
  348. Tweak the whitespace of the generated file.
  349. 2002-10-25 Erik Andersen <andersen@dillweed>
  350. * libc/misc/internals/Makefile: Fixup depends
  351. * libc/Makefile: Put it back the way it was. Sigh.
  352. * libc/Makefile:
  353. Sigh. Lets not use LD to link, or we lose the INTERP field.
  354. -Erik
  355. * libc/misc/internals/Makefile:
  356. Doh. Add a missing #include to interp.c. I wonder why it used to
  357. work? Perhaps the wrapper bug miles fixed? Regardless this is very
  358. much needed.
  359. -Erik
  360. * libc/sysdeps/linux/common/Makefile:
  361. Overwriting the crt1.o link is fine
  362. * libc/sysdeps/linux/common/Makefile:
  363. Be nicer to gcc -- add a link for crt1.o
  364. * ldso/libdl/Makefile: Actually install libdl.a
  365. -Erik
  366. 2002-10-23 Erik Andersen <andersen@dillweed>
  367. * libpthread/linuxthreads/manager.c:
  368. A patch from Arne Jonsson <arne.jonsson@i3micro.com> to allow
  369. uClibc's libpthread to run on linux 2.0.x kernels which lack
  370. poll() and therefore must use select() instead.
  371. 2002-10-23 miles <miles@dillweed>
  372. * extra/gcc-uClibc/gcc-uClibc.c:
  373. Make `-nostdlib' and `-nodefaultlibs' work correctly.
  374. 2002-10-22 Erik Andersen <andersen@dillweed>
  375. * libc/stdlib/ptsname.c:
  376. When UNIX98PTY_ONLY was false, but Unix 98 ptys were in fact working and
  377. functional, everything would succeed but then we would return a failure due to
  378. a silly logic bug. This patch fixes it so things will work correctly
  379. regardless of the UNIX98PTY_ONLY setting.
  380. -Erik
  381. 2002-10-21 Erik Andersen <andersen@dillweed>
  382. * docs/uclibc.org/uClibc-apps.html:
  383. Update freeswan entry, per success report from Arne Bernin
  384. 2002-10-18 Erik Andersen <andersen@dillweed>
  385. * Rules.mak, libc/sysdeps/linux/common/Makefile:
  386. This patch, based on a patch from Stefan Allius, lets us pick an
  387. appropriate awk implementation at compile time, so we can again
  388. compile on Solaris and whatnot.
  389. -Erik
  390. * Makefile: Echo mmu-less warning where appropriate
  391. * docs/Glibc_vs_uClibc_Differences.txt:
  392. Add in an initial list of the differences between glibc and uClibc.
  393. This is not complete, but covers some of the main points.
  394. -Erik
  395. 2002-10-18 miles <miles@dillweed>
  396. * libc/stdlib/malloc/malloc.c:
  397. Don't infinitely recurse when trying to grow __malloc_mmb_heap.
  398. 2002-10-17 Erik Andersen <andersen@dillweed>
  399. * test/stdlib/.cvsignore, test/stdlib/Makefile, test/stdlib/ptytest.c:
  400. Add a test from Alex King <alex@morrison.king.net.nz> which
  401. shows a failure in ptsname when ASSUME_DEVPTS=false
  402. -Erik
  403. * libc/stdlib/malloc/heap.h, libc/stdlib/malloc/realloc.c:
  404. Fix malloc so it compiles and works when using pthreads
  405. -Erik
  406. 2002-10-16 Erik Andersen <andersen@dillweed>
  407. * test/ldso/Makefile: Remove -fuclibc-ctors
  408. * ldso/libdl/dlib.c:
  409. Kill a warning. Patch from Joel Coltoff <joel@wmi.com>
  410. 2002-10-15 sjhill <sjhill@dillweed>
  411. * ldso/libdl/dlib.c:
  412. Fixed 'dlopen' call for MIPS. Things seem to work swimingly. Woohoo!
  413. 2002-10-15 miles <miles@dillweed>
  414. * Makefile (uClibc_config):
  415. Define __UCLIBC_UCLINUX_BROKEN_MUNMAP__ for MMU-less systems.
  416. * libc/stdlib/malloc/realloc.c:
  417. Use __heap_[un]lock instead of __malloc_[un]lock.
  418. * libc/stdlib/malloc/malloc.h: Get rid of old malloc lock stuff.
  419. * libc/stdlib/malloc/free.c, libc/stdlib/malloc/malloc.c:
  420. Fix locking to not deadlock when __UCLIBC_UCLINUX_BROKEN_MUNMAP__ is defined.
  421. 2002-10-14 Erik Andersen <andersen@dillweed>
  422. * extra/scripts/initfini.pl: Kill the now redundant initfini.pl
  423. -Erik
  424. * libc/sysdeps/linux/common/Makefile, extra/scripts/initfini.awk:
  425. Patch from Christian MICHON <christian_michon@yahoo.fr> to reimplement
  426. my little initfini.pl script in awk. This eliminates uClibc's
  427. compile-time dependancy on perl, and lets us use the much lighter
  428. weight awk, which facilitates building uClibc standalone environments.
  429. 2002-10-13 Erik Andersen <andersen@dillweed>
  430. * include/pthread.h, libc/sysdeps/linux/common/bits/sigthread.h, libpthread/linuxthreads/sysdeps/unix/sysv/linux/bits/sigthread.h:
  431. It turns out that __thread is now a gcc keyword. We used __thread in
  432. a few spots in our header files. In this change I do a
  433. s/__thread/__thread_id/
  434. so we no longer conflict with newer CVS versions of gcc (such as the
  435. patched up gcc 3.2 included with RedHat 3.0).
  436. -Erik
  437. 2002-10-09 Erik Andersen <andersen@dillweed>
  438. * libc/sysdeps/linux/sparc/bits/fcntl.h, libc/sysdeps/linux/mips/bits/fcntl.h:
  439. Octal to hex
  440. * libc/sysdeps/linux/cris/bits/fcntl.h, libc/sysdeps/linux/i960/bits/fcntl.h, libc/sysdeps/linux/alpha/bits/fcntl.h, libc/sysdeps/linux/v850/bits/fcntl.h, libc/sysdeps/linux/sparc/bits/fcntl.h, libc/sysdeps/linux/sh/bits/fcntl.h, libc/sysdeps/linux/powerpc/bits/fcntl.h, libc/sysdeps/linux/mips/bits/fcntl.h, libc/sysdeps/linux/m68k/bits/fcntl.h, libc/sysdeps/linux/h8300/bits/fcntl.h, libc/sysdeps/linux/i386/bits/fcntl.h, libc/sysdeps/linux/arm/bits/fcntl.h:
  441. Support O_STREAMING
  442. 2002-10-09 miles <miles@dillweed>
  443. * libc/stdlib/malloc/free.c, libc/stdlib/malloc/heap.h, libc/stdlib/malloc/malloc.c, libc/stdlib/malloc/malloc.h:
  444. * Add support for uClinux's broken munmap, contingent on
  445. __UCLIBC_UCLINUX_BROKEN_MUNMAP__ (which is currently not defined anywhere).
  446. This makes other cases a tiny bit less efficient too.
  447. * Move the malloc lock into the heap structure (locking is still done
  448. at the malloc level though, not by the heap functions).
  449. * Initialize the malloc heap to contain a tiny initial static free-area so
  450. that programs that only do a very little allocation won't ever call mmap.
  451. 2002-10-08 sjhill <sjhill@dillweed>
  452. * Makefile:
  453. Implemented 'romfs' target so that uClibc works with building uClinux.
  454. 2002-10-01 Erik Andersen <andersen@dillweed>
  455. * libc/sysdeps/linux/mips/crt0.S:
  456. Patch from Marshall M. Midden <m4@brecis.com> to fixup crt0 for
  457. mips where I had made a mess
  458. * libc/string/Makefile: Patch from Stefan Allius <allius@atecom.com>:
  459. 'wcschrnul.o' appeares two times in MOBJW2
  460. * libc/sysdeps/linux/sh/__init_brk.c, libc/sysdeps/linux/sh/brk.c, libc/sysdeps/linux/sh/sbrk.c, libc/sysdeps/linux/common/initfini.c, extra/Configs/Config.sh, extra/scripts/initfini.pl:
  461. Patch from Stefan Allius <allius@atecom.com>:
  462. * extra/scripts/initfini.pl, extra/scripts/get-needed-libgcc-objects.sh, ldso/ldso/sh/boot1_arch.h, ldso/ldso/sh/elfinterp.c, ldso/ldso/sh/ld_sysdep.h, ldso/ldso/sh/resolve.S, ldso/ldso/i386/elfinterp.c, ldso/ldso/arm/elfinterp.c, ldso/ldso/ldso.c, ldso/ldso/readelflib1.c, libc/sysdeps/linux/sh/crt0.S, libc/sysdeps/linux/mips/crt0.S, libc/sysdeps/linux/i386/crt0.S, libc/sysdeps/linux/arm/crt0.S, extra/gcc-uClibc/gcc-uClibc.c, libc/Makefile, libc/misc/internals/__uClibc_main.c, libpthread/Makefile:
  463. This commit contains a patch from Stefan Allius <allius@atecom.com> to change
  464. how uClibc handles _init and _fini, allowing shared lib constructors and
  465. destructors to initialize things in the correct sequence. Stefan ported the SH
  466. architecture. I then ported x86, arm, and mips. x86 and arm are working fine,
  467. but I don't think I quite got things correct for mips.
  468. * extra/locale/Makefile, Makefile, Rules.mak, test/Rules.mak:
  469. Sigh. OpenBSD used /usr/bin/{true|false}
  470. 2002-09-26 Erik Andersen <andersen@dillweed>
  471. * libc/misc/internals/__uClibc_main.c, libc/sysdeps/linux/cris/sysdep.S:
  472. Replace _LIBC_REENTRANT with __UCLIBC_HAS_THREADS__
  473. -Erik
  474. * docs/uclibc.org/uClibc-apps.html: A few additions
  475. * libc/stdlib/atexit.c: A bug fix from Alexey V. Neyman:
  476. In case of vfork(), the parent was left with __exit_count of -1 and
  477. thus tried to find non-NULL value of __exit_function_table[-1].atexit,
  478. __exit_function_table[-2].atexit and call this function; of course, it
  479. leads to coredump.
  480. 2002-09-23 tobiasa <tobiasa@dillweed>
  481. * libc/sysdeps/linux/cris/Makefile, libc/sysdeps/linux/cris/__init_brk.c, libc/sysdeps/linux/cris/brk.c, libc/sysdeps/linux/cris/crt0.c, libc/sysdeps/linux/cris/sbrk.c, libc/sysdeps/linux/cris/sysdep.h:
  482. Cosmetic cleanup.
  483. * ldso/ldso/cris/ld_syscalls.h:
  484. Removed redundant code. Same thing exist in sys/syscalls.h so include that
  485. instead.
  486. 2002-09-20 tobiasa <tobiasa@dillweed>
  487. * extra/Configs/Config.cris:
  488. Build libpthread now that the CRIS as support for it!
  489. * libc/sysdeps/linux/cris/bits/syscalls.h, libc/sysdeps/linux/cris/sys/procfs.h, libc/sysdeps/linux/cris/clone.S, libc/sysdeps/linux/cris/syscall-cris.c, libc/sysdeps/linux/cris/syscall.S, libc/sysdeps/linux/cris/sysdep.S, libc/sysdeps/linux/cris/sysdep.h, libc/sysdeps/linux/cris/Makefile:
  490. * Added clone() system call.
  491. * Proper implementation of bits/syscalls.h, no cheating by just including
  492. <asm/unistd.h>.
  493. * Proper implementation of syscall.S, it no longer contains the
  494. __syscall_error, instead it contains code which makes syscall(nr,...) a
  495. system call.
  496. * Added sysdep.S which contains the code for __syscall_error.
  497. * Added some macros to sysdep.h.
  498. * Added sys/procfs.h, which is needed when compiling with thread support.
  499. * Removed unused syscall-cris.c.
  500. * libpthread/linuxthreads/sysdeps/cris/pt-machine.h, libpthread/linuxthreads/sysdeps/cris/sigcontextinfo.h:
  501. Added pthread support for CRIS.
  502. * libc/sysdeps/linux/cris/ipc.c: Removed unused file
  503. 2002-09-19 Manuel Novoa III <mjn3@dillweed>
  504. * libc/misc/gnu/Makefile, libc/misc/gnu/obstack.c, libc/misc/Makefile, include/gnu-versions.h, include/obstack.h:
  505. Add gnu obstack support. I still need to implement the obstack_printf
  506. and obstack_vprintf, but at least now the reiserfsprogs build.
  507. * libc/unistd/getsubopt.c, libc/unistd/Makefile:
  508. Add SUSv3 function getsubopt.
  509. * libc/misc/wctype/wctype.c, libc/misc/wchar/wchar.c, libc/misc/locale/locale.c, libc/stdlib/stdlib.c, libc/string/Makefile, libc/string/wstring.c, include/string.h:
  510. Hide my personal #warning reminders. Add __wcschrnul, rename strchrnul
  511. to __strchrnul, and add weak aliases for them.
  512. 2002-09-19 tobiasa <tobiasa@dillweed>
  513. * ldso/ldso/cris/ld_syscalls.h:
  514. * Changed paramater names to match their register, i.e. __a -> __r10.
  515. * Do not clobber things that are specified as outputs.
  516. 2002-09-17 davidm <davidm@dillweed>
  517. * libpthread/linuxthreads/sysdeps/m68k/pt-machine.h:
  518. Fixup thread support for the 5200/5307 coldfire platforms.
  519. * libc/sysdeps/linux/m68k/clone.S:
  520. Add in clone and make the assembler PIC/msep-data friendly.
  521. * libc/sysdeps/linux/m68k/bits/setjmp.h:
  522. Fixup JMPBUF_UNWINDS so that is will compile if used :-)
  523. * libc/inet/addr.c:
  524. Fix a memory corruption bug.
  525. With gcc, sizeof on a sized array argument to a function returns 4, not
  526. 16 as was expected in this code. This caused inet_ntoa to overwrite
  527. whatever came before the buffer in the BSS by up to 12 bytes.
  528. 2002-09-16 Erik Andersen <andersen@dillweed>
  529. * docs/uclibc.org/index.html: Add url
  530. * docs/uclibc.org/index.html: Update index
  531. * libc/sysdeps/linux/common/getdirname.c:
  532. Use __UCLIBC_HAVE_LFS__ not __USE_LARGEFILE64 to decide if
  533. 64 bit interfaces should be used.
  534. -Erik
  535. 2002-09-16 tobiasa <tobiasa@dillweed>
  536. * libc/Makefile:
  537. * Added semi-support for version scripts. If sysdeps/linux/<arch>/libc.map
  538. exists read it and include it when linking.
  539. * Add LIBGCC when linking libc.
  540. * Rules.mak, Makefile: * Updated for the CRIS port.
  541. * Added variable LIBGCC which is included when linking libc.so. Arch
  542. specific linker options go into LIBGCC_CFLAGS defined in Config.<arch>.
  543. * extra/Configs/Config.cris: Configuration for the CRIS port.
  544. * ldso/ldso/Makefile, ldso/ldso/ldso.c: Updated for the CRIS port.
  545. * ldso/ldso/cris/boot1_arch.h, ldso/ldso/cris/elfinterp.c, ldso/ldso/cris/ld_syscalls.h, ldso/ldso/cris/ld_sysdep.h, ldso/ldso/cris/resolve.S:
  546. Initial version of the dynamic linker code for the CRIS port.
  547. * libc/sysdeps/linux/Makefile: Added cris to ALL_SUBDIRS
  548. * libc/sysdeps/linux/cris/sys/ucontext.h, libc/sysdeps/linux/cris/bits/byteswap.h, libc/sysdeps/linux/cris/bits/endian.h, libc/sysdeps/linux/cris/bits/fcntl.h, libc/sysdeps/linux/cris/bits/huge_val.h, libc/sysdeps/linux/cris/bits/kernel_stat.h, libc/sysdeps/linux/cris/bits/kernel_types.h, libc/sysdeps/linux/cris/bits/mathcalls.h, libc/sysdeps/linux/cris/bits/mman.h, libc/sysdeps/linux/cris/bits/setjmp.h, libc/sysdeps/linux/cris/bits/shm.h, libc/sysdeps/linux/cris/bits/syscalls.h, libc/sysdeps/linux/cris/bits/wordsize.h, libc/sysdeps/linux/cris/Makefile, libc/sysdeps/linux/cris/__init_brk.c, libc/sysdeps/linux/cris/__longjmp.S, libc/sysdeps/linux/cris/brk.c, libc/sysdeps/linux/cris/crt0.c, libc/sysdeps/linux/cris/fork.c, libc/sysdeps/linux/cris/ipc.c, libc/sysdeps/linux/cris/libc.map, libc/sysdeps/linux/cris/sbrk.c, libc/sysdeps/linux/cris/setjmp.S, libc/sysdeps/linux/cris/syscall-cris.c, libc/sysdeps/linux/cris/syscall.S, libc/sysdeps/linux/cris/sysdep.h, libc/sysdeps/linux/cris/vfork.c:
  549. Initial version of the CRIS port.
  550. 2002-09-16 Erik Andersen <andersen@dillweed>
  551. * libc/pwd_grp/initgroups.c:
  552. Fix stupid typo noticed by John Mullin <john.mullin@homenetcomm.com>
  553. 2002-09-14 Erik Andersen <andersen@dillweed>
  554. * libc/misc/statfs/Makefile:
  555. Fix a thinko -- I used the wrong symbol to check for LFS support.
  556. -Erik
  557. 2002-09-13 miles <miles@dillweed>
  558. * libc/stdlib/malloc/heap_debug.c (__heap_check_failure): New function.
  559. (__heap_check): Add more checks. Use `__heap_check_failure'.
  560. 2002-09-12 tobiasa <tobiasa@dillweed>
  561. * ldso/ldso/ldso.c: Support LD_DEBUG=all
  562. 2002-09-12 Erik Andersen <andersen@dillweed>
  563. * extra/gcc-uClibc/gcc-uClibc.c: Some minor C++ support updates
  564. * ldso/ldso/sh/elfinterp.c, ldso/ldso/i386/elfinterp.c, ldso/ldso/arm/elfinterp.c:
  565. Add missing _dl_dprintf arguments, as noticed by Tero Lyytikäinen <tero@paravant.fi>
  566. 2002-09-11 sjhill <sjhill@dillweed>
  567. * libc/sysdeps/linux/mips/setjmp_aux.c:
  568. Forgot one more #ifdef related to MIPS soft floating point.
  569. 2002-09-10 Erik Andersen <andersen@dillweed>
  570. * libc/sysdeps/linux/arm/__longjmp.S, libc/sysdeps/linux/arm/setjmp.S:
  571. Don't run floating point opcodes when code is compiled -msoft-float
  572. -Erik
  573. 2002-09-10 sjhill <sjhill@dillweed>
  574. * libc/sysdeps/linux/mips/__longjmp.c, libc/sysdeps/linux/mips/setjmp_aux.c:
  575. Don't unconditionally save/restore FP registers, we might be doing soft
  576. floating point. Thanks to Jay Carlson.
  577. 2002-09-10 Erik Andersen <andersen@dillweed>
  578. * libc/pwd_grp/__getgrent.c, libc/pwd_grp/fgetgrent.c, libc/pwd_grp/getgrgid.c, libc/pwd_grp/getgrnam.c, libc/pwd_grp/grent.c, libc/pwd_grp/initgroups.c:
  579. Fix some locking problems noted by Manuel. __getgrent() was always
  580. called under lock, but the callers did not share the same locks...
  581. -Erik
  582. * libc/misc/syslog/syslog.c:
  583. Patch from Tiago Marques <tmarques@viaconnect.inf.br> -- fall back to
  584. using SOCK_STREAM if SOCK_DGRAM fails.
  585. -Erik
  586. * libc/pwd_grp/putpwent.c:
  587. As noted by Bill Huang <billhuang@redsonic.com>, the gid and uid
  588. were reversed in putpwent(). Oops.
  589. -Erik
  590. 2002-09-09 Manuel Novoa III <mjn3@dillweed>
  591. * libc/stdlib/Makefile: Remove malloc_simple from subdir list.
  592. * libm/w_cabs.c: Clean up a warning.
  593. 2002-09-09 sjhill <sjhill@dillweed>
  594. * libc/sysdeps/linux/common/getdirname.c, libc/misc/statfs/Makefile:
  595. Fixed compile bugs having to do with 64-bit filesystem operations that
  596. need to be disabled when 'DOLFS' is disabled.
  597. 2002-09-09 Erik Andersen <andersen@dillweed>
  598. * ldso/ldso/ldso.c: Fixup multi-line string
  599. -Erik
  600. 2002-09-09 miles <miles@dillweed>
  601. * libc/stdlib/malloc/realloc.c (realloc):
  602. Record the correct size in the malloc header in the case
  603. where we extended the existing allocation, and got back more than we
  604. asked for from the heap.
  605. 2002-09-06 Manuel Novoa III <mjn3@dillweed>
  606. * libc/stdio/scanf.c:
  607. Patch from Tero_Lyytikäinen <tero@paravant.fi> to fix bug in matchchar
  608. case.
  609. * libc/stdlib/valloc.c: Add #include <malloc.h> to silence warning.
  610. 2002-09-06 miles <miles@dillweed>
  611. * libc/stdlib/malloc/heap_debug.c: Initial checkin.
  612. * libc/stdlib/malloc/heap.h, libc/stdlib/malloc/malloc.c, libc/stdlib/malloc/malloc.h:
  613. Update debugging hooks.
  614. 2002-09-06 Erik Andersen <andersen@dillweed>
  615. * libm/fpmacros.c:
  616. Add in some weak aliases to allow C99 apps to compile w/o defining
  617. _ISOC99_SOURCE, per what glibc does.
  618. -Erik
  619. 2002-09-05 tobiasa <tobiasa@dillweed>
  620. * ldso/ldso/readelflib1.c:
  621. Fixed another address alignment where a pagesize of 4k were assumed.
  622. 2002-09-05 Erik Andersen <andersen@dillweed>
  623. * libc/stdlib/malloc-930716/malloc.c, libc/stdlib/malloc-930716/malloc.h, libc/stdlib/malloc-930716/memalign.c, libc/stdlib/malloc-930716/realloc.c, libc/stdlib/malloc-930716/Makefile:
  624. split-out memalign and realloc
  625. -Erik
  626. 2002-09-05 miles <miles@dillweed>
  627. * Makefile, extra/scripts/gen_bits_syscall_h.sh, libc/sysdeps/linux/alpha/Makefile, libc/sysdeps/linux/alpha/bits/syscalls.h, libc/sysdeps/linux/arm/Makefile, libc/sysdeps/linux/arm/bits/.cvsignore, libc/sysdeps/linux/arm/bits/syscalls.h, libc/sysdeps/linux/h8300/bits/.cvsignore, libc/sysdeps/linux/h8300/bits/syscalls.h, libc/sysdeps/linux/i386/Makefile, libc/sysdeps/linux/i386/bits/.cvsignore, libc/sysdeps/linux/i386/bits/syscalls.h, libc/sysdeps/linux/i960/Makefile, libc/sysdeps/linux/i960/bits/syscalls.h, libc/sysdeps/linux/m68k/Makefile, libc/sysdeps/linux/m68k/bits/.cvsignore, libc/sysdeps/linux/m68k/bits/syscalls.h, libc/sysdeps/linux/mips/Makefile, libc/sysdeps/linux/mips/bits/.cvsignore, libc/sysdeps/linux/mips/bits/syscalls.h, libc/sysdeps/linux/powerpc/Makefile, libc/sysdeps/linux/powerpc/README.bits, libc/sysdeps/linux/powerpc/bits/.cvsignore, libc/sysdeps/linux/powerpc/bits/syscalls.h, libc/sysdeps/linux/sh/Makefile, libc/sysdeps/linux/sh/bits/.cvsignore, libc/sysdeps/linux/sh/bits/syscalls.h, libc/sysdeps/linux/sparc/Makefile, libc/sysdeps/linux/sparc/bits/.cvsignore, libc/sysdeps/linux/sparc/bits/syscalls.h, libc/sysdeps/linux/v850/Makefile, libc/sysdeps/linux/v850/vfork.S, libc/sysdeps/linux/v850/bits/.cvsignore, libc/sysdeps/linux/v850/bits/syscalls.h:
  628. Change <bits/syscall.h> to <bits/sysnum.h>.
  629. 2002-09-04 sjhill <sjhill@dillweed>
  630. * libc/sysdeps/linux/mips/Makefile, libc/sysdeps/linux/mips/__uClibc_syscall.S, libc/sysdeps/linux/mips/syscall.S:
  631. 'syscall' now properly works for MIPS.
  632. 2002-09-04 Erik Andersen <andersen@dillweed>
  633. * libc/stdlib/Makefile, libc/stdlib/malloc-930716/Makefile, libc/stdlib/malloc-930716/malloc.c, libc/stdlib/valloc.c:
  634. Make sjhill happy, and revive memalign
  635. -Erik
  636. 2002-09-04 sjhill <sjhill@dillweed>
  637. * libc/sysdeps/linux/common/bits/ipc.h, libc/sysdeps/linux/common/bits/msq.h:
  638. Fixed 'struct ipc_perm' and 'struct msqid_ds' members to allow the Linux
  639. Test Project to compile as well as be consistent with the architecture
  640. specific files. Maybe eventually the architecture specific files could
  641. be removed all together.
  642. * libc/stdlib/Makefile, libc/stdlib/malloc-930716/Makefile, libc/stdlib/malloc-930716/valloc.c, libc/stdlib/valloc.c:
  643. Per discussions with Erik, 'valloc.c' should be built on top of whichever
  644. memory allocator you choose. Unfortunately, the 'malloc-930716' needs a
  645. fair amount of work before it is functional. For now, changes have been
  646. made to add the 'valloc' call and it works properly with the plain 'malloc'
  647. allocator.
  648. * libc/stdlib/malloc-930716/Makefile, libc/stdlib/malloc-930716/valloc.c:
  649. Added 'valloc' back in. Ok, Erik can smack me now.
  650. * libc/sysdeps/linux/common/syscalls.c:
  651. Add syscalls: modify_ldt _sysctl setresuid getresuid setresgid getresgid
  652. * libc/stdlib/Makefile, libc/stdlib/mkdtemp.c:
  653. Added function 'mkdtemp' for Linux Test Project.
  654. * libc/sysdeps/linux/common/Makefile, libc/sysdeps/linux/common/getdirname.c, include/unistd.h:
  655. Added function 'get_current_dir_name' for Linux Test Project. Tested and
  656. works identically to function in glibc.
  657. 2002-09-04 miles <miles@dillweed>
  658. * libc/stdlib/malloc/free.c: (free):
  659. Update debug statement.
  660. Update to use __heap_delete and __heap_is_empty.
  661. * libc/stdlib/malloc/heap.h (__heap_delete):
  662. Renamed from `__heap_unlink_free_area'.
  663. (__heap_free_area_alloc): Use __heap_delete.
  664. (__heap_is_empty): New macro.
  665. 2002-09-03 Erik Andersen <andersen@dillweed>
  666. * libc/misc/statfs/Makefile, libc/misc/statfs/fstatvfs64.c, libc/misc/statfs/statvfs64.c:
  667. Support fstatvfs64 and statvfs64
  668. -Erik
  669. * libc/misc/statfs/fstatvfs.c, libc/misc/statfs/statvfs.c:
  670. Oops. Turns out I broke statvfs() and fstatvfs() back in February,
  671. when I accidentally changed them unconditionally into the 64 bit
  672. versions... Oops.
  673. -Erik
  674. 2002-08-30 miles <miles@dillweed>
  675. * libc/sysdeps/linux/v850/bits/kernel_stat.h:
  676. Redo stat structures (kernel changed too).
  677. * libc/sysdeps/linux/v850/bits/kernel_types.h: Add __kernel_ino64_t.
  678. Make __kernel_loff_t unconditional.
  679. 2002-08-30 aaronl <aaronl@dillweed>
  680. * README: CFLAGS+=-D__FORCE_NOGLIBC, not CFLAGS+=__FORCE_NOGLIBC
  681. Change a than to then
  682. 2002-08-30 miles <miles@dillweed>
  683. * libc/stdlib/malloc/heap_free.c: Doc fix.
  684. * libc/stdlib/malloc/heap_free.c (__heap_free):
  685. Tighten up the inner loop, and make the code more readable.
  686. * libc/stdlib/malloc/free.c, libc/stdlib/malloc/malloc.c:
  687. Use `likely' & `unlikely' instead of the `__malloc_'-prefixed versions.
  688. * libc/stdlib/malloc/heap.h (likely, unlikely): New macros.
  689. * libc/stdlib/malloc/malloc.h (likely, unlikely): New macros.
  690. (__malloc_likely, __malloc_unlikely): Macros removed.
  691. 2002-08-28 Erik Andersen <andersen@dillweed>
  692. * libc/sysdeps/linux/v850/bits/syscalls.h, libc/sysdeps/linux/sparc/bits/syscalls.h, libc/sysdeps/linux/powerpc/bits/syscalls.h, libc/sysdeps/linux/m68k/bits/syscalls.h, libc/sysdeps/linux/h8300/bits/syscalls.h, libc/sysdeps/linux/i960/bits/syscalls.h, libc/sysdeps/linux/alpha/bits/syscalls.h:
  693. Fix a silly bug notices by Ronald Wahl <rwa@peppercon.com>
  694. 2002-08-28 davidm <davidm@dillweed>
  695. * libc/sysdeps/linux/common/Makefile:
  696. If the initfini.pl script changes, regenerate the crt[in].S files.
  697. 2002-08-28 Erik Andersen <andersen@dillweed>
  698. * libc/sysdeps/linux/common/syscalls.c:
  699. Fix broken getpriority syscall, per email from Marshall M. Midden
  700. -Erik
  701. * docs/uclibc.org/index.html: fix grammar
  702. 2002-08-27 Erik Andersen <andersen@dillweed>
  703. * Changelog.full: Final update