summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--README24
-rw-r--r--bin/playground/Kbuild2
-rw-r--r--bin/playground/main.c1
3 files changed, 3 insertions, 24 deletions
diff --git a/README b/README
deleted file mode 100644
index acfd2403..00000000
--- a/README
+++ /dev/null
@@ -1,24 +0,0 @@
-Introduction
-============
-
-Openlinux is lightweight linux userspace distribution designed to be small,
-portable and fast. It is definitely a work in progress.
-
-Building
-========
-
-The real system build is not done yet, but you can build the tools and libs
-for development using make in the root directory.
-
-Configuration
-=============
-
-The configuration is defined in a ".config" file in the root directory.
-You can use menuconfig target in make to create/edit it.
-
-Architecture support
-====================
-
- arm64: Not yet
- x86-64: Working
- ...: Not planned for now
diff --git a/bin/playground/Kbuild b/bin/playground/Kbuild
index 59fb5886..d9c08784 100644
--- a/bin/playground/Kbuild
+++ b/bin/playground/Kbuild
@@ -1,4 +1,6 @@
bin-y := main
obj-y := main.o
+cflags-y += -fblocks
+
libs-y := $(srctree)/lib/libc/libc.a
diff --git a/bin/playground/main.c b/bin/playground/main.c
index 3aab72f8..a6dab69a 100644
--- a/bin/playground/main.c
+++ b/bin/playground/main.c
@@ -1,3 +1,4 @@
+/* Place where code from libs can be tested */
int main(void)
{