forked from KolibriOS/kolibrios
Rustem Gimadutdinov (rgimad)
16ff205237
- fixed issue with staggered spin-up, so now works better on real hardware - more verbose debug output - other small changes TODO: improve reading identification space why identification space is all zeroes on my acer aspire ? git-svn-id: svn://kolibrios.org@9130 a494cfbc-eb01-0410-851d-a64ba20cac60
11 lines
333 B
Bash
Executable File
11 lines
333 B
Bash
Executable File
#!/bin/sh
|
|
KERPACK=/home/programist/KOS_SVN/programs/other/kpack/kerpack_linux/kerpack
|
|
KOLIBRI_IMG=kolibri_test2.img
|
|
|
|
echo 'lang fix en' > lang.inc
|
|
fasm -m 65536 bootbios.asm bootbios.bin
|
|
fasm -m 65536 kernel.asm kernel.mnt
|
|
$KERPACK kernel.mnt kernel.mnt
|
|
mcopy -D o -i $KOLIBRI_IMG kernel.mnt ::kernel.mnt
|
|
cp $KOLIBRI_IMG kolibri.img
|