mirror of
https://git.yoctoproject.org/poky
synced 2026-02-09 18:23:02 +01:00
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>
24 lines
951 B
Diff
24 lines
951 B
Diff
# Building a native, statically-linked insmod can result in ld failing because
|
|
# it can't find a static libc. A native, static insmod is unnecessary anyway,
|
|
# so this patch just removes it.
|
|
#
|
|
# - jdike@linux.intel.com
|
|
#
|
|
# Change to a simpler method by just disabling static link flag, since even
|
|
# removing those lines don't prevent insmod.static from compile
|
|
#
|
|
# by Kevin Tian <kevin.tian@intel.com>, 2010-07-21
|
|
|
|
Index: module-init-tools-3.2.2/Makefile.am
|
|
===================================================================
|
|
--- module-init-tools-3.2.2.orig/Makefile.am 2010-05-26 15:43:16.000000000 -0400
|
|
+++ module-init-tools-3.2.2/Makefile.am 2010-05-26 16:04:06.232990785 -0400
|
|
@@ -10,7 +10,6 @@
|
|
modindex_SOURCES = modindex.c zlibsupport.c zlibsupport.h testing.h
|
|
|
|
insmod_static_SOURCES = insmod.c
|
|
-insmod_static_LDFLAGS = -static
|
|
# We don't want the $(zlib_flags) here: that makes a dynamic executable
|
|
insmod_static_LDADD = libmodtools.a
|
|
|