From fe422cfb09ba96010dea698239583b998848e78c Mon Sep 17 00:00:00 2001 From: Braiden Vasco Date: Wed, 1 Nov 2017 07:06:34 +0000 Subject: [PATCH] Move "/src/" to "/arch/" --- .gitignore | 2 +- Makefile | 6 +++--- {src => arch}/Makefile | 0 {src => arch}/boot.s | 0 {src => arch}/console.c | 0 {src => arch}/console.h | 0 {src => arch}/gdt.asm | 0 {src => arch}/gdt.c | 0 {src => arch}/gdt.h | 0 {src => arch}/idt.asm | 0 {src => arch}/idt.c | 0 {src => arch}/idt.h | 0 {src => arch}/isr.asm | 0 {src => arch}/isr.c | 0 {src => arch}/linker.ld | 0 {src => arch}/logger.c | 0 {src => arch}/logger.h | 0 {src => arch}/main.c | 0 {src => arch}/util.h | 0 19 files changed, 4 insertions(+), 4 deletions(-) rename {src => arch}/Makefile (100%) rename {src => arch}/boot.s (100%) rename {src => arch}/console.c (100%) rename {src => arch}/console.h (100%) rename {src => arch}/gdt.asm (100%) rename {src => arch}/gdt.c (100%) rename {src => arch}/gdt.h (100%) rename {src => arch}/idt.asm (100%) rename {src => arch}/idt.c (100%) rename {src => arch}/idt.h (100%) rename {src => arch}/isr.asm (100%) rename {src => arch}/isr.c (100%) rename {src => arch}/linker.ld (100%) rename {src => arch}/logger.c (100%) rename {src => arch}/logger.h (100%) rename {src => arch}/main.c (100%) rename {src => arch}/util.h (100%) diff --git a/.gitignore b/.gitignore index 6f39445..e1747b1 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,3 @@ *.o -/src/kernel +/arch/kernel diff --git a/Makefile b/Makefile index 429470a..b43ed6d 100644 --- a/Makefile +++ b/Makefile @@ -1,8 +1,8 @@ run: all - qemu-system-i386 -kernel src/kernel -d guest_errors + qemu-system-i386 -kernel arch/kernel -d guest_errors all: - make all -C src + make all -C arch clean: - make clean -C src + make clean -C arch diff --git a/src/Makefile b/arch/Makefile similarity index 100% rename from src/Makefile rename to arch/Makefile diff --git a/src/boot.s b/arch/boot.s similarity index 100% rename from src/boot.s rename to arch/boot.s diff --git a/src/console.c b/arch/console.c similarity index 100% rename from src/console.c rename to arch/console.c diff --git a/src/console.h b/arch/console.h similarity index 100% rename from src/console.h rename to arch/console.h diff --git a/src/gdt.asm b/arch/gdt.asm similarity index 100% rename from src/gdt.asm rename to arch/gdt.asm diff --git a/src/gdt.c b/arch/gdt.c similarity index 100% rename from src/gdt.c rename to arch/gdt.c diff --git a/src/gdt.h b/arch/gdt.h similarity index 100% rename from src/gdt.h rename to arch/gdt.h diff --git a/src/idt.asm b/arch/idt.asm similarity index 100% rename from src/idt.asm rename to arch/idt.asm diff --git a/src/idt.c b/arch/idt.c similarity index 100% rename from src/idt.c rename to arch/idt.c diff --git a/src/idt.h b/arch/idt.h similarity index 100% rename from src/idt.h rename to arch/idt.h diff --git a/src/isr.asm b/arch/isr.asm similarity index 100% rename from src/isr.asm rename to arch/isr.asm diff --git a/src/isr.c b/arch/isr.c similarity index 100% rename from src/isr.c rename to arch/isr.c diff --git a/src/linker.ld b/arch/linker.ld similarity index 100% rename from src/linker.ld rename to arch/linker.ld diff --git a/src/logger.c b/arch/logger.c similarity index 100% rename from src/logger.c rename to arch/logger.c diff --git a/src/logger.h b/arch/logger.h similarity index 100% rename from src/logger.h rename to arch/logger.h diff --git a/src/main.c b/arch/main.c similarity index 100% rename from src/main.c rename to arch/main.c diff --git a/src/util.h b/arch/util.h similarity index 100% rename from src/util.h rename to arch/util.h