Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
linux
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
linux
Commits
6e1922bb
Commit
6e1922bb
authored
Jul 20, 2009
by
Paul Mundt
Browse files
Options
Browse Files
Download
Plain Diff
Merge
git://git.kernel.org/pub/scm/linux/kernel/git/sam/kbuild-fixes
into sh/kbuild-fixes
parents
c358fc46
04e448d9
Changes
5
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
15 additions
and
12 deletions
+15
-12
arch/mn10300/kernel/vmlinux.lds.S
arch/mn10300/kernel/vmlinux.lds.S
+1
-1
include/asm-generic/vmlinux.lds.h
include/asm-generic/vmlinux.lds.h
+9
-10
scripts/kconfig/lxdialog/util.c
scripts/kconfig/lxdialog/util.c
+2
-0
scripts/kconfig/mconf.c
scripts/kconfig/mconf.c
+2
-0
scripts/package/builddeb
scripts/package/builddeb
+1
-1
No files found.
arch/mn10300/kernel/vmlinux.lds.S
View file @
6e1922bb
...
...
@@ -107,7 +107,7 @@ SECTIONS
__init_end
=
.
;
/
*
freed
after
init
ends
here
*/
BSS
(
4)
BSS
_SECTION
(0,
PAGE_SIZE
,
4
)
_end
=
.
;
...
...
include/asm-generic/vmlinux.lds.h
View file @
6e1922bb
...
...
@@ -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) = .;
scripts/kconfig/lxdialog/util.c
View file @
6e1922bb
...
...
@@ -19,6 +19,8 @@
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/
#include <stdarg.h>
#include "dialog.h"
struct
dialog_info
dlg
;
...
...
scripts/kconfig/mconf.c
View file @
6e1922bb
...
...
@@ -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
"
));
...
...
scripts/package/builddeb
View file @
6e1922bb
...
...
@@ -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
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment