aboutsummaryrefslogtreecommitdiffstats
path: root/initrd
diff options
context:
space:
mode:
Diffstat (limited to 'initrd')
-rw-r--r--initrd/Makefile12
-rwxr-xr-xinitrd/initbin12524 -> 0 bytes
-rw-r--r--initrd/init.c14
3 files changed, 0 insertions, 26 deletions
diff --git a/initrd/Makefile b/initrd/Makefile
deleted file mode 100644
index 5946eee..0000000
--- a/initrd/Makefile
+++ /dev/null
@@ -1,12 +0,0 @@
-##
-# A simple Makefile for building executables loadable by stmos.
-#
-
-ARCH = arm-stmos-
-CC = gcc -mcpu=cortex-m4 -mthumb -fsigned-char
-CFLAGS = -Os -fPIE
-
-all:
- @$(ARCH)$(CC) $(CFLAGS) init.c -o init
- @arm-stmos-strip init
-
diff --git a/initrd/init b/initrd/init
deleted file mode 100755
index 3bc5fd8..0000000
--- a/initrd/init
+++ /dev/null
Binary files differ
diff --git a/initrd/init.c b/initrd/init.c
deleted file mode 100644
index 5ff4ae5..0000000
--- a/initrd/init.c
+++ /dev/null
@@ -1,14 +0,0 @@
-/**
- * @file test.c
- * Basic userland code to be loaded by stmos for program load testing.
- */
-
-#include <stdio.h>
-
-int main(void)
-{
- printf("Hello, world!\n");
- while (1);
- return 0;
-}
-