diff options
| author | Andre Ericson <de.ericson@gmail.com> | 2012-05-22 20:59:51 -0300 |
|---|---|---|
| committer | Andre Ericson <de.ericson@gmail.com> | 2012-05-22 20:59:51 -0300 |
| commit | 2779b713bdd8644ee2b52962ece6daa209b4ba6b (patch) | |
| tree | 4d0664d291b437c744373ac83aca1835011f1182 /com32/modules | |
| parent | 4fc3fd1e14f4c1b9208ef262e5b6aef853e9fce4 (diff) | |
| download | syslinux-2779b713bdd8644ee2b52962ece6daa209b4ba6b.tar.gz | |
com32: remove duplicate modules
There was a hello.c32 module at com32/modules directory to test 32-bit
ELF space, so this patch replaces the old hello.c32 module with the new
hello.c32.
Signed-off-by: Andre Ericson <de.ericson@gmail.com>
Diffstat (limited to 'com32/modules')
| -rw-r--r-- | com32/modules/Makefile | 3 | ||||
| -rw-r--r-- | com32/modules/hello.c | 26 |
2 files changed, 1 insertions, 28 deletions
diff --git a/com32/modules/Makefile b/com32/modules/Makefile index 9d88d75b..b408410b 100644 --- a/com32/modules/Makefile +++ b/com32/modules/Makefile @@ -23,8 +23,7 @@ MODULES = chain.c32 config.c32 ethersel.c32 dmitest.c32 cpuidtest.c32 \ disk.c32 pcitest.c32 elf.c32 linux.c32 reboot.c32 pmload.c32 \ meminfo.c32 sdi.c32 sanboot.c32 ifcpu64.c32 vesainfo.c32 \ kbdmap.c32 cmd.c32 vpdtest.c32 host.c32 ls.c32 gpxecmd.c32 \ - ifcpu.c32 cpuid.c32 cat.c32 pwd.c32 ifplop.c32 zzjson.c32 whichsys.c32 \ - hello.c32 + ifcpu.c32 cpuid.c32 cat.c32 pwd.c32 ifplop.c32 zzjson.c32 whichsys.c32 TESTFILES = diff --git a/com32/modules/hello.c b/com32/modules/hello.c deleted file mode 100644 index d3d4d299..00000000 --- a/com32/modules/hello.c +++ /dev/null @@ -1,26 +0,0 @@ -/* - * hello.c - A simple ELF module that sorts a couple of numbers - * - * Created on: Aug 11, 2008 - * Author: Stefan Bucur <stefanb@zytor.com> - */ - -#include <stdio.h> -#include <stdlib.h> - -#include "sort.h" - -#define NUM_COUNT 10 -#define MAX_NUM 100 - -int main(int argc __unused, char **argv __unused) -{ - int *nums = NULL; - - nums = malloc(NUM_COUNT * sizeof(int)); - printf("Hello, world, from 0x%08X! malloc return %p\n", (unsigned int)&main, nums); - - free(nums); - - return 0; -} |
