Search found 7 matches

by BostX
Mon Aug 16, 2010 1:46 am
Forum: Miscellaneous
Topic: Docu to RDsave
Replies: 1
Views: 5316

Docu to RDsave

It took me quite a while and deep digging in the history to realise what is the RDsave good for. A little comment like the one below would have saved me the time. (Improve and) commit it please diff --git a/programs/system/rdsave/trunk/rdsave.asm b/programs/system/rdsave/trunk/rdsave.asm index ced14...
by BostX
Sun Aug 01, 2010 8:29 pm
Forum: Coding
Topic: Compile without SVN keyword substitution
Replies: 0
Views: 11775

Compile without SVN keyword substitution

An email from Linus Torvalds may explain my motivation for writing this script: http://article.gmane.org/gmane.comp.version-control.git/44654, Bost PS: I call the script 'make.no-svn-keywords.sh' #!/bin/bash # Build the project without interference with SVN keyword substitution by replacing # the SV...
by BostX
Fri Jul 30, 2010 5:35 pm
Forum: Assembler
Topic: Compilation of lang.inc
Replies: 4
Views: 7502

Re: Compilation of lang.inc

A sollution is to put a lang.inc on the svn server. This file should be set to be ignored when commiting new/changed files to the SVN. hmm... and then every time you need to change the lang.inc you need to perform unignore lang.inc commit lang.inc ignore lang.inc that's a quite a lot of work (read ...
by BostX
Fri Jul 30, 2010 12:15 pm
Forum: Assembler
Topic: Compilation of lang.inc
Replies: 4
Views: 7502

Re: Compilation of lang.inc

Why you do not using build.bat or make.sh? lang.inc it is select language to blue boot screen. What I mean is: Good: a build script (build.bat or make.sh) needs some source code (kernel.asm) (in order compile the project). Bad: a build script needs some source code AND the source code needs a speci...
by BostX
Thu Jul 29, 2010 11:05 pm
Forum: Assembler
Topic: Compilation of lang.inc
Replies: 4
Views: 7502

Compilation of lang.inc

I find it confusing when I see include "lang.inc" in the kernel.asm and cannot find the lang.inc file in the repository. Except that I'm not sure if it's compliant with the theory of compilation to create and delete a file during compilation but I'm not an expert... Bost --- kernel.asm | 2...
by BostX
Thu Jul 08, 2010 1:43 am
Forum: Kernel
Topic: Improvements in make.sh
Replies: 2
Views: 8747

Re: Improvements in make.sh

seems like the file itself is missing :( so here is the code #!/bin/bash # This script does for linux the same as build.bat for DOS, # it compiles the KoOS kernel, hopefully ;-) CLANG=$1; # set debug=true to print executed bash commands debug=true outDir=bin outFileName=kernel.mnt outFile=$outDir/$o...
by BostX
Thu Jul 08, 2010 1:38 am
Forum: Kernel
Topic: Improvements in make.sh
Replies: 2
Views: 8747

Improvements in make.sh

I'm sending you whole make.sh since I can't see you sending each other any patch or such
Bost