Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
From: Yann E. MORIN <yann.morin.1998@free.fr>
To: buildroot@busybox.net
Subject: [Buildroot] [PATCH v4] rpi-userland: bump revision and add patch to fix compile with musl
Date: Sun, 19 Oct 2014 12:32:07 +0200	[thread overview]
Message-ID: <20141019103207.GR4072@free.fr> (raw)
In-Reply-To: <1413655117-28464-1-git-send-email-maarten@treewalker.org>

Maarten, All,

On 2014-10-18 19:58 +0200, Maarten ter Huurne spake thusly:
> Signed-off-by: Maarten ter Huurne <maarten@treewalker.org>

I would have liked that the explanation from the patch be repeated in
the commit log, something like:

    We can not bump to the latest cset, because it breaks weston. So we
    add a patch to backport upstream fixes for musl:
        http://lists.busybox.net/pipermail/buildroot/2014-October/109309.html
        https://github.com/raspberrypi/userland/pull/201

Otherwise:

Acked-by: "Yann E. MORIN" <yann.morin.1998@free.fr>

Regards,
Yann E. MORIN.

> ---
>  .../rpi-userland-003-fix-musl-compile.patch        | 113 +++++++++++++++++++++
>  package/rpi-userland/rpi-userland.mk               |   2 +-
>  2 files changed, 114 insertions(+), 1 deletion(-)
>  create mode 100644 package/rpi-userland/rpi-userland-003-fix-musl-compile.patch
> 
> diff --git a/package/rpi-userland/rpi-userland-003-fix-musl-compile.patch b/package/rpi-userland/rpi-userland-003-fix-musl-compile.patch
> new file mode 100644
> index 0000000..f960482
> --- /dev/null
> +++ b/package/rpi-userland/rpi-userland-003-fix-musl-compile.patch
> @@ -0,0 +1,113 @@
> +From 198d93fab0659f7a548329d742de8b3e27cfd977 Mon Sep 17 00:00:00 2001
> +From: Maarten ter Huurne <maarten@treewalker.org>
> +Date: Fri, 12 Sep 2014 18:28:51 +0200
> +Subject: [PATCH] Combined musl compile fixes
> +
> +The individual patches and their descriptions can be found here:
> +https://github.com/raspberrypi/userland/pull/201
> +
> +Upstream status: accepted (4333d6d)
> +However, bumping to that revision is currently not an option since that
> +also pulls in 66338d3 which breaks Weston:
> +http://lists.busybox.net/pipermail/buildroot/2014-October/109309.html
> +
> +Signed-off-by: Maarten ter Huurne <maarten@treewalker.org>
> +---
> + containers/CMakeLists.txt                                  | 2 +-
> + host_applications/linux/apps/hello_pi/CMakeLists.txt       | 2 +-
> + host_applications/linux/apps/hello_pi/libs/vgfont/Makefile | 1 -
> + interface/vcos/pthreads/vcos_platform.h                    | 3 ---
> + interface/vcos/pthreads/vcos_pthreads.c                    | 2 +-
> + interface/vmcs_host/linux/vcfilesys.c                      | 4 ++--
> + 6 files changed, 5 insertions(+), 9 deletions(-)
> +
> +diff --git a/containers/CMakeLists.txt b/containers/CMakeLists.txt
> +index 721f74f..a29a885 100644
> +--- a/containers/CMakeLists.txt
> ++++ b/containers/CMakeLists.txt
> +@@ -13,7 +13,7 @@ add_definitions(-DDL_PATH_PREFIX="${VMCS_PLUGIN_DIR}/")
> + 
> + SET( GCC_COMPILER_FLAGS -Wall -g -O2 -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wcast-qual -Wwrite-strings -Wundef )
> + SET( GCC_COMPILER_FLAGS ${GCC_COMPILER_FLAGS} -Wextra )#-Wno-missing-field-initializers )
> +-SET( GCC_COMPILER_FLAGS ${GCC_COMPILER_FLAGS} -D__STDC_VERSION__=199901L )
> ++SET( GCC_COMPILER_FLAGS ${GCC_COMPILER_FLAGS} -std=c99 -D_POSIX_C_SOURCE=199309L )
> + SET( GCC_COMPILER_FLAGS ${GCC_COMPILER_FLAGS} -Wno-missing-field-initializers )
> + SET( GCC_COMPILER_FLAGS ${GCC_COMPILER_FLAGS} -Wno-unused-value )
> + 
> +diff --git a/host_applications/linux/apps/hello_pi/CMakeLists.txt b/host_applications/linux/apps/hello_pi/CMakeLists.txt
> +index ab4dae3..f2c6aef 100644
> +--- a/host_applications/linux/apps/hello_pi/CMakeLists.txt
> ++++ b/host_applications/linux/apps/hello_pi/CMakeLists.txt
> +@@ -24,7 +24,7 @@ add_subdirectory(hello_teapot)
> + 
> + if(BUILD_FONT)
> + set(VGFONT_SRCS libs/vgfont/font.c libs/vgfont/vgft.c libs/vgfont/graphics.c)
> +-set_source_files_properties(${VGFONT_SRCS} PROPERTIES COMPILE_DEFINITIONS "_HAVE_TIMER_T")
> ++set_source_files_properties(${VGFONT_SRCS} PROPERTIES COMPILE_DEFINITIONS)
> + add_library(vgfont ${VGFONT_SRCS})
> + 
> + add_subdirectory(hello_font)
> +diff --git a/host_applications/linux/apps/hello_pi/libs/vgfont/Makefile b/host_applications/linux/apps/hello_pi/libs/vgfont/Makefile
> +index d04fb08..1e2a22b 100755
> +--- a/host_applications/linux/apps/hello_pi/libs/vgfont/Makefile
> ++++ b/host_applications/linux/apps/hello_pi/libs/vgfont/Makefile
> +@@ -2,7 +2,6 @@ OBJS=font.o vgft.o graphics.o
> + LIB=libvgfont.a
> + 
> + INCLUDES+=-I$(SDKSTAGE)/usr/include/freetype2 -I$(SDKSTAGE)/usr/include -I$(SDKSTAGE)/usr/include/arm-linux-gnueabi
> +-CFLAGS+=-D_HAVE_TIMER_T
> + 
> + include ../../Makefile.include
> + 
> +diff --git a/interface/vcos/pthreads/vcos_platform.h b/interface/vcos/pthreads/vcos_platform.h
> +index 468098b..2095e25 100755
> +--- a/interface/vcos/pthreads/vcos_platform.h
> ++++ b/interface/vcos/pthreads/vcos_platform.h
> +@@ -120,9 +120,6 @@ typedef struct
> + 
> + #define VCOS_ONCE_INIT        PTHREAD_ONCE_INIT
> + 
> +-#if defined(__arm__) && !defined(_HAVE_TIMER_T) && !defined(ANDROID)
> +-typedef __timer_t timer_t;
> +-#endif
> + typedef struct VCOS_TIMER_T
> + {
> +    pthread_t thread;                      /**< id of the timer thread */
> +diff --git a/interface/vcos/pthreads/vcos_pthreads.c b/interface/vcos/pthreads/vcos_pthreads.c
> +index 668f647..fdc8bc4 100644
> +--- a/interface/vcos/pthreads/vcos_pthreads.c
> ++++ b/interface/vcos/pthreads/vcos_pthreads.c
> +@@ -33,7 +33,7 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
> + #include <stdlib.h>
> + #include <stdio.h>
> + #include <sys/time.h>
> +-#include <sys/param.h>
> ++#include <linux/param.h>
> + 
> + /* Cygwin doesn't always have prctl.h and it doesn't have PR_SET_NAME */
> + #if defined( __linux__ )
> +diff --git a/interface/vmcs_host/linux/vcfilesys.c b/interface/vmcs_host/linux/vcfilesys.c
> +index ab65e3e..53c7486 100644
> +--- a/interface/vmcs_host/linux/vcfilesys.c
> ++++ b/interface/vmcs_host/linux/vcfilesys.c
> +@@ -49,7 +49,7 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
> + #include <ctype.h>
> + #include <limits.h>
> + 
> +-#if !defined(ANDROID) && !defined( __USE_FILE_OFFSET64 )
> ++#if defined(__GLIBC__) && !defined( __USE_FILE_OFFSET64 )
> + #error   "__USE_FILE_OFFSET64 isn't defined"
> + #endif
> + 
> +@@ -916,7 +916,7 @@ int vc_hostfs_set_attr(const char *path, fattributes_t attr)
> + 
> +    if (pathbuf)
> +    {
> +-      __mode_t mode = 0;
> ++      mode_t mode = 0;
> +       struct stat sb;
> + 
> +       backslash_to_slash(pathbuf);
> +-- 
> +1.8.4.5
> +
> diff --git a/package/rpi-userland/rpi-userland.mk b/package/rpi-userland/rpi-userland.mk
> index c738b62..feac277 100644
> --- a/package/rpi-userland/rpi-userland.mk
> +++ b/package/rpi-userland/rpi-userland.mk
> @@ -4,7 +4,7 @@
>  #
>  ################################################################################
>  
> -RPI_USERLAND_VERSION = ffcc4bd7c4875b71376c4240116e251652c9bec0
> +RPI_USERLAND_VERSION = ba753c1a7f68d7a2e00edaf03364eef001e233ef
>  RPI_USERLAND_SITE = $(call github,raspberrypi,userland,$(RPI_USERLAND_VERSION))
>  RPI_USERLAND_LICENSE = BSD-3c
>  RPI_USERLAND_LICENSE_FILES = LICENCE
> -- 
> 1.8.4.5
> 

-- 
.-----------------.--------------------.------------------.--------------------.
|  Yann E. MORIN  | Real-Time Embedded | /"\ ASCII RIBBON | Erics' conspiracy: |
| +33 662 376 056 | Software  Designer | \ / CAMPAIGN     |  ___               |
| +33 223 225 172 `------------.-------:  X  AGAINST      |  \e/  There is no  |
| http://ymorin.is-a-geek.org/ | _/*\_ | / \ HTML MAIL    |   v   conspiracy.  |
'------------------------------^-------^------------------^--------------------'

  reply	other threads:[~2014-10-19 10:32 UTC|newest]

Thread overview: 17+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-09-12  1:45 [Buildroot] [PATCH] rpi-userland: Add patches to fix compilation with musl libc Maarten ter Huurne
2014-09-12  7:32 ` Thomas Petazzoni
2014-09-12 14:56   ` Maarten ter Huurne
2014-09-12 15:11     ` Thomas Petazzoni
2014-09-12 17:01       ` Maarten ter Huurne
2014-10-17 15:57         ` [Buildroot] [PATCH v3] rpi-userland: bump revision for musl compile fixes Maarten ter Huurne
2014-10-17 20:31           ` Yann E. MORIN
2014-10-18 11:05           ` Yann E. MORIN
2014-10-18 11:34             ` Yann E. MORIN
2014-10-18 12:15               ` Maarten ter Huurne
2014-10-18 13:02                 ` Yann E. MORIN
2014-10-18 16:46                   ` Maarten ter Huurne
2014-10-18 17:16                     ` Yann E. MORIN
2014-10-18 17:22                       ` Maarten ter Huurne
2014-10-18 17:58                     ` [Buildroot] [PATCH v4] rpi-userland: bump revision and add patch to fix compile with musl Maarten ter Huurne
2014-10-19 10:32                       ` Yann E. MORIN [this message]
2014-10-19 14:37                       ` Thomas Petazzoni

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20141019103207.GR4072@free.fr \
    --to=yann.morin.1998@free.fr \
    --cc=buildroot@busybox.net \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox