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 1e60c82855cd04abda514224676deff316bd25db (commit)
from 163280cbcf2d0b47e1118a5cd6f5c57d463328a3 (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 1e60c82855cd04abda514224676deff316bd25db
Author: Waldemar Brodkorb <wbx(a)openadk.org>
Date: Sun Jun 7 13:15:59 2015 -0500
just use 4k pages for microblaze, the config are missing and never committed into uClibc
-----------------------------------------------------------------------
Summary of changes:
libc/sysdeps/linux/microblaze/bits/uClibc_page.h | 18 +-----------------
1 file changed, 1 insertion(+), 17 deletions(-)
diff --git a/libc/sysdeps/linux/microblaze/bits/uClibc_page.h b/libc/sysdeps/linux/microblaze/bits/uClibc_page.h
index 9335d8e..580ca13 100644
--- a/libc/sysdeps/linux/microblaze/bits/uClibc_page.h
+++ b/libc/sysdeps/linux/microblaze/bits/uClibc_page.h
@@ -20,23 +20,7 @@
#ifndef _UCLIBC_PAGE_H
#define _UCLIBC_PAGE_H
-#include <generated/autoconf.h>
-
-#if defined(CONFIG_MICROBLAZE_32K_PAGES)
-#define PAGE_SHIFT 15
-#elif defined(CONFIG_MICROBLAZE_16K_PAGES)
-#define PAGE_SHIFT 14
-#elif defined(CONFIG_MICROBLAZE_8K_PAGES)
-#define PAGE_SHIFT 13
-#elif defined(CONFIG_MICROBLAZE_4K_PAGES)
-#define PAGE_SHIFT 12
-#else
-#if !defined(CONFIG_MMU)
-#warning Missing CONFIG_MICROBLAZE_nnK_PAGES, assuming 4K
-#endif
-#define PAGE_SHIFT 12
-#endif
-
+#define PAGE_SHIFT 12
#define PAGE_SIZE (1UL << PAGE_SHIFT)
#define PAGE_MASK (~(PAGE_SIZE-1))
hooks/post-receive
--
uClibc-ng - small C library for embedded systems
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 163280cbcf2d0b47e1118a5cd6f5c57d463328a3 (commit)
from 8a95cbad1b9d0f2fb36badf86833c8e3ebd141f8 (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 163280cbcf2d0b47e1118a5cd6f5c57d463328a3
Author: Waldemar Brodkorb <wbx(a)openadk.org>
Date: Sun Jun 7 02:32:35 2015 -0500
h8300 has no NPTL
-----------------------------------------------------------------------
Summary of changes:
extra/Configs/Config.in | 1 +
1 file changed, 1 insertion(+)
diff --git a/extra/Configs/Config.in b/extra/Configs/Config.in
index cfc5342..2f64b79 100644
--- a/extra/Configs/Config.in
+++ b/extra/Configs/Config.in
@@ -516,6 +516,7 @@ config UCLIBC_HAS_THREADS_NATIVE
!TARGET_bfin && \
!TARGET_c6x && \
!TARGET_cris && \
+ !TARGET_h8300 && \
!TARGET_hppa && \
!TARGET_ia64 && \
!TARGET_m68k && \
hooks/post-receive
--
uClibc-ng - small C library for embedded systems
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 8a95cbad1b9d0f2fb36badf86833c8e3ebd141f8 (commit)
from 858975765a62b4db0f0e28e2063c95d5190563a9 (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 8a95cbad1b9d0f2fb36badf86833c8e3ebd141f8
Author: Waldemar Brodkorb <wbx(a)openadk.org>
Date: Sun Jun 7 02:30:16 2015 -0500
disable not available CFLAGS for h8300
-----------------------------------------------------------------------
Summary of changes:
Rules.mak | 2 ++
1 file changed, 2 insertions(+)
diff --git a/Rules.mak b/Rules.mak
index 90cb48b..f0abd3b 100644
--- a/Rules.mak
+++ b/Rules.mak
@@ -302,12 +302,14 @@ ifneq ($(TARGET_ARCH),bfin)
ifneq ($(TARGET_ARCH),nios2)
ifneq ($(TARGET_ARCH),sh)
ifneq ($(TARGET_ARCH),c6x)
+ifneq ($(TARGET_ARCH),h8300)
CPU_CFLAGS-y += -msoft-float
endif
endif
endif
endif
endif
+endif
$(eval $(call check-gcc-var,-std=gnu99))
CPU_CFLAGS-y += $(CFLAG_-std=gnu99)
hooks/post-receive
--
uClibc-ng - small C library for embedded systems