files
kolibrios/programs/other/outdated/kerpack/build.sh
Andrew 7ccd4288f5
Some checks failed
Build system / Check kernel codestyle (pull_request) Successful in 42s
Build system / Build (pull_request) Failing after 6m27s
outdated/kerpack: Post-SVN tidy
- Move source code from `trunk` into root directory.
- Checked build files and ASM include paths.
2025-08-12 00:43:43 +01:00

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 en_US"
echo "lang fix en_US" > lang.inc
fasm -m 16384 kerpack.asm kerpack
rm -f lang.inc
exit 0