Skip to content

Commit

Permalink
misc fixes: Pulled from the dk-tmc4c1296x commit
Browse files Browse the repository at this point in the history
Signed-off-by: Paul Osmialowski <[email protected]>
  • Loading branch information
Alan Cox committed Jul 10, 2021
1 parent 549193f commit 587521f
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 2 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,5 @@ cscope.*
size.report
# Build system output
.obj
*.elf
bin
3 changes: 3 additions & 0 deletions Kernel/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -273,6 +273,9 @@ syscall_exec16.o: include/version.h include/kdata.h include/printf.h
syscall_exec32.o: include/kernel.h include/panic.h include/sysinfoblk.h
syscall_exec32.o: include/kernel32.h include/version.h include/kdata.h
syscall_exec32.o: include/printf.h
syscall_execelf32.o: include/kernel.h include/panic.h include/sysinfoblk.h
syscall_execelf32.o: include/kernel32.h include/version.h include/kdata.h
syscall_execelf32.o: include/printf.h
syscall_fs2.o: include/kernel.h include/panic.h include/sysinfoblk.h
syscall_fs2.o: include/version.h include/kdata.h include/printf.h
syscall_fs3.o: include/kernel.h include/panic.h include/sysinfoblk.h
Expand Down
2 changes: 1 addition & 1 deletion Kernel/include/tty.h
Original file line number Diff line number Diff line change
Expand Up @@ -300,7 +300,7 @@ static uint8_t pbuff[TTYSIZ];\
{pbuf4, pubf4, pubf4, TTYSIZ, 0, TTYSIZ/2}, \
{pbuf5, pubf5, pubf5, TTYSIZ, 0, TTYSIZ/2}, \
{pbuf6, pubf6, pubf6, TTYSIZ, 0, TTYSIZ/2}, \
{pbuf7, pubf7, pubf7, TTYSIZ, 0, TTYSIZ/2}
{pbuf7, pubf7, pubf7, TTYSIZ, 0, TTYSIZ/2}, \
{pbuf8, pubf8, pubf8, TTYSIZ, 0, TTYSIZ/2}, \
{pbuf9, pubf9, pubf9, TTYSIZ, 0, TTYSIZ/2}, \
{pbufa, pubfa, pubfa, TTYSIZ, 0, TTYSIZ/2}, \
Expand Down
2 changes: 1 addition & 1 deletion Standalone/elf2flt.c
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,7 @@ int main(int argc, char* const* argv)
.rev = htonl(FLAT_VERSION),
.flags = htonl(FLAT_FLAG_RAM),
.entry = htonl(elffile->e_entry + sizeof(flatheader)),
.data_start = htonl(textlo + sizeof(flatheader)),
.data_start = htonl(datalo + sizeof(flatheader)),
.data_end = htonl(datahi + sizeof(flatheader)),
.bss_end = htonl(bsshi + sizeof(flatheader)),
.reloc_start = htonl(datahi + sizeof(flatheader)),
Expand Down

0 comments on commit 587521f

Please sign in to comment.