diff options
author | Sam Ravnborg <sam@mars.ravnborg.org> | 2006-06-24 17:46:54 -0400 |
---|---|---|
committer | Sam Ravnborg <sam@mars.ravnborg.org> | 2006-06-24 17:46:54 -0400 |
commit | 6803dc0ea85ad21b2cb3ec88decff5e27d7a390b (patch) | |
tree | e4041b76ed21bd835018be3e8bbc5e2c1d76ce74 /scripts | |
parent | 15fde6751886fd972a64ed65ba49db309919c504 (diff) |
kbuild: replace abort() with exit(1)
We have had no use of the coredump file for a long time.
So just exit(1) and avoid coredumping.
Signed-off-by: Sam Ravnborg <sam@ravnborg.org>
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/genksyms/lex.c_shipped | 2 | ||||
-rw-r--r-- | scripts/genksyms/lex.l | 2 | ||||
-rw-r--r-- | scripts/mod/mk_elfconfig.c | 6 | ||||
-rw-r--r-- | scripts/mod/modpost.c | 2 |
4 files changed, 6 insertions, 6 deletions
diff --git a/scripts/genksyms/lex.c_shipped b/scripts/genksyms/lex.c_shipped index 1218053ee960..37ba98241b96 100644 --- a/scripts/genksyms/lex.c_shipped +++ b/scripts/genksyms/lex.c_shipped | |||
@@ -2023,7 +2023,7 @@ repeat: | |||
2023 | break; | 2023 | break; |
2024 | 2024 | ||
2025 | default: | 2025 | default: |
2026 | abort(); | 2026 | exit(1); |
2027 | } | 2027 | } |
2028 | fini: | 2028 | fini: |
2029 | 2029 | ||
diff --git a/scripts/genksyms/lex.l b/scripts/genksyms/lex.l index fe0dfeedf0ff..5e544a06678b 100644 --- a/scripts/genksyms/lex.l +++ b/scripts/genksyms/lex.l | |||
@@ -392,7 +392,7 @@ repeat: | |||
392 | break; | 392 | break; |
393 | 393 | ||
394 | default: | 394 | default: |
395 | abort(); | 395 | exit(1); |
396 | } | 396 | } |
397 | fini: | 397 | fini: |
398 | 398 | ||
diff --git a/scripts/mod/mk_elfconfig.c b/scripts/mod/mk_elfconfig.c index 3c92c83733f4..725d61c0fb43 100644 --- a/scripts/mod/mk_elfconfig.c +++ b/scripts/mod/mk_elfconfig.c | |||
@@ -28,7 +28,7 @@ main(int argc, char **argv) | |||
28 | printf("#define KERNEL_ELFCLASS ELFCLASS64\n"); | 28 | printf("#define KERNEL_ELFCLASS ELFCLASS64\n"); |
29 | break; | 29 | break; |
30 | default: | 30 | default: |
31 | abort(); | 31 | exit(1); |
32 | } | 32 | } |
33 | switch (ei[EI_DATA]) { | 33 | switch (ei[EI_DATA]) { |
34 | case ELFDATA2LSB: | 34 | case ELFDATA2LSB: |
@@ -38,7 +38,7 @@ main(int argc, char **argv) | |||
38 | printf("#define KERNEL_ELFDATA ELFDATA2MSB\n"); | 38 | printf("#define KERNEL_ELFDATA ELFDATA2MSB\n"); |
39 | break; | 39 | break; |
40 | default: | 40 | default: |
41 | abort(); | 41 | exit(1); |
42 | } | 42 | } |
43 | 43 | ||
44 | if (sizeof(unsigned long) == 4) { | 44 | if (sizeof(unsigned long) == 4) { |
@@ -53,7 +53,7 @@ main(int argc, char **argv) | |||
53 | else if (memcmp(endian_test.c, "\x02\x01", 2) == 0) | 53 | else if (memcmp(endian_test.c, "\x02\x01", 2) == 0) |
54 | printf("#define HOST_ELFDATA ELFDATA2LSB\n"); | 54 | printf("#define HOST_ELFDATA ELFDATA2LSB\n"); |
55 | else | 55 | else |
56 | abort(); | 56 | exit(1); |
57 | 57 | ||
58 | if ((strcmp(argv[1], "v850") == 0) || (strcmp(argv[1], "h8300") == 0)) | 58 | if ((strcmp(argv[1], "v850") == 0) || (strcmp(argv[1], "h8300") == 0)) |
59 | printf("#define MODULE_SYMBOL_PREFIX \"_\"\n"); | 59 | printf("#define MODULE_SYMBOL_PREFIX \"_\"\n"); |
diff --git a/scripts/mod/modpost.c b/scripts/mod/modpost.c index 7e226896579c..0dd16177642d 100644 --- a/scripts/mod/modpost.c +++ b/scripts/mod/modpost.c | |||
@@ -330,7 +330,7 @@ static void parse_elf(struct elf_info *info, const char *filename) | |||
330 | hdr = grab_file(filename, &info->size); | 330 | hdr = grab_file(filename, &info->size); |
331 | if (!hdr) { | 331 | if (!hdr) { |
332 | perror(filename); | 332 | perror(filename); |
333 | abort(); | 333 | exit(1); |
334 | } | 334 | } |
335 | info->hdr = hdr; | 335 | info->hdr = hdr; |
336 | if (info->size < sizeof(*hdr)) | 336 | if (info->size < sizeof(*hdr)) |