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.


Topics - ckblackm

Pages: [1]
1
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.

2
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.

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

thanks,
Christopher.

4
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.

5
Zaurus - pdaXrom / Wireless Network With Browser Login
« on: October 23, 2010, 06:43:16 pm »
Is there any secret for getting logged in at locations that require you to login via browser before it gives you
an ip address?

For example, at McDonalds, it requires you do the following:

Connecting is simple: When in the McDonald’s restaurant, just turn on your computer (or PDA), select “Wayport_Access” from the available wireless networks and open the Internet browser. You will be pointed to the McDonald’s splash page where you can select the CONNECT button.

iwconfig shows it connects to Wayport_Access, but I can't get it to give an ipaddress.

Any ideas?

thanks,
Christopher.

6
Ubuntu / Installing On A 3200 Microdrive?
« on: February 18, 2009, 08:08:01 am »
I've gotten zubuntu working following the instructions to run via the sd card... but
I was wondering what would be needed to get this running via the internal microdrive on my 3200?

I'd like to just have it running from 1 partition on the microdrive.  (I've currently got a swap, / , and a data partition defined)

thanks,
Christopher.

7
Zaurus - pdaXrom / Recent Browser?
« on: February 10, 2009, 12:14:01 pm »
Is there a recent browser available for pdaXrom?  When trying to use the firefox in my beta3 install,
I get errors about the age of the browser when accessing my favorite sites (yahoo, facebook, etc)

thanks,
Christopher.

8
Zaurus - pdaXrom / Symbol La-4137 Wifi Cf Card
« on: January 20, 2009, 02:29:46 pm »
Has anyone had experience using this card w/ pdaXrom?

thanks,
Christopher.

9
Zaurus - pdaXrom / Wpa Howto?
« on: May 28, 2008, 11:11:15 am »
Does anyone have a step-by-step guide for getting wpa running under pdaXrom?
I've got a SL-3200, D-Link DCF-660W, and am running beta3.  (actually... it's Daniels weeXpc.. but it's based off beta3.)

thanks,
Christopher.

10
Asus Eee PC / Asus Eee Pc 701 Vs Fujitsu P2120?
« on: May 05, 2008, 04:09:14 pm »
Anybody have any idea how the 701 would compare to the old Fujitsu P2120, performance wise?

thanks,
Christopher.

11
Zaurus - pdaXrom / C3200 Won't Power Up
« on: December 28, 2007, 02:43:46 pm »
Can't get my C3200 to turn on anymore... any suggestions to try and reset the thing?

thanks,
Christopher.

12
Zaurus - pdaXrom / Fellowes Stowaway Usb Keyboard
« on: December 12, 2007, 12:09:56 pm »
Has anyone gotten a Fellowes Stowaway USB keyboard to work in pdaXrom?  When I plug it in, some of the keys work,
but the unit seems to have the numlock on, so the "internal" numeric keypad is active.  pressing the numlock key doesn't do anything.

thanks,
Christopher.

13
6000 - Tosa / 2 Problems
« on: March 14, 2007, 10:20:12 am »
My main 2 problems with my zaurus 6000l is that:
1) I can't connect to hotspots using WPA security
2) The included browser gets yelled at every time I go visit some sites like yahoo or ebay because they say it's too old.


Is there any way to alleviate those 2 problems?

thanks,
Christopher.

14
User Request for Applications / Intellivision Emulator?
« on: February 16, 2007, 02:39:28 pm »
Is there an intellivision emulator available for the Zaurus?  (I've got an SL-6000)

thanks,
cb

15
6000 - Tosa / External Battery From Batterygeek
« on: January 12, 2005, 10:39:34 am »
Howdy folks.

I purchased one of these based on the description listed at the webpage:
http://www.batterygeek.net/camera.htm

But when I received the battery, it seems to list 6V as the minimum voltage, not 5V as listed in the web page.  What I'd like to know is that is this safe to use with the 6000?

thanks,
Christopher.

Pages: [1]