Move buildroot to bsp directory.
This commit is contained in:
@@ -0,0 +1,35 @@
|
||||
[PATCH] Don't include config.h when building helpers using the native compiler
|
||||
|
||||
config.h contains settings for the cross compiler (most importantly
|
||||
32/64bit versions of functions), so don't include it when calling the
|
||||
native compiler to build the helpers.
|
||||
|
||||
Otherwise we get build errors like:
|
||||
|
||||
/usr/bin/gcc -include ../config.h -DBSD=1 -DSHELL -DIFS_BROKEN -g -O2 -Wall -o mkinit mkinit.c
|
||||
In file included from /usr/include/sys/stat.h:107,
|
||||
from /usr/include/fcntl.h:38,
|
||||
from mkinit.c:50:
|
||||
/usr/include/bits/stat.h:117: error: redefinition of ‘struct stat’
|
||||
In file included from /usr/include/fcntl.h:38,
|
||||
from mkinit.c:50:
|
||||
/usr/include/sys/stat.h:504: error: redefinition of ‘stat’
|
||||
/usr/include/sys/stat.h:455: note: previous definition of ‘stat’ was here
|
||||
|
||||
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
|
||||
---
|
||||
src/Makefile.in | 1 -
|
||||
1 file changed, 1 deletion(-)
|
||||
|
||||
Index: dash-0.5.5.1/src/Makefile.in
|
||||
===================================================================
|
||||
--- dash-0.5.5.1.orig/src/Makefile.in
|
||||
+++ dash-0.5.5.1/src/Makefile.in
|
||||
@@ -165,7 +165,6 @@ COMMON_CPPFLAGS = \
|
||||
AM_CFLAGS = $(COMMON_CFLAGS)
|
||||
AM_CPPFLAGS = $(COMMON_CPPFLAGS)
|
||||
AM_CFLAGS_FOR_BUILD = -g -O2 $(COMMON_CFLAGS)
|
||||
-AM_CPPFLAGS_FOR_BUILD = $(COMMON_CPPFLAGS)
|
||||
COMPILE_FOR_BUILD = \
|
||||
$(CC_FOR_BUILD) $(AM_CPPFLAGS_FOR_BUILD) $(CPPFLAGS_FOR_BUILD) \
|
||||
$(AM_CFLAGS_FOR_BUILD) $(CFLAGS_FOR_BUILD)
|
||||
8
bsp/buildroot/package/dash/Config.in
Normal file
8
bsp/buildroot/package/dash/Config.in
Normal file
@@ -0,0 +1,8 @@
|
||||
config BR2_PACKAGE_DASH
|
||||
bool "dash"
|
||||
depends on BR2_USE_MMU # fork()
|
||||
help
|
||||
The Debian/Linux port of the NetBSD version of
|
||||
ash (the Almquist SHell).
|
||||
|
||||
http://gondor.apana.org.au/~herbert/dash
|
||||
3
bsp/buildroot/package/dash/dash.hash
Normal file
3
bsp/buildroot/package/dash/dash.hash
Normal file
@@ -0,0 +1,3 @@
|
||||
# From http://ftp.debian.org/debian/pool/main/d/dash/dash_0.5.8-1.dsc
|
||||
sha256 c6db3a237747b02d20382a761397563d813b306c020ae28ce25a1c3915fac60f dash_0.5.8.orig.tar.gz
|
||||
sha256 d751769cc1ef8b825a177e782f1cd3e35bde7c268107fa4febf8d235e12c64d9 dash_0.5.8-1.diff.gz
|
||||
18
bsp/buildroot/package/dash/dash.mk
Normal file
18
bsp/buildroot/package/dash/dash.mk
Normal file
@@ -0,0 +1,18 @@
|
||||
################################################################################
|
||||
#
|
||||
# dash
|
||||
#
|
||||
################################################################################
|
||||
|
||||
DASH_VERSION = 0.5.8
|
||||
DASH_SOURCE = dash_$(DASH_VERSION).orig.tar.gz
|
||||
DASH_SITE = http://snapshot.debian.org/archive/debian/20141023T043132Z/pool/main/d/dash
|
||||
DASH_PATCH = dash_$(DASH_VERSION)-1.diff.gz
|
||||
DASH_LICENSE = BSD-3c, GPLv2+ (mksignames.c)
|
||||
DASH_LICENSE_FILES = COPYING
|
||||
|
||||
define DASH_INSTALL_TARGET_CMDS
|
||||
$(INSTALL) -m 0755 $(@D)/src/dash $(TARGET_DIR)/bin/dash
|
||||
endef
|
||||
|
||||
$(eval $(autotools-package))
|
||||
Reference in New Issue
Block a user