diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2009-07-20 16:49:45 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2009-07-20 16:49:45 -0700 |
commit | aea1f7964ae6cba5eb419a958956deb9016b3341 (patch) | |
tree | e326d376529ea0be73ab435317709b684bb3f7cf /arch | |
parent | 457f82bac659745f6d5052e4c493d92d62722c9c (diff) | |
parent | 04e448d9a386640a79a4aa71251aa1cdd314f662 (diff) | |
download | linux-aea1f7964ae6cba5eb419a958956deb9016b3341.tar.gz linux-aea1f7964ae6cba5eb419a958956deb9016b3341.tar.bz2 linux-aea1f7964ae6cba5eb419a958956deb9016b3341.zip |
Merge git://git.kernel.org/pub/scm/linux/kernel/git/sam/kbuild-fixes
* git://git.kernel.org/pub/scm/linux/kernel/git/sam/kbuild-fixes:
vmlinux.lds.h: restructure BSS linker script macros
kconfig: initialize the screen before using curses(3) functions
kconfig: variable argument lists needs `stdarg.h'
kbuild, deb-pkg: fix install scripts for posix sh
Diffstat (limited to 'arch')
-rw-r--r-- | arch/mn10300/kernel/vmlinux.lds.S | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/mn10300/kernel/vmlinux.lds.S b/arch/mn10300/kernel/vmlinux.lds.S index c96ba3da95ac..f4aa07934654 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 = . ; |