diff options
author | Richard Purdie <rpurdie@linux.intel.com> | 2010-08-27 15:14:24 +0100 |
---|---|---|
committer | Richard Purdie <rpurdie@linux.intel.com> | 2010-08-27 15:29:45 +0100 |
commit | 29d6678fd546377459ef75cf54abeef5b969b5cf (patch) | |
tree | 8edd65790e37a00d01c3f203f773fe4b5012db18 /meta/recipes-devtools/syslinux/files | |
parent | da49de6885ee1bc424e70bc02f21f6ab920efb55 (diff) | |
download | poky-29d6678fd546377459ef75cf54abeef5b969b5cf.tar.gz |
Major layout change to the packages directory
Having one monolithic packages directory makes it hard to find things
and is generally overwhelming. This commit splits it into several
logical sections roughly based on function, recipes.txt gives more
information about the classifications used.
The opportunity is also used to switch from "packages" to "recipes"
as used in OpenEmbedded as the term "packages" can be confusing to
people and has many different meanings.
Not all recipes have been classified yet, this is just a first pass
at separating things out. Some packages are moved to meta-extras as
they're no longer actively used or maintained.
Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
Diffstat (limited to 'meta/recipes-devtools/syslinux/files')
-rw-r--r-- | meta/recipes-devtools/syslinux/files/cross-build.patch | 64 |
1 files changed, 64 insertions, 0 deletions
diff --git a/meta/recipes-devtools/syslinux/files/cross-build.patch b/meta/recipes-devtools/syslinux/files/cross-build.patch new file mode 100644 index 0000000000..c90c7afbaf --- /dev/null +++ b/meta/recipes-devtools/syslinux/files/cross-build.patch | |||
@@ -0,0 +1,64 @@ | |||
1 | Use ?= for Makefile variables to use poky environment variables. | ||
2 | Original method to sed s/CC =/CC ?=/ is not applicable anymore | ||
3 | because of the Makefile changes. | ||
4 | |||
5 | against 3.86 | ||
6 | |||
7 | 06/28/2010 - qhe | ||
8 | |||
9 | also AUXDIR stays in $(LIBDIR)/syslinux rather than $(DATADIR)/syslinux | ||
10 | |||
11 | 07/08/2010 - qhe | ||
12 | |||
13 | --- | ||
14 | diff --git a/MCONFIG b/MCONFIG | ||
15 | index e9c16d3..4d49f33 100644 | ||
16 | --- a/MCONFIG | ||
17 | +++ b/MCONFIG | ||
18 | @@ -18,13 +18,13 @@ | ||
19 | MAKEFLAGS += -r | ||
20 | MAKE += -r | ||
21 | |||
22 | -BINDIR = /usr/bin | ||
23 | -SBINDIR = /sbin | ||
24 | -LIBDIR = /usr/lib | ||
25 | -DATADIR = /usr/share | ||
26 | -AUXDIR = $(DATADIR)/syslinux | ||
27 | -MANDIR = /usr/man | ||
28 | -INCDIR = /usr/include | ||
29 | +BINDIR ?= /usr/bin | ||
30 | +SBINDIR ?= /sbin | ||
31 | +LIBDIR ?= /usr/lib | ||
32 | +DATADIR ?= /usr/share | ||
33 | +AUXDIR = $(LIBDIR)/syslinux | ||
34 | +MANDIR ?= /usr/man | ||
35 | +INCDIR ?= /usr/include | ||
36 | TFTPBOOT = /tftpboot | ||
37 | COM32DIR = $(AUXDIR)/com32 | ||
38 | |||
39 | @@ -38,18 +38,18 @@ PERL = perl | ||
40 | |||
41 | CHMOD = chmod | ||
42 | |||
43 | -CC = gcc | ||
44 | +CC ?= gcc | ||
45 | gcc_ok = $(shell tmpf=gcc_ok.$$$$.tmp; \ | ||
46 | if $(CC) $(1) -c $(topdir)/dummy.c -o $$tmpf 2>/dev/null ; \ | ||
47 | then echo '$(1)'; else echo '$(2)'; fi; \ | ||
48 | rm -f $$tmpf) | ||
49 | |||
50 | -LD = ld | ||
51 | -OBJDUMP = objdump | ||
52 | -OBJCOPY = objcopy | ||
53 | -AR = ar | ||
54 | -NM = nm | ||
55 | -RANLIB = ranlib | ||
56 | +LD ?= ld | ||
57 | +OBJDUMP ?= objdump | ||
58 | +OBJCOPY ?= objcopy | ||
59 | +AR ?= ar | ||
60 | +NM ?= nm | ||
61 | +RANLIB ?= ranlib | ||
62 | GZIPPROG = gzip | ||
63 | PNGTOPNM = pngtopnm | ||
64 | MCOPY = mcopy | ||