forked from KolibriOS/kolibrios
631f5b8e1e
- Added syscall_ common name for system call functions. - Fixed not logical names of system calls of functions. git-svn-id: svn://kolibrios.org@8986 a494cfbc-eb01-0410-851d-a64ba20cac60
12 lines
328 B
Bash
Executable File
12 lines
328 B
Bash
Executable File
#!/bin/sh
|
|
# Compile the KolibriOS kernel on Linux
|
|
# 2017, The KolibriOS team
|
|
|
|
KERPACK=./tools/kerpack
|
|
KOLIBRI_IMG=kolibri.img
|
|
|
|
echo 'lang fix en' > lang.inc
|
|
fasm -m 65536 bootbios.asm bootbios.bin
|
|
fasm -m 65536 -s kernel.fas kernel.asm kernel.mnt
|
|
$KERPACK kernel.mnt kernel.mnt
|
|
mcopy -D o -i $KOLIBRI_IMG kernel.mnt ::kernel.mnt |