From d8d3554542020a95ff0a9821ebfc7a29d062c537 Mon Sep 17 00:00:00 2001 From: Pawel Wieczorkiewicz Date: Sat, 15 Aug 2020 22:28:50 +0200 Subject: [PATCH] hierarchy: add common/, lib/ and tests/ directories (#43) Signed-off-by: Pawel Wieczorkiewicz Co-authored-by: Bjoern Doebel --- console.c => common/console.c | 0 kernel.c => common/kernel.c | 0 percpu.c => common/percpu.c | 0 sched.c => common/sched.c | 0 setup.c => common/setup.c | 0 lib.c => lib/lib.c | 0 string.c => lib/string.c | 0 test.c => tests/test.c | 0 8 files changed, 0 insertions(+), 0 deletions(-) rename console.c => common/console.c (100%) rename kernel.c => common/kernel.c (100%) rename percpu.c => common/percpu.c (100%) rename sched.c => common/sched.c (100%) rename setup.c => common/setup.c (100%) rename lib.c => lib/lib.c (100%) rename string.c => lib/string.c (100%) rename test.c => tests/test.c (100%) diff --git a/console.c b/common/console.c similarity index 100% rename from console.c rename to common/console.c diff --git a/kernel.c b/common/kernel.c similarity index 100% rename from kernel.c rename to common/kernel.c diff --git a/percpu.c b/common/percpu.c similarity index 100% rename from percpu.c rename to common/percpu.c diff --git a/sched.c b/common/sched.c similarity index 100% rename from sched.c rename to common/sched.c diff --git a/setup.c b/common/setup.c similarity index 100% rename from setup.c rename to common/setup.c diff --git a/lib.c b/lib/lib.c similarity index 100% rename from lib.c rename to lib/lib.c diff --git a/string.c b/lib/string.c similarity index 100% rename from string.c rename to lib/string.c diff --git a/test.c b/tests/test.c similarity index 100% rename from test.c rename to tests/test.c