diff --git a/.gitignore b/.gitignore index c380047..ce5c556 100644 --- a/.gitignore +++ b/.gitignore @@ -46,7 +46,7 @@ /Makefile -/testyboot +/loadwarka /examples/*.log /examples/*.trs diff --git a/Makefile.am b/Makefile.am index 0db1056..960af61 100644 --- a/Makefile.am +++ b/Makefile.am @@ -4,7 +4,7 @@ AM_CFLAGS = \ -Wall \ -Wextra -bin_PROGRAMS = testyboot +bin_PROGRAMS = loadwarka -testyboot_SOURCES = \ +loadwarka_SOURCES = \ src/main.c diff --git a/README.md b/README.md index e4c94bd..2916762 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -Testyboot +Loadwarka ========= Simple bootloader to be used in automated testing. diff --git a/build.sh b/build.sh index b5f3768..885d01a 100755 --- a/build.sh +++ b/build.sh @@ -22,5 +22,5 @@ ${CROSS}gcc -c $SRC/main.c -o $SRC/main.o ${CROSS}ld -T$SRC/linker.ld -o $SRC/stage1.bin $STAGE1_LDFLAGS $STAGE1_OBJS ${CROSS}ld -T$SRC/linker.ld -o $SRC/stage2.bin $STAGE2_LDFLAGS $STAGE2_OBJS -./testyboot mbr mbr.bin $SRC/stage1.bin +./loadwarka mbr mbr.bin $SRC/stage1.bin cat mbr.bin $SRC/stage2.bin > disk.img diff --git a/configure.ac b/configure.ac index 1c94a14..cc1f6ee 100644 --- a/configure.ac +++ b/configure.ac @@ -1,9 +1,9 @@ AC_PREREQ([2.68]) -AC_INIT([testyboot], +AC_INIT([loadwarka], [0.0.0], - [https://github.com/tailix/testyboot/issues], - [testyboot], - [https://github.com/tailix/testyboot]) + [https://github.com/tailix/loadwarka/issues], + [loadwarka], + [https://github.com/tailix/loadwarka]) AC_CONFIG_HEADERS([config.h]) AC_CONFIG_SRCDIR([src/main.c])