It seems the link is broken. Anyone know an alternative link for this path?
Printable View
It seems the link is broken. Anyone know an alternative link for this path?
It's down for the time being, and I don't believe there is any alternative at the moment. If you'd like, I can upload a pre-compiled KOS 1.3 SVN 235. It's about 2 weeks old.Quote:
<LWake> BC: is allusion down?
<BlueCrab> uhm... yes
<BlueCrab> I can't fix it without Dan Potter doing some stuff first though (or I would have)
EDIT: Download KOS 1.3 SVN 235 (you'll need a tool that extracts 7zip files).
Thank you very much!
Do I have to overwrite my old folders of kos and kos-ports with those in the 7z archive? Nothing to install/compile or so?
If you're using the Dev ISO, just delete the /kos1.3 directory that's in /usr/local/dc and extract the 7z archive in /usr/local/dc. Make sure you rename /usr/local/dc/kos to /usr/local/dc/kos1.3.
The only thing that's compiled is /kos/kos and /kos/kos-ports. If you plan to use tiki or any of the other stuff, then you have to compile them yourself.
So far, so good.
I extracted the file and renamed it to kos1.3. But if cygwin is opened this message appears:
I'm such a noob, can you help me (again)?Quote:
bash: /usr/local/dc/kos/kos/environ_base.sh: No such file or directory
Simple.
Open /etc/profile in a text editor and make sure the following is at the very bottom:
and in /usr/local/dc/kos1.3/kos/environ.sh, find this line:Code:PATH=/usr/local/dc/arm-elf/bin:$PATH
PATH=/usr/local/dc/sh-elf/bin:$PATH
cd /usr/local/dc/kos1.3/kos
source environ.sh
and make sure the line directly below it is:Code:# KOS main base path
Code:export KOS_BASE="/usr/local/dc/kos1.3/kos"
There is now a new url to the KOS SVN.
http://svn.allusion.net/svn/kos/
Thanks again!
I'll try this when I'm home again.
My knowledge about linux seems to be somewhat old. Thanks for your patience! :)
Sorry! If you end up updating to the latest SVN of KOS, you will need to manually edit genromfs before you compile KOS. Here's the simple little fix you need to do:
Open /kos1.3/kos/utils/genromfs/genromfs.c in a text editor and find the following piece of code:
and change it to the following:Code:#ifdef _WIN32
# include <getopt.h>
#else
# include <fnmatch.h>
#endif /* _WIN32 */
If you do not do that change, genromfs will not compile. You will get an error.Code://#ifdef _WIN32
# include <getopt.h>
//#else
# include <fnmatch.h>
//#endif /* _WIN32 */