This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "uClibc-ng - small C library for embedded systems".
The branch, master has been updated
via 469594cd898d0386f226f6703ae34d0332a2cfe6 (commit)
from b38f6240891f78af59e2c5d25361ab67a73e000f (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit 469594cd898d0386f226f6703ae34d0332a2cfe6
Author: Waldemar Brodkorb <wbx(a)openadk.org>
Date: Mon Sep 8 09:11:43 2014 +0200
bump version to 1.0.0
prepare for stable release.
-----------------------------------------------------------------------
Summary of changes:
Rules.mak | 6 +++---
test/nptl/tst-unload.c | 6 +++---
2 files changed, 6 insertions(+), 6 deletions(-)
diff --git a/Rules.mak b/Rules.mak
index cb65700..71eaae1 100644
--- a/Rules.mak
+++ b/Rules.mak
@@ -127,9 +127,9 @@ export RUNTIME_PREFIX DEVEL_PREFIX KERNEL_HEADERS MULTILIB_DIR
# Now config hard core
-MAJOR_VERSION := 0
-MINOR_VERSION := 9
-SUBLEVEL := 34
+MAJOR_VERSION := 1
+MINOR_VERSION := 0
+SUBLEVEL := 0
EXTRAVERSION :=-git
VERSION := $(MAJOR_VERSION).$(MINOR_VERSION).$(SUBLEVEL)
ABI_VERSION := $(MAJOR_VERSION)
diff --git a/test/nptl/tst-unload.c b/test/nptl/tst-unload.c
index c7de2cb..74a714e 100644
--- a/test/nptl/tst-unload.c
+++ b/test/nptl/tst-unload.c
@@ -23,17 +23,17 @@
static int
do_test (void)
{
- void *p = dlopen ("libpthread.so.0", RTLD_LAZY);
+ void *p = dlopen ("libpthread.so.1", RTLD_LAZY);
if (p == NULL)
{
- puts ("failed to load libpthread.so.0");
+ puts ("failed to load libpthread.so.1");
return 1;
}
if (dlclose (p) != 0)
{
- puts ("dlclose (libpthread.so.0) failed");
+ puts ("dlclose (libpthread.so.1) failed");
return 1;
}
hooks/post-receive
--
uClibc-ng - small C library for embedded systems
Hi,
After trying to fix a bug in uClibc-ng, which always let tst-kill4
segfault on my system, I rethought my spin-off. I made a lot of
mistakes in my spin-off. First I didn't include the git history
from uClibc, so I cannot use git bisect, git log and git blame to
find more information about any changes made from uClibc to
uClibc-ng. Second I started to run embedded-test.sh after adding
and removing functionality in uClibc-ng. Git master of uClibc is
worse than I thought of. I think nobody regulary runs any compile
and runtime testing on the supported architectures.
Furthermore I've get a little bit sentimental after getting my hands
on a Cisco 1000 series router, which after nearly 15 years still
boots up fine. The soul of embedded systems exist, so I shouldn't
remove support for embedded vintage hardware in uClibc-ng ;-)
Instead I will try to fix open issues and try to run uClibc-ng on my
old embedded systems including Foxboard LX (cris) and NGW100
(avr32).
I will soon have more space for my embedded system collection in a
new hobby room.
So my plan for uClibc-ng is:
1. Restart the spin-off from uClibc master and use git to manage it
in a better way (done with a lot of help by Thorsten Glaser)
2. Fix open issues in uClibc and report them to the uClibc project
(started with a sparc pipe() fix recently)
3. Run the uClibc test suite and pubish the results for all architectures
I either have an emulator or hardware
4. Deactivate some architectures, which can not be tested for 1.0
5. Start to add bugfixes from the different projects (OpenWrt, buildroot, openembedded, ...)
6. Add following features: $ORIGIN support, libuargp and Xtensa NPTL
7. make a release
have fun
Waldemar