mirror of
https://github.com/tailix/loadwarka.git
synced 2024-12-02 14:05:11 -05:00
Rename project from "Testyboot" to "Loadwarka"
This commit is contained in:
parent
691ba5d800
commit
437cbc4ebe
5 changed files with 9 additions and 9 deletions
2
.gitignore
vendored
2
.gitignore
vendored
|
@ -46,7 +46,7 @@
|
|||
|
||||
/Makefile
|
||||
|
||||
/testyboot
|
||||
/loadwarka
|
||||
|
||||
/examples/*.log
|
||||
/examples/*.trs
|
||||
|
|
|
@ -4,7 +4,7 @@ AM_CFLAGS = \
|
|||
-Wall \
|
||||
-Wextra
|
||||
|
||||
bin_PROGRAMS = testyboot
|
||||
bin_PROGRAMS = loadwarka
|
||||
|
||||
testyboot_SOURCES = \
|
||||
loadwarka_SOURCES = \
|
||||
src/main.c
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
Testyboot
|
||||
Loadwarka
|
||||
=========
|
||||
|
||||
Simple bootloader to be used in automated testing.
|
||||
|
|
2
build.sh
2
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
|
||||
|
|
|
@ -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])
|
||||
|
|
Loading…
Reference in a new issue