Rename project from "Testyboot" to "Loadwarka"

This commit is contained in:
Alex Kotov 2022-06-02 17:26:09 +03:00
parent 691ba5d800
commit 437cbc4ebe
Signed by: kotovalexarian
GPG Key ID: 553C0EBBEB5D5F08
5 changed files with 9 additions and 9 deletions

2
.gitignore vendored
View File

@ -46,7 +46,7 @@
/Makefile
/testyboot
/loadwarka
/examples/*.log
/examples/*.trs

View File

@ -4,7 +4,7 @@ AM_CFLAGS = \
-Wall \
-Wextra
bin_PROGRAMS = testyboot
bin_PROGRAMS = loadwarka
testyboot_SOURCES = \
loadwarka_SOURCES = \
src/main.c

View File

@ -1,4 +1,4 @@
Testyboot
Loadwarka
=========
Simple bootloader to be used in automated testing.

View File

@ -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

View File

@ -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])