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/mod | |
| 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/mod')
| -rw-r--r-- | scripts/mod/mk_elfconfig.c | 6 | ||||
| -rw-r--r-- | scripts/mod/modpost.c | 2 |
2 files changed, 4 insertions, 4 deletions
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)) |
