Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - ckblackm

Pages: [1] 2 3 4
1
Zaurus - pdaXrom / NewsFeed RSS Reader Updated for pdaXrom
« on: May 29, 2019, 10:12:42 pm »
Wow... kinda surprised to still see any activity.
Isn't this the first post of 2019?
Maybe I need to dust mine off a bit.  ;-)

Christopher.

2
Zaurus - pdaXrom / New Pdaxrom Development
« on: November 11, 2016, 07:33:03 pm »
I'm still here.

3
Zaurus - pdaXrom / Pdaxrom Rom's Getting Hard To Find?
« on: September 30, 2011, 10:29:57 am »
Quote from: jcabrer
I'm currently reving up to port some of the software used to work with the RepRap machines to run on the 6000 and 3100 running pdaXrom.  Just wish I could find my CF MicroDrive.


Did you ever get a chance to post your newer versions of the dev tools?  (for example, autoconf)

thanks,
Christopher.

4
For Sale / Wanted / For Sale: Zaurus Sl-6000
« on: July 08, 2011, 06:54:59 pm »
Quote from: rrnwexec
still available.


Someone with a pretty loaded setup has been unable to sell theirs on ebay for $129... and he had lots of extra's.
http://cgi.ebay.com/Sharp-SL-6000L-Many-Xt...=item2c5da95142

5
Zaurus - pdaXrom / Question About Compiling Sz81
« on: February 16, 2011, 04:38:22 pm »
It's gotta be something with the make file.... the regular makefile will compile without modification.  Here's the regular makefile for comparison:

Code: [Select]
# Comment/uncomment these to choose an installation destination
# System wide installation
#PREFIX?=/usr/local
#BINDIR?=$(PREFIX)/bin
#DOCDIR?=$(PREFIX)/share/doc/$(TARGET)
#PACKAGE_DATA_DIR?=$(PREFIX)/share/$(TARGET)

# Local installation within your home folder
#PREFIX?=$(HOME)/Games/$(TARGET)
#BINDIR?=$(PREFIX)
#DOCDIR?=$(PREFIX)/doc
#PACKAGE_DATA_DIR?=$(PREFIX)/data

# Run from current folder i.e. no installation
PREFIX?=.
BINDIR?=$(PREFIX)
DOCDIR?=$(PREFIX)
PACKAGE_DATA_DIR?=$(PREFIX)/data

# For sz81 OSS_SOUND_SUPPORT is now synonymous with SDL_SOUND_SUPPORT.
# Comment this out if you don't want sound support.
SOUNDDEF=-DOSS_SOUND_SUPPORT

# You won't need to alter these
TARGET=$(shell cat TARGET)
SOURCES=sdl_main.c common.c sound.c z80.c sdl_engine.c sdl_hotspots.c \
    sdl_input.c sdl_loadsave.c sdl_resources.c sdl_sound.c sdl_video.c
OBJECTS=$(patsubst %.c, %.o, $(SOURCES))
VERSION=$(shell cat VERSION)

# These should be ok for most.
# For debugging/profiling uncomment the following two lines:
#CFLAGS=-O0 -g -pg
#LDFLAGS=-pg
SDL_CONFIG?=sdl-config
CFLAGS?=-O3
CFLAGS+=-Wall `$(SDL_CONFIG) --cflags` -DVERSION=\"$(VERSION)\" \
    -DPACKAGE_DATA_DIR=\"$(PACKAGE_DATA_DIR)\" $(SOUNDDEF) -DSZ81
LINK=$(CC)
LDFLAGS=
LIBS=`$(SDL_CONFIG) --libs`

# You won't need to alter anything below
all: $(SOURCES) $(TARGET)

$(TARGET): $(OBJECTS)
    $(LINK) $(LDFLAGS) $(OBJECTS) $(LIBS) -o $@

%.o: %.c
    $(CC) $(CFLAGS) -c $< -o $@

.PHONY: all clean install

open%:
    -@if [ -n "`which pasmo 2> /dev/null`" ]; then \
        pasmo -v open8x/$@.asm open8x/$@.rom; \
        if [ -f open8x/$@.rom -a ! -e data/zx$*.rom ]; then \
            cp open8x/$@.rom data/zx$*.rom; \
        fi \
    else \
        echo "The Pasmo cross-assembler was not found: skipping $@"; \
    fi

clean:
    rm -f *.o

install:
    @if [ "$(PREFIX)" = . ]; then \
        echo "Installing into the current folder is not allowed."; \
        exit 2; \
    fi
    mkdir -p $(BINDIR)
    mkdir -p $(DOCDIR)
    mkdir -p $(PACKAGE_DATA_DIR)
    cp $(TARGET) $(BINDIR)
    cp AUTHORS COPYING ChangeLog NEWS README $(DOCDIR)
    cp data/*.bmp $(PACKAGE_DATA_DIR)
    @if [ -f data/zx80.rom ]; then cp data/zx80.rom $(PACKAGE_DATA_DIR); fi
    @if [ -f data/zx81.rom ]; then cp data/zx81.rom $(PACKAGE_DATA_DIR); fi
    
uninstall:
    @echo "Uninstalling is not currently implemented."

6
Zaurus - pdaXrom / Question About Compiling Sz81
« on: February 16, 2011, 02:39:49 pm »
I'm trying to compile SZ81 on beta 3.  First off, just doing a simple make works and it compiles, but if I try to use the
Makefile.zaurus, I get an error.   The Makefile.zaurus was originally used for the standard sharp rom, but I tried to change
it so that it would match the directory structure for pdaXrom.

Here is the modified Makefile.zaurus I used:
Code: [Select]
# You won't need to alter these
TARGET=$(shell cat TARGET)
SOURCES=sdl_main.c common.c sound.c z80.c sdl_engine.c sdl_hotspots.c \
    sdl_input.c sdl_loadsave.c sdl_resources.c sdl_sound.c sdl_video.c
OBJECTS=$(patsubst %.c, %.o, $(SOURCES))
VERSION=$(shell cat VERSION)
#export PREFIX=/opt/QtPalmtop
export PREFIX=/mnt/ide2/usr/local
PACKAGE_DATA_DIR=$(PREFIX)/share/$(TARGET)

# This uses the default cross compiler directory of /opt/Embedix and
# the default QPE directory of /opt/Qtopia
#
#DEVPREFIX=/opt/Qtopia/sharp
#CC=/opt/Embedix/tools/bin/arm-linux-gcc
DEVPREFIX=/opt/native/arm/3.4.6-xscale-softvfp
CC=/opt/native/arm/3.4.6-xscale-softvfp/bin/gcc
CFLAGS=-O3 -Wall -I$(DEVPREFIX)/include \
    `$(DEVPREFIX)/bin/sdl-config --prefix=$(DEVPREFIX) --cflags` \
    -DNO_DEBUG -DQWS -DPLATFORM_ZAURUS -DVERSION=\"$(VERSION)\" \
    -DPACKAGE_DATA_DIR=\"$(PACKAGE_DATA_DIR)\" -DOSS_SOUND_SUPPORT -DSZ81
LINK=$(CC)
LDFLAGS=-L$(DEVPREFIX)/lib
LIBS=`$(DEVPREFIX)/bin/sdl-config --prefix=$(DEVPREFIX) --libs`

# You won't need to alter anything below
all: $(SOURCES) $(TARGET)

$(TARGET): $(OBJECTS)
    $(LINK) $(LDFLAGS) $(OBJECTS) $(LIBS) -o $@
    zaurus/build-$(TARGET)

%.o: %.c
    $(CC) $(CFLAGS) -c $< -o $@

.PHONY: all clean

clean:
    rm -f *.o

Here's the output I get:
Code: [Select]
# make -f Makefile.zaurus
/opt/native/arm/3.4.6-xscale-softvfp/bin/gcc -O3 -Wall -I/opt/native/arm/3.4.6-xscale-softvfp/include `/opt/native/arm/3.4.6-xscale-softvfp/bin/sdl-config --prefix=/opt/native/arm/3.4.6-xscale-softvfp --cflags` -DNO_DEBUG -DQWS -DPLATFORM_ZAURUS -DVERSION=\"2.1.7\" -DPACKAGE_DATA_DIR=\"/mnt/ide2/usr/local/share/sz81\" -DOSS_SOUND_SUPPORT -DSZ81  -c sdl_main.c -o sdl_main.o
/opt/native/arm/3.4.6-xscale-softvfp/bin/gcc -O3 -Wall -I/opt/native/arm/3.4.6-xscale-softvfp/include `/opt/native/arm/3.4.6-xscale-softvfp/bin/sdl-config --prefix=/opt/native/arm/3.4.6-xscale-softvfp --cflags` -DNO_DEBUG -DQWS -DPLATFORM_ZAURUS -DVERSION=\"2.1.7\" -DPACKAGE_DATA_DIR=\"/mnt/ide2/usr/local/share/sz81\" -DOSS_SOUND_SUPPORT -DSZ81  -c common.c -o common.o
/opt/native/arm/3.4.6-xscale-softvfp/bin/gcc -O3 -Wall -I/opt/native/arm/3.4.6-xscale-softvfp/include `/opt/native/arm/3.4.6-xscale-softvfp/bin/sdl-config --prefix=/opt/native/arm/3.4.6-xscale-softvfp --cflags` -DNO_DEBUG -DQWS -DPLATFORM_ZAURUS -DVERSION=\"2.1.7\" -DPACKAGE_DATA_DIR=\"/mnt/ide2/usr/local/share/sz81\" -DOSS_SOUND_SUPPORT -DSZ81  -c sound.c -o sound.o
/opt/native/arm/3.4.6-xscale-softvfp/bin/gcc -O3 -Wall -I/opt/native/arm/3.4.6-xscale-softvfp/include `/opt/native/arm/3.4.6-xscale-softvfp/bin/sdl-config --prefix=/opt/native/arm/3.4.6-xscale-softvfp --cflags` -DNO_DEBUG -DQWS -DPLATFORM_ZAURUS -DVERSION=\"2.1.7\" -DPACKAGE_DATA_DIR=\"/mnt/ide2/usr/local/share/sz81\" -DOSS_SOUND_SUPPORT -DSZ81  -c z80.c -o z80.o
/opt/native/arm/3.4.6-xscale-softvfp/bin/gcc -O3 -Wall -I/opt/native/arm/3.4.6-xscale-softvfp/include `/opt/native/arm/3.4.6-xscale-softvfp/bin/sdl-config --prefix=/opt/native/arm/3.4.6-xscale-softvfp --cflags` -DNO_DEBUG -DQWS -DPLATFORM_ZAURUS -DVERSION=\"2.1.7\" -DPACKAGE_DATA_DIR=\"/mnt/ide2/usr/local/share/sz81\" -DOSS_SOUND_SUPPORT -DSZ81  -c sdl_engine.c -o sdl_engine.o
/opt/native/arm/3.4.6-xscale-softvfp/bin/gcc -O3 -Wall -I/opt/native/arm/3.4.6-xscale-softvfp/include `/opt/native/arm/3.4.6-xscale-softvfp/bin/sdl-config --prefix=/opt/native/arm/3.4.6-xscale-softvfp --cflags` -DNO_DEBUG -DQWS -DPLATFORM_ZAURUS -DVERSION=\"2.1.7\" -DPACKAGE_DATA_DIR=\"/mnt/ide2/usr/local/share/sz81\" -DOSS_SOUND_SUPPORT -DSZ81  -c sdl_hotspots.c -o sdl_hotspots.o
/opt/native/arm/3.4.6-xscale-softvfp/bin/gcc -O3 -Wall -I/opt/native/arm/3.4.6-xscale-softvfp/include `/opt/native/arm/3.4.6-xscale-softvfp/bin/sdl-config --prefix=/opt/native/arm/3.4.6-xscale-softvfp --cflags` -DNO_DEBUG -DQWS -DPLATFORM_ZAURUS -DVERSION=\"2.1.7\" -DPACKAGE_DATA_DIR=\"/mnt/ide2/usr/local/share/sz81\" -DOSS_SOUND_SUPPORT -DSZ81  -c sdl_input.c -o sdl_input.o
/opt/native/arm/3.4.6-xscale-softvfp/bin/gcc -O3 -Wall -I/opt/native/arm/3.4.6-xscale-softvfp/include `/opt/native/arm/3.4.6-xscale-softvfp/bin/sdl-config --prefix=/opt/native/arm/3.4.6-xscale-softvfp --cflags` -DNO_DEBUG -DQWS -DPLATFORM_ZAURUS -DVERSION=\"2.1.7\" -DPACKAGE_DATA_DIR=\"/mnt/ide2/usr/local/share/sz81\" -DOSS_SOUND_SUPPORT -DSZ81  -c sdl_loadsave.c -o sdl_loadsave.o
/opt/native/arm/3.4.6-xscale-softvfp/bin/gcc -O3 -Wall -I/opt/native/arm/3.4.6-xscale-softvfp/include `/opt/native/arm/3.4.6-xscale-softvfp/bin/sdl-config --prefix=/opt/native/arm/3.4.6-xscale-softvfp --cflags` -DNO_DEBUG -DQWS -DPLATFORM_ZAURUS -DVERSION=\"2.1.7\" -DPACKAGE_DATA_DIR=\"/mnt/ide2/usr/local/share/sz81\" -DOSS_SOUND_SUPPORT -DSZ81  -c sdl_resources.c -o sdl_resources.o
/opt/native/arm/3.4.6-xscale-softvfp/bin/gcc -O3 -Wall -I/opt/native/arm/3.4.6-xscale-softvfp/include `/opt/native/arm/3.4.6-xscale-softvfp/bin/sdl-config --prefix=/opt/native/arm/3.4.6-xscale-softvfp --cflags` -DNO_DEBUG -DQWS -DPLATFORM_ZAURUS -DVERSION=\"2.1.7\" -DPACKAGE_DATA_DIR=\"/mnt/ide2/usr/local/share/sz81\" -DOSS_SOUND_SUPPORT -DSZ81  -c sdl_sound.c -o sdl_sound.o
/opt/native/arm/3.4.6-xscale-softvfp/bin/gcc -O3 -Wall -I/opt/native/arm/3.4.6-xscale-softvfp/include `/opt/native/arm/3.4.6-xscale-softvfp/bin/sdl-config --prefix=/opt/native/arm/3.4.6-xscale-softvfp --cflags` -DNO_DEBUG -DQWS -DPLATFORM_ZAURUS -DVERSION=\"2.1.7\" -DPACKAGE_DATA_DIR=\"/mnt/ide2/usr/local/share/sz81\" -DOSS_SOUND_SUPPORT -DSZ81  -c sdl_video.c -o sdl_video.o
/opt/native/arm/3.4.6-xscale-softvfp/bin/gcc -L/opt/native/arm/3.4.6-xscale-softvfp/lib  sdl_main.o  common.o  sound.o  z80.o  sdl_engine.o  sdl_hotspots.o  sdl_input.o  sdl_loadsave.o  sdl_resources.o  sdl_sound.o  sdl_video.o `/opt/native/arm/3.4.6-xscale-softvfp/bin/sdl-config --prefix=/opt/native/arm/3.4.6-xscale-softvfp --libs` -o sz81
/opt/native/arm/3.4.6-xscale-softvfp/lib/gcc/armv5tel-cacko-linux/3.4.6/../../../../armv5tel-cacko-linux/lib/crt1.o: In function `_start':
init.c:(.text+0x2c): undefined reference to `main'
collect2: ld returned 1 exit status
make: *** [sz81] Error 1

Any suggestions?
If you want to play with it yourself.. you can get it from
SZ81 website

thanks,
Christopher.

7
Zaurus - pdaXrom / Want Compiled Thread?
« on: February 09, 2011, 08:54:50 pm »
Quote from: brontoZaurus
anyone knows a full workin repo¿?
i´m using pdaxii13 for c3000 and i´m planing to make my own mirror for me and sharing.
thanks in advance.

There are a few feeds listed in this topic:  https://www.oesf.org/forum/index.php?showto...=27837&st=0

For the full repo for pdaXrom... I usually go to ibiblio:  http://distro.ibiblio.org/pub/linux/distri...rus-Cxx00/feed/

There are other versions there at ibiblio... just look around.

8
Zaurus - pdaXrom / Native Development Tools Getting Old
« on: February 09, 2011, 08:49:11 pm »
Quote from: jcabrer
Ah!  You're right.  Sorry.  Let's see if I can remedy that in the next few days.


Any luck with this?

thanks,
Christopher.

9
Zaurus - pdaXrom / Pidgin Can't Find Libdbus-1.so.3
« on: January 01, 2011, 06:17:02 pm »
I'm trying to run pidgin and get the error:

pidgin: error while loading shraed libraries: libdbus-1.so.3: cannot open shared object file: No such file or directory.


Does anyone have this library or know where I can get it?

I have dbus and dbus-glib installed.

thanks,
Christopher.

10
Zaurus - pdaXrom / Native Development Tools Getting Old
« on: December 05, 2010, 05:50:51 pm »
Quote from: jcabrer
Quote from: ckblackm
Quote from: jcabrer
Updated versions of Make and M4 seem to have made a difference.  The errors I was getting at make are now gone!

Here they are if anyone wants them.  I'm working on a feed to host all of the new stuff I'm compiling, but who knows when I'll get around to it. ;^)

Do you have an updated version of autoconf?

thanks,
Christopher.

Check this reply in the New Packages Announce


I see automake, but not autoconf... did you have autoconf?

thanks,
Christopher.

11
Zaurus - pdaXrom / Cups Package?
« on: November 20, 2010, 04:57:50 pm »
Does anyone still have the cups package?

thanks,
Christopher.

12
Zaurus - pdaXrom / Native Development Tools Getting Old
« on: November 18, 2010, 02:49:11 pm »
Quote from: jcabrer
Updated versions of Make and M4 seem to have made a difference.  The errors I was getting at make are now gone!

Here they are if anyone wants them.  I'm working on a feed to host all of the new stuff I'm compiling, but who knows when I'll get around to it. ;^)

Do you have an updated version of autoconf?

thanks,
Christopher.

13
Zaurus - pdaXrom / Want Compiled Thread?
« on: November 04, 2010, 06:01:01 pm »
Quote from: jcabrer
Quote from: ckblackm
Anyone interested in compiling Moria?

thanks,
Christopher.

I'll take a look tonight, and post the ipk if there are no problems.


I've tried compiling it.. but get the follow errors... any ideas?


[div class=\'codetop\']CODE[/div][div class=\'codemain\' style=\'height:200px;white-space:pre;overflow:auto\']io.c: In function `init_curses':
io.c:337: warning: passing arg 2 of `signal' from incompatible pointer type
io.c: In function `moriaterm':
io.c:389: error: storage size of 'tbuf' isn't known
io.c:425: error: `VINTR' undeclared (first use in this function)
io.c:425: error: (Each undeclared identifier is reported only once
io.c:425: error: for each function it appears in.)
io.c:426: error: `VQUIT' undeclared (first use in this function)
io.c:427: error: `VERASE' undeclared (first use in this function)
io.c:428: error: `VKILL' undeclared (first use in this function)
io.c:429: error: `VEOF' undeclared (first use in this function)
io.c:432: error: `VEOL' undeclared (first use in this function)
io.c:438: error: `VMIN' undeclared (first use in this function)
io.c:439: error: `VTIME' undeclared (first use in this function)
io.c: In function `shell_out':
io.c:650: error: storage size of 'tbuf' isn't known
io.c: At top level:
io.c:205: error: storage size of `save_termio' isn't known
make: *** [io.o] Error 1
[/div]

14
Zaurus - pdaXrom / Anyone Know Where I Can Get The Cross Compiler?
« on: November 02, 2010, 10:24:21 pm »
The links are all broken on https://www.oesf.org/index.php?title=Pdaxro...oss_Compilation.

I managed to get the pdax86 live image from ibiblio (http://distro.ibiblio.org/pub/linux/distributions/pdaxrom/download/1.1.0beta3/)

but does anyone know where I can get the cross compiler?

thanks,
Christopher.

15
Zaurus - pdaXrom / Wireless Network With Browser Login
« on: October 26, 2010, 01:29:56 pm »
Quote from: jcabrer
A lot depends on which device you have.  If you are using TOSA, you will most likely need to run the dhcp client manually.  Authentication does not prevent the router from assigning you an IP address, but the device has to request it to be assigned (ei you have to run dhclient, or what ever it's called).

I'm using a 3200  (with beta 3)

Christopher.

Pages: [1] 2 3 4