TS NEEDED
	Arm tool chain arm-linux/2.95.3
	Dynamo Middleware Package
	ARM X11 libraries


CONFIGURATION


Step 0: Download the Demo
	Download the demo program. Then extract the files type "tar -zxvf demo.tgz". You will obtain a file structure similar to:

File Structure:

Dynamo
	middleware
		lib
	paapi
		user-level [user level dvs]
		kernel-level [kernel level dvs]
		linux-ipaq-v0.6.1 [kernel with dvs]

Step 1: Configuring the Make Process
	Open Dynamo\config.mk

	find and modify

	4: LOCAL_PATH = /user/home/dynamo_demo
	to the path of the dynamo directory

	find and modify
	7: ARM_X11 = /usr/local/arm/X11R6
	to the path of your local arm X11 libraries

	find and modify if necessary
	10: LINUXKERNELSRC = /usr/src/linux/kernel
	to the /path/to/your/proxy/linuxdistro/src/ this is used by the proxy, and 
	generally will not need to change

Step 2: Updating Header/Source Files
	There are 3 files that need to be modified to use the FORGE/Dynamo Middleware Framework.  These are device.h [middleware on your client device] proxy.h [middleware on the proxy device] dyncommunication.h [shared information between proxy and device].

	dyncommunication.h
	[all define's and structures can be modified in this header file]
	30: #define MOBILEIP
	defines the mobile device's IP address, configure this to the current mobile ip address


	41: #define PROXYIP
	defines the proxy's IP addressconfigure this to the current mobile ip address

Step 3: Making and Updating the Kernel Needed if user wants DVS functionality
	in dyanmo
	
	Compile Boot Image:
	make kernel
	
	Copy and Setup Boot Image:
	cd paapi/linux-ipaq-v0.6.1/arch/arm/boot/
	Copy the zImage to the mobile device's boot sector and link the new zImage to the current zImage with
	ln -s /boot/zImage-paapi /boot/zImage	

Step 4: Making The Middleware Demo
	in dynamo/
	make clean; make

Step 5: Uploading Files
	upload the device file to your iPAQ
	upload the proxy file & FOREMAN.H263 to the proxy machine

Step 6: Running the Demo
	run ./proxy [on the proxy]
	run ./device [on the device]

