Search results

  1. D

    My insanely impossible Art project

    1 - The Statement So years ago I said to myself: - I want to write my own programming language - in which to write my own operating system - on which to run my own 3D game At the same time Pandora was just concept art, but I've been eyeing it ever since because it fit the criteria I had in...
  2. D

    How Check Sd Inserted Or Not

    That means some process is using the SD, e.g. you are in a directory under /mnt/sd in the shell. If so just "cd /" before you unmount it. Your program will have to close any files on the SD too and chdir() off the SD.
  3. D

    How Check Sd Inserted Or Not

    In a shell script you can do: if mount | grep -q disc0; then # SD is mounted else # Not mounted fi
  4. D

    Perl / Sdl Error

    I didn't realise you could write to the root file system B) I've got the ext2 sd mounting automatically by adding the bolded lines below in /root/start.sh: # Mount SD... if test ! "`mount | grep "/disc0/"`"; then echo "Mount SD disc, if not mounted..." mount -t vfat -o...
  5. D

    Perl / Sdl Error

    I've installed the Perl / SDL port from here and I'm getting the following error when I try to run a script that uses SDL, when it tries to create a new SDL::Font using an sfont png file. Can't locate auto/SDL/NewFont.al in @INC (@INC contains: /mnt/sd/libs/perl/lib/perl5/5.8.7...
Back
Top