forked from KolibriOS/kolibrios
97f05bd867
1) reducing the size of the binary code, 2) program uses far less memory while running (>0x7000, the old version used >0x100000) 3) process only net event at start with parameter (URL) git-svn-id: svn://kolibrios.org@1646 a494cfbc-eb01-0410-851d-a64ba20cac60
14 lines
238 B
Bash
14 lines
238 B
Bash
#!/bin/bash
|
|
# This script does for linux the same as build.bat for DOS,
|
|
# it compiles the KoOS kernel, hopefully ;-)
|
|
|
|
echo "lang fix ru"
|
|
echo "lang fix ru" > lang.inc
|
|
fasm -m 16384 downloader.asm downloader
|
|
rm -f lang.inc
|
|
exit 0
|
|
|
|
|
|
|
|
|