forked from KolibriOS/kolibrios
bd8bfe3265
1) select path with OpenDialog 2) keys 1,2,3,4 for select options git-svn-id: svn://kolibrios.org@1606 a494cfbc-eb01-0410-851d-a64ba20cac60
14 lines
230 B
Bash
Executable File
14 lines
230 B
Bash
Executable File
#!/bin/bash
|
|
# This script does for linux the same as build.bat for DOS,
|
|
# it compiles the KoOS kernel, hopefully ;-)
|
|
|
|
echo "lang fix en"
|
|
echo "lang fix en" > lang.inc
|
|
fasm -m 16384 rdsave.asm rdsave
|
|
rm -f lang.inc
|
|
exit 0
|
|
|
|
|
|
|
|
|