* [GIT] kbuild fixes
@ 2010-06-11 13:59 Michal Marek
0 siblings, 0 replies; 4+ messages in thread
From: Michal Marek @ 2010-06-11 13:59 UTC (permalink / raw)
To: Linus Torvalds; +Cc: mmarek, linux-kbuild, linux-kernel
Hi Linus,
please pull these two commits that fix the way modules.builtin is
generated.
Thanks,
Michal
The following changes since commit 63a07cb64ccc3ceae619d3298545d602ab5ecd38:
Merge git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-2.6 (2010-06-09 12:44:19 -0700)
are available in the git repository at:
git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild-2.6.git rc-fixes
Michal Marek (2):
kbuild: Generate modules.builtin in make modules
kbuild: Create output directory in Makefile.modbuiltin
Makefile | 4 ++--
scripts/Makefile.modbuiltin | 5 +++++
2 files changed, 7 insertions(+), 2 deletions(-)
^ permalink raw reply [flat|nested] 4+ messages in thread* [GIT] kbuild fixes
@ 2012-10-07 15:53 Michal Marek
0 siblings, 0 replies; 4+ messages in thread
From: Michal Marek @ 2012-10-07 15:53 UTC (permalink / raw)
To: Linus Torvalds; +Cc: jdelvare, mmarek, linux-kbuild, linux-kernel
Hi Linus,
there are two fixes I intended to send after v3.6-rc7, but failed to do
so. So please pull them for v3.7-rc1 and they will be picked up by
stable. The first one fixes gcc -x <language> syntax in various
build-time tests, which icecream and possible other gcc wrappers did not
understand (and yes, icecream is going to be fixed as well). The second
one fixes make tar-pkg so that unpacking the tarball does not replace
the /lib -> /usr/lib symlink on recent Fedora releases.
Thanks,
Michal
The following changes since commit 979570e02981d4a8fc20b3cc8fd651856c98ee9d:
Linux 3.6-rc7 (2012-09-23 18:10:57 -0700)
are available in the git repository at:
git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git rc-fixes
Jean Delvare (1):
kbuild: Fix gcc -x syntax
Michal Marek (1):
kbuild: Do not package /boot and /lib in make tar-pkg
arch/mips/Makefile | 2 +-
arch/mips/kernel/Makefile | 2 +-
arch/x86/Makefile | 4 ++--
scripts/Kbuild.include | 12 ++++++------
scripts/Makefile.fwinst | 4 ++--
scripts/gcc-version.sh | 6 +++---
scripts/gcc-x86_32-has-stack-protector.sh | 2 +-
scripts/gcc-x86_64-has-stack-protector.sh | 2 +-
scripts/kconfig/check.sh | 2 +-
scripts/kconfig/lxdialog/check-lxdialog.sh | 2 +-
scripts/package/buildtar | 2 +-
tools/perf/Makefile | 2 +-
tools/power/cpupower/Makefile | 2 +-
13 files changed, 22 insertions(+), 22 deletions(-)
^ permalink raw reply [flat|nested] 4+ messages in thread* [GIT] kbuild fixes
@ 2009-07-20 20:35 Sam Ravnborg
0 siblings, 0 replies; 4+ messages in thread
From: Sam Ravnborg @ 2009-07-20 20:35 UTC (permalink / raw)
To: Linus Torvalds
Cc: linux-kbuild, lkml, Tim Abbott, Arnaud Lacombe, maximilian attems
Hi Linus.
Four kbuild fixlets:
1) Fix to newly introduced vmlinux macros.
There is one in-tree user which is fixed up.
2) Two fixlets to make menuconfig more cygwin friendly
3) install scrip fix for deb-pkg
This has been in -next at least for one iteration with no comments.
Combined diff below.
Please pull - thanks!
Sam
The following changes since commit 4b0a84043e0c14088958fddb62f416d050368011:
Linus Torvalds (1):
Merge branch 'sched-fixes-for-linus' of git://git.kernel.org/.../peterz/linux-2.6-sched
are available in the git repository at:
git://git.kernel.org/pub/scm/linux/kernel/git/sam/kbuild-fixes.git master
Arnaud Lacombe (2):
kconfig: variable argument lists needs `stdarg.h'
kconfig: initialize the screen before using curses(3) functions
Tim Abbott (1):
vmlinux.lds.h: restructure BSS linker script macros
maximilian attems (1):
kbuild, deb-pkg: fix install scripts for posix sh
arch/mn10300/kernel/vmlinux.lds.S | 2 +-
include/asm-generic/vmlinux.lds.h | 19 +++++++++----------
scripts/kconfig/lxdialog/util.c | 2 ++
scripts/kconfig/mconf.c | 2 ++
scripts/package/builddeb | 2 +-
5 files changed, 15 insertions(+), 12 deletions(-)
diff --git a/arch/mn10300/kernel/vmlinux.lds.S b/arch/mn10300/kernel/vmlinux.lds.S
index c96ba3d..f4aa079 100644
--- a/arch/mn10300/kernel/vmlinux.lds.S
+++ b/arch/mn10300/kernel/vmlinux.lds.S
@@ -107,7 +107,7 @@ SECTIONS
__init_end = .;
/* freed after init ends here */
- BSS(4)
+ BSS_SECTION(0, PAGE_SIZE, 4)
_end = . ;
diff --git a/include/asm-generic/vmlinux.lds.h b/include/asm-generic/vmlinux.lds.h
index a553f10..6ad76bf 100644
--- a/include/asm-generic/vmlinux.lds.h
+++ b/include/asm-generic/vmlinux.lds.h
@@ -30,9 +30,7 @@
* EXCEPTION_TABLE(...)
* NOTES
*
- * __bss_start = .;
- * BSS_SECTION(0, 0)
- * __bss_stop = .;
+ * BSS_SECTION(0, 0, 0)
* _end = .;
*
* /DISCARD/ : {
@@ -489,7 +487,8 @@
* bss (Block Started by Symbol) - uninitialized data
* zeroed during startup
*/
-#define SBSS \
+#define SBSS(sbss_align) \
+ . = ALIGN(sbss_align); \
.sbss : AT(ADDR(.sbss) - LOAD_OFFSET) { \
*(.sbss) \
*(.scommon) \
@@ -498,12 +497,10 @@
#define BSS(bss_align) \
. = ALIGN(bss_align); \
.bss : AT(ADDR(.bss) - LOAD_OFFSET) { \
- VMLINUX_SYMBOL(__bss_start) = .; \
*(.bss.page_aligned) \
*(.dynbss) \
*(.bss) \
*(COMMON) \
- VMLINUX_SYMBOL(__bss_stop) = .; \
}
/*
@@ -735,8 +732,10 @@
INIT_RAM_FS \
}
-#define BSS_SECTION(sbss_align, bss_align) \
- SBSS \
+#define BSS_SECTION(sbss_align, bss_align, stop_align) \
+ . = ALIGN(sbss_align); \
+ VMLINUX_SYMBOL(__bss_start) = .; \
+ SBSS(sbss_align) \
BSS(bss_align) \
- . = ALIGN(4);
-
+ . = ALIGN(stop_align); \
+ VMLINUX_SYMBOL(__bss_stop) = .;
diff --git a/scripts/kconfig/lxdialog/util.c b/scripts/kconfig/lxdialog/util.c
index 86d95cc..f2375ad 100644
--- a/scripts/kconfig/lxdialog/util.c
+++ b/scripts/kconfig/lxdialog/util.c
@@ -19,6 +19,8 @@
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/
+#include <stdarg.h>
+
#include "dialog.h"
struct dialog_info dlg;
diff --git a/scripts/kconfig/mconf.c b/scripts/kconfig/mconf.c
index 3bcacb4..25b60bc 100644
--- a/scripts/kconfig/mconf.c
+++ b/scripts/kconfig/mconf.c
@@ -888,6 +888,8 @@ int main(int ac, char **av)
single_menu_mode = 1;
}
+ initscr();
+
getyx(stdscr, saved_y, saved_x);
if (init_dialog(NULL)) {
fprintf(stderr, N_("Your display is too small to run Menuconfig!\n"));
diff --git a/scripts/package/builddeb b/scripts/package/builddeb
index b19f1f4..8b357b0 100644
--- a/scripts/package/builddeb
+++ b/scripts/package/builddeb
@@ -89,7 +89,7 @@ for script in postinst postrm preinst prerm ; do
set -e
# Pass maintainer script parameters to hook scripts
-export DEB_MAINT_PARAMS="\$@"
+export DEB_MAINT_PARAMS="\$*"
test -d $debhookdir/$script.d && run-parts --arg="$version" $debhookdir/$script.d
exit 0
^ permalink raw reply related [flat|nested] 4+ messages in thread* [GIT] kbuild fixes
@ 2009-05-05 19:04 Sam Ravnborg
0 siblings, 0 replies; 4+ messages in thread
From: Sam Ravnborg @ 2009-05-05 19:04 UTC (permalink / raw)
To: Linus Torvalds
Cc: linux-kbuild, LKML, Manuel Lauss, Jean Delvare, Anders Kaseorg,
Sean MacLennan
Hi Linus.
This fixes an annoying warning "unexpected non-allocatable section",
that shows up in certain combinations of targets/gccs.
The tree commit fixes three different sources of the warnings.
This has now been in -next for a day or two with no additional comlains.
Please pull.
Sam
The following changes since commit b4348f32dae3cb6eb4bc21c7ed8f76c0b11e9d6a:
Linus Torvalds (1):
Merge branch 'for-linus' of git://oss.sgi.com/xfs/xfs
are available in the git repository at:
git://git.kernel.org/pub/scm/linux/kernel/git/sam/kbuild-fixes.git master
Anders Kaseorg (1):
kbuild, modpost: fix unexpected non-allocatable section when cross compiling
Sam Ravnborg (2):
kbuild, modpost: fix "unexpected non-allocatable" warning with SUSE gcc
kbuild, modpost: fix unexpected non-allocatable warning with mips
scripts/mod/modpost.c | 47 ++++++++++++++++++++++++++++++++++-------------
1 files changed, 34 insertions(+), 13 deletions(-)
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2012-10-07 15:53 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-06-11 13:59 [GIT] kbuild fixes Michal Marek
-- strict thread matches above, loose matches on Subject: below --
2012-10-07 15:53 Michal Marek
2009-07-20 20:35 Sam Ravnborg
2009-05-05 19:04 Sam Ravnborg
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox