<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>http://wiki.webos-internals.org/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=UltraBlack</id>
	<title>WebOS Internals - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="http://wiki.webos-internals.org/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=UltraBlack"/>
	<link rel="alternate" type="text/html" href="http://wiki.webos-internals.org/wiki/Special:Contributions/UltraBlack"/>
	<updated>2026-04-06T01:37:32Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.35.1</generator>
	<entry>
		<id>http://wiki.webos-internals.org/index.php?title=Setup_SFTP&amp;diff=5886</id>
		<title>Setup SFTP</title>
		<link rel="alternate" type="text/html" href="http://wiki.webos-internals.org/index.php?title=Setup_SFTP&amp;diff=5886"/>
		<updated>2009-09-23T23:17:21Z</updated>

		<summary type="html">&lt;p&gt;UltraBlack: Clarified last edit.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;'''It is strongly recommended that unless you are an advanced Linux user, you use the automated setup meta-package instead of doing this manually.  We suggest that you go [[Next_steps | here]] instead.'''&lt;br /&gt;
&lt;br /&gt;
'''Note also that if you are a windows user, winSCP is faster and just as secure using the SCP protocol without doing all this.  We suggest just using winSCP without bothering to set it up for SFTP which is slower and no more secure.''' &lt;br /&gt;
&lt;br /&gt;
Once you have accessed Linux on your Pre, it would be nice to be able to get and put files off the Pre without having to switch to usb drive mode, and copy the files over,and switch back to user mode, and move the files out of the media/internal folder and so forth. &lt;br /&gt;
&lt;br /&gt;
One good way to do this is via SFTP.  If you are not sure what that is, please visit [http://en.wikipedia.org/wiki/SSH_File_Transfer_Protocol this wiki page]. &lt;br /&gt;
&lt;br /&gt;
This document assumes you know why you want sftp, and how to use it once it's on the Pre. &lt;br /&gt;
&lt;br /&gt;
Step 1: [[Portal:Accessing_Linux | Login to your Pre's Linux shell]].  You must also have Optware packages configured, as outlined [[Next_steps|here]]: &lt;br /&gt;
&lt;br /&gt;
Step 2: Set Read/Write Access:&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
sudo -i&lt;br /&gt;
mount -o remount,rw /&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Step 3: Install the needed components from ipkg-opt:&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
cd /opt/bin&lt;br /&gt;
ipkg-opt update&lt;br /&gt;
ipkg-opt install openssh-sftp-server&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Step 4: Modify the sudoers file to allow your user account to sudo sftp-server without a password:&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
visudo &lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
Once in the file, add the following line after the existing ALL line for your user - where //myusername// should be replaced with the user account that you are using to access your Pre via SSH.  The order of the lines count here :&lt;br /&gt;
&lt;br /&gt;
Example:&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
myusername ALL=(ALL) ALL&lt;br /&gt;
myusername ALL=NOPASSWD: /opt/libexec/sftp-server&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Quit and save your changes (ESC :wq)&lt;br /&gt;
&lt;br /&gt;
Step 5: Mount the Pre's file system as read-only:&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
mount -o remount,ro /&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Step 6: Reboot via one of the methods below:&lt;br /&gt;
&lt;br /&gt;
Method 1:&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
su&lt;br /&gt;
/sbin/reboot&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Method 2:&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
sudo su -l&lt;br /&gt;
reboot&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Method 3:&lt;br /&gt;
Turn off the Pre by holding the power button until the 'Turn Off' button appears and then pressing it. Turn the Pre back on after it has turned off by holding the power button until you see the Palm logo.&lt;br /&gt;
&lt;br /&gt;
Other Methods:&lt;br /&gt;
You may be able to reboot the phone with other commands. You can hit Orange+Sym+R on your Pre's keyboard to perform a soft reset, as well.&lt;br /&gt;
&lt;br /&gt;
To login to the Pre using WinSCP:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
Hostname: [my pre's ip]&lt;br /&gt;
port: [my pre's port] (222 if you followed the Optware enabling instructions verbatim)&lt;br /&gt;
username and password you set&lt;br /&gt;
&lt;br /&gt;
Check 'Advanced Options' and select &amp;quot;Environment&amp;gt;SFTP&amp;quot;.&lt;br /&gt;
In the SFTP server box enter: sudo /opt/libexec/sftp-server&lt;br /&gt;
&lt;br /&gt;
Be sure to set &amp;quot;mount -o remount,rw /&amp;quot; to write and &amp;quot;mount -o remount,ro /&amp;quot; when done. (If on Windows, do this through PuTTY. I haven't found a way to do it through WinSCP, but you can go to &amp;quot;Commands&amp;gt;Open in PuTTY&amp;quot; from the main toolbar.)&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Courtesy of jhoff80 and blakeb at PreCentral.net&lt;/div&gt;</summary>
		<author><name>UltraBlack</name></author>
	</entry>
	<entry>
		<id>http://wiki.webos-internals.org/index.php?title=Setup_SFTP&amp;diff=5885</id>
		<title>Setup SFTP</title>
		<link rel="alternate" type="text/html" href="http://wiki.webos-internals.org/index.php?title=Setup_SFTP&amp;diff=5885"/>
		<updated>2009-09-23T23:16:30Z</updated>

		<summary type="html">&lt;p&gt;UltraBlack: Added note about options for rebooting.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;'''It is strongly recommended that unless you are an advanced Linux user, you use the automated setup meta-package instead of doing this manually.  We suggest that you go [[Next_steps | here]] instead.'''&lt;br /&gt;
&lt;br /&gt;
'''Note also that if you are a windows user, winSCP is faster and just as secure using the SCP protocol without doing all this.  We suggest just using winSCP without bothering to set it up for SFTP which is slower and no more secure.''' &lt;br /&gt;
&lt;br /&gt;
Once you have accessed Linux on your Pre, it would be nice to be able to get and put files off the Pre without having to switch to usb drive mode, and copy the files over,and switch back to user mode, and move the files out of the media/internal folder and so forth. &lt;br /&gt;
&lt;br /&gt;
One good way to do this is via SFTP.  If you are not sure what that is, please visit [http://en.wikipedia.org/wiki/SSH_File_Transfer_Protocol this wiki page]. &lt;br /&gt;
&lt;br /&gt;
This document assumes you know why you want sftp, and how to use it once it's on the Pre. &lt;br /&gt;
&lt;br /&gt;
Step 1: [[Portal:Accessing_Linux | Login to your Pre's Linux shell]].  You must also have Optware packages configured, as outlined [[Next_steps|here]]: &lt;br /&gt;
&lt;br /&gt;
Step 2: Set Read/Write Access:&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
sudo -i&lt;br /&gt;
mount -o remount,rw /&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Step 3: Install the needed components from ipkg-opt:&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
cd /opt/bin&lt;br /&gt;
ipkg-opt update&lt;br /&gt;
ipkg-opt install openssh-sftp-server&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Step 4: Modify the sudoers file to allow your user account to sudo sftp-server without a password:&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
visudo &lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
Once in the file, add the following line after the existing ALL line for your user - where //myusername// should be replaced with the user account that you are using to access your Pre via SSH.  The order of the lines count here :&lt;br /&gt;
&lt;br /&gt;
Example:&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
myusername ALL=(ALL) ALL&lt;br /&gt;
myusername ALL=NOPASSWD: /opt/libexec/sftp-server&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Quit and save your changes (ESC :wq)&lt;br /&gt;
&lt;br /&gt;
Step 5: Mount the Pre's file system as read-only:&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
mount -o remount,ro /&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Step 6: Reboot via one of the methods below:&lt;br /&gt;
&lt;br /&gt;
Method 1:&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
su&lt;br /&gt;
/sbin/reboot&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Method 2:&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
sudo su -l&lt;br /&gt;
reboot&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
You may be able to reboot the phone with other commands. You can hit Orange+Sym+R on your Pre's keyboard as well.&lt;br /&gt;
&lt;br /&gt;
Method 3:&lt;br /&gt;
Turn off the Pre by holding the power button until the 'Turn Off' button appears and then pressing it. Turn the Pre back on after it has turned off by holding the power button until you see the Palm logo.&lt;br /&gt;
&lt;br /&gt;
To login to the Pre using WinSCP:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
Hostname: [my pre's ip]&lt;br /&gt;
port: [my pre's port] (222 if you followed the Optware enabling instructions verbatim)&lt;br /&gt;
username and password you set&lt;br /&gt;
&lt;br /&gt;
Check 'Advanced Options' and select &amp;quot;Environment&amp;gt;SFTP&amp;quot;.&lt;br /&gt;
In the SFTP server box enter: sudo /opt/libexec/sftp-server&lt;br /&gt;
&lt;br /&gt;
Be sure to set &amp;quot;mount -o remount,rw /&amp;quot; to write and &amp;quot;mount -o remount,ro /&amp;quot; when done. (If on Windows, do this through PuTTY. I haven't found a way to do it through WinSCP, but you can go to &amp;quot;Commands&amp;gt;Open in PuTTY&amp;quot; from the main toolbar.)&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Courtesy of jhoff80 and blakeb at PreCentral.net&lt;/div&gt;</summary>
		<author><name>UltraBlack</name></author>
	</entry>
	<entry>
		<id>http://wiki.webos-internals.org/index.php?title=Tutorials_Linux_opt_on_loopback&amp;diff=4382</id>
		<title>Tutorials Linux opt on loopback</title>
		<link rel="alternate" type="text/html" href="http://wiki.webos-internals.org/index.php?title=Tutorials_Linux_opt_on_loopback&amp;diff=4382"/>
		<updated>2009-08-15T07:01:26Z</updated>

		<summary type="html">&lt;p&gt;UltraBlack: /* Workaround for USB Drive/Media Sync: Start/Stop and Mount/Unmount Script */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= Background &amp;amp; Purpose =&lt;br /&gt;
&lt;br /&gt;
The Palm Pre's 8GB HD is configured with three partitions:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;1) /dev/mmcblk0p1 defined as a Linux/PA-RISC boot partition is only 4MB&lt;br /&gt;
2) /dev/mmcblk0p2 defined as a Linux partition and is 32MB mounted as /boot&lt;br /&gt;
3) /dev/mmcblk0p3 defined as a Linux LVM partition is 7.62GB&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The /dev/mmcblk0p3 partition is a Linux Volume Group that is sliced into six Logical Volumes:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;/dev/store/root mounted on / (root) 456 MB&lt;br /&gt;
/dev/store/var mounted on /var 256MB&lt;br /&gt;
/dev/store/update mounts on /var/lib/update 56MB (not mounted)&lt;br /&gt;
/dev/store/log/ mounted on /var/log 40MB&lt;br /&gt;
/dev/store/media mounted /media/internal 6.69GB&lt;br /&gt;
/dev/store/swap Linux swap 128MB&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
It has been observed that if /var or / (root) usage is greater than or equal to 90% than the FAILED_NOT_ENOUGH_INSTALL_SPACE error is generated. &amp;quot;Builtin&amp;quot; applications reside on the root file system in /usr/palm/applications. Downloaded apps and those installed with palm-install reside on the /var file system in /var/usr/palm/applications. Also for so-called &amp;quot;rooted&amp;quot; Pre's the Optware Linux-based apps are stored in /var/opt.&lt;br /&gt;
&lt;br /&gt;
One fix for a rooted Pre is to create a virtual Linux file system using a portion of the space allocated to /media/internal using a procedure similar to this one:&lt;br /&gt;
&lt;br /&gt;
[http://www.linux.org/docs/ldp/howto/Cryptoloop-HOWTO/filebased.html Linux Online - Using a file instead of a partition]&lt;br /&gt;
&lt;br /&gt;
Then mount the virtual file system on /opt vs binding /var/opt to /opt. Then relocating the files/directories under /var/opt to the new virtual file system.&lt;br /&gt;
&lt;br /&gt;
'''NOTE:''' The /dev/store/update is mounted when you run the Update process. It would seem that the updates are stored here (at least some of them) prior to installation.&lt;br /&gt;
&lt;br /&gt;
= Requirements =&lt;br /&gt;
&lt;br /&gt;
You must have access to the Linux shell to perform this process. It is assumed that you followed the procedure to install Optware apps in /var/opt and linked /var/opt to /opt with the &amp;quot;mount -o bind /var/opt /opt&amp;quot; command and there is an equivalent entry in the /etc/fstab file.&lt;br /&gt;
&lt;br /&gt;
=Procedure for Creating a Linux Virtual File System=&lt;br /&gt;
&lt;br /&gt;
Do '''NOT''' do this if you want to connect your Pre to your computer in the USB Drive or Media Sync modes.&lt;br /&gt;
&lt;br /&gt;
The following commands will move all of your Optware packages to an ext3 1GB loopback image that resides on /media/internal.&lt;br /&gt;
&amp;lt;source lang=&amp;quot;bash&amp;quot;&amp;gt;&lt;br /&gt;
# Create a directory on the USB drive portion to hold the virtual file system&lt;br /&gt;
mkdir /media/internal/vfs&lt;br /&gt;
&lt;br /&gt;
#  Create a 1GB file (adjust size (bs*count) as needed, the minimum size should be 256MB)&lt;br /&gt;
dd if=/dev/zero of=/media/internal/vfs/optware.img bs=1024 count=1024k&lt;br /&gt;
&lt;br /&gt;
# Create linux ext3 file system&lt;br /&gt;
mkfs.ext3 -F /media/internal/vfs/optware.img&lt;br /&gt;
&lt;br /&gt;
# Create a temporary mount point&lt;br /&gt;
mkdir /tmp/opt&lt;br /&gt;
&lt;br /&gt;
# Mount newly created virtual file system&lt;br /&gt;
mount -o loop /media/internal/vfs/optware.img  /tmp/opt&lt;br /&gt;
&lt;br /&gt;
# Populate new virtual file system.&lt;br /&gt;
# Must be in the source directory.&lt;br /&gt;
cd /opt&lt;br /&gt;
tar cvf - . |  (cd /tmp/opt; tar xf -)&lt;br /&gt;
cd /&lt;br /&gt;
&lt;br /&gt;
# Unmount virtual file system&lt;br /&gt;
umount /tmp/opt&lt;br /&gt;
&lt;br /&gt;
# Unbind /var/opt from /opt&lt;br /&gt;
umount /opt&lt;br /&gt;
&lt;br /&gt;
# If no errors, mount virtual file system on /opt&lt;br /&gt;
# otherwise skip&lt;br /&gt;
mount -o loop /media/internal/vfs/optware.img /opt&lt;br /&gt;
&lt;br /&gt;
# Add the following line to /etc/fstab to automount (without the #).&lt;br /&gt;
# /media/internal/vfs/optware.img /opt ext3 loop,noatime 1 2&lt;br /&gt;
#&lt;br /&gt;
# Comment out the /var/opt entry, should be similar to next line&lt;br /&gt;
#/var/opt /opt bind defaults,bind 0 0&lt;br /&gt;
#&lt;br /&gt;
# reboot your phone, if error noted when attempting to unmount /opt&lt;br /&gt;
reboot&lt;br /&gt;
&lt;br /&gt;
# If no errors noted with the Optware apps, &lt;br /&gt;
# remove files/directories from /var/opt&lt;br /&gt;
rm -r /var/opt&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Caveats =&lt;br /&gt;
&lt;br /&gt;
Currently this procedure will disable USB Drive and Media Sync modes.&lt;br /&gt;
&lt;br /&gt;
A method to safely unmount Virtual file system when selecting USB Drive and Media Sync modes is under development.&lt;br /&gt;
&lt;br /&gt;
See the start/stop script below for now. The script needs to be run from a non-ssh terminal (ie novaproxy or novaterm). In the future this should be wrapped inside a homebrew GUI.&lt;br /&gt;
&lt;br /&gt;
== Caveat Workaround: Mount/Unmount Script ==&lt;br /&gt;
&lt;br /&gt;
This script will start/stop (mount/unmount) the virtual file system, thus functioning as a work-a-round to allow using the Palm Pre's USB Drive and Media Sync modes. It is a work in progress and needs to be bullet-proofed. Ideally it should be wrapped around a WebOS GUI app—we are working on this. This script should be saved to a file (i.e. /home/root/vfs), made executable (i.e. chmod 750 /home/root/vfs and then run (i.e. with /home/root/vfs on or /home/root/vfs off). '''Do not save the script to an /opt path.''' Make sure you're running the script to toggle the virtual file system on or off when /media/internal is not mounted as a USB drive and the Media Sync mode is not enabled, otherwise the script will fail.&lt;br /&gt;
&lt;br /&gt;
=== Note: We need this put in a Java service ===&lt;br /&gt;
&lt;br /&gt;
''This means we need to translate it to Java the Pre can understand! This will be for front-end GUI to toggle the VFS. Please [http://gitorious.org/webos-internals/applications/trees/master/optloopservice look into this if you have the knowledge, on Gitorious]. The source is there.''&lt;br /&gt;
&lt;br /&gt;
==== The Script Itself ====&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=&amp;quot;bash&amp;quot;&amp;gt;&lt;br /&gt;
#!/bin/sh&lt;br /&gt;
#&lt;br /&gt;
# List of Optware applications to start/stop&lt;br /&gt;
# in conjunction with mounting/unmounting VFS.&lt;br /&gt;
#&lt;br /&gt;
# Check to make sure /media/internal is&lt;br /&gt;
# mounted&lt;br /&gt;
FSINT=`/bin/df|/bin/grep &amp;quot;/dev/mapper/store-media&amp;quot;`&lt;br /&gt;
if [ &amp;quot;$FSINT&amp;quot; = &amp;quot;&amp;quot; ]&lt;br /&gt;
then&lt;br /&gt;
 echo &amp;quot;USB Drive not mounted. Exiting&amp;quot;&lt;br /&gt;
 exit 1&lt;br /&gt;
fi&lt;br /&gt;
&lt;br /&gt;
# OpenSSH and Dropbear are most common.&lt;br /&gt;
# Edit to suit environment.&lt;br /&gt;
APPS=&amp;quot;optware-openssh optware-dropbear&amp;quot;&lt;br /&gt;
&lt;br /&gt;
# An entry in /etc/fstab must exist for the VFS&lt;br /&gt;
# Grab and parse entry&lt;br /&gt;
FSVFS=`/bin/grep &amp;quot;/opt&amp;quot; /etc/fstab|grep loop`&lt;br /&gt;
if [ &amp;quot;$FSVFS&amp;quot; != &amp;quot;&amp;quot; ]&lt;br /&gt;
then&lt;br /&gt;
 # Complete FileName of VFS to mount/unmount&lt;br /&gt;
 LVFSFN=`echo $FSVFS|/usr/bin/awk '{print $1}'`&lt;br /&gt;
 # VFS Mount Point (ie /opt)&lt;br /&gt;
 LVFSMP=`echo $FSVFS|/usr/bin/awk '{print $2}'`&lt;br /&gt;
 # VFS file system Type (ie ext3)&lt;br /&gt;
 LVFSTP=`echo $FSVFS|/usr/bin/awk '{print $3}'`&lt;br /&gt;
else&lt;br /&gt;
 echo &amp;quot;**** No /etc/fstab entry&amp;quot;&lt;br /&gt;
 exit 1&lt;br /&gt;
fi&lt;br /&gt;
&lt;br /&gt;
# Determine if VFS is mounted&lt;br /&gt;
VFSMTD=`/bin/df|/bin/grep &amp;quot;$LVFSMP&amp;quot;|/bin/grep &amp;quot;^/dev/loop&amp;quot;`&lt;br /&gt;
if [ &amp;quot;$VFSMTD&amp;quot; != &amp;quot;&amp;quot; ]&lt;br /&gt;
then&lt;br /&gt;
 # Loopback device associated with VFS (ie /dev/loop0)&lt;br /&gt;
 LVFSDV=`echo $VFSMTD|/usr/bin/awk '{print $1}'`&lt;br /&gt;
fi&lt;br /&gt;
&lt;br /&gt;
case $1 in&lt;br /&gt;
  &amp;quot;on&amp;quot; )&lt;br /&gt;
        if [ -e &amp;quot;$LVFSFN&amp;quot; -a -d &amp;quot;$LVFSMP&amp;quot; -a &amp;quot;$VFSMTD&amp;quot; = &amp;quot;&amp;quot; ]&lt;br /&gt;
        then&lt;br /&gt;
         echo '**** Mounting Linux VFS'&lt;br /&gt;
         /bin/mount &amp;quot;$LVFSFN&amp;quot;&lt;br /&gt;
         echo '**** Starting Applications'&lt;br /&gt;
         for x in $APPS&lt;br /&gt;
           do&lt;br /&gt;
            if [ -f /etc/event.d/&amp;quot;$x&amp;quot; ]&lt;br /&gt;
            then&lt;br /&gt;
            /sbin/initctl start &amp;quot;$x&amp;quot;&lt;br /&gt;
            fi&lt;br /&gt;
         done&lt;br /&gt;
         echo '**** Linux VFS Enabled'&lt;br /&gt;
        else&lt;br /&gt;
         echo '**** Error mounting VFS'&lt;br /&gt;
         exit 1&lt;br /&gt;
        fi&lt;br /&gt;
        ;;&lt;br /&gt;
  &amp;quot;off&amp;quot; )&lt;br /&gt;
        if [ &amp;quot;$VFSMTD&amp;quot; != &amp;quot;&amp;quot; -a &amp;quot;$LVFSDV&amp;quot; != &amp;quot;&amp;quot; ]&lt;br /&gt;
        then&lt;br /&gt;
         echo '**** Stopping Applications'&lt;br /&gt;
         for x in $APPS&lt;br /&gt;
           do&lt;br /&gt;
            if [ -f /etc/event.d/&amp;quot;$x&amp;quot; ]&lt;br /&gt;
            then&lt;br /&gt;
            /sbin/initctl stop &amp;quot;$x&amp;quot;&lt;br /&gt;
            fi&lt;br /&gt;
         done&lt;br /&gt;
         echo '**** Unmounting Linux VFS'&lt;br /&gt;
         /bin/umount &amp;quot;$LVFSMP&amp;quot;&lt;br /&gt;
         # Work-a-round to disassociate VFS from loopback device&lt;br /&gt;
         /sbin/losetup -d $LVFSDV&lt;br /&gt;
         echo '**** Linux VFS Disabled'&lt;br /&gt;
        else&lt;br /&gt;
         echo '**** Error unmounting VFS'&lt;br /&gt;
         exit 1&lt;br /&gt;
        fi&lt;br /&gt;
        ;;&lt;br /&gt;
  * )&lt;br /&gt;
        echo &amp;quot;Usage: `/usr/bin/basename $0` on|off&amp;quot;&lt;br /&gt;
        ;;&lt;br /&gt;
esac&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Credits =&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
PuffTheMagic - Devised the initial process&lt;br /&gt;
1lnxraider   - Expanded, modified, &amp;amp; published tutorial&lt;br /&gt;
             - Helped ultraBlack troubleshoot toggle script&lt;br /&gt;
             - Confirmed caveat&lt;br /&gt;
ultraBlack   - Found &amp;amp; had confirmed the major caveat which disables Media Sync &amp;amp; USB modes&lt;br /&gt;
             - Devised plan for front-end 'Toggle VFS' GUI, envisioning it as a way to also easily create it&lt;br /&gt;
rwhitby      - Provided skeleton &amp;amp; basic methods for front-end GUI's Opt Loop Service&lt;br /&gt;
NetWhiz      - Gave additional warning that this process disables Media Sync and USB modes&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;/div&gt;</summary>
		<author><name>UltraBlack</name></author>
	</entry>
	<entry>
		<id>http://wiki.webos-internals.org/index.php?title=Tutorials_Linux_opt_on_loopback&amp;diff=4380</id>
		<title>Tutorials Linux opt on loopback</title>
		<link rel="alternate" type="text/html" href="http://wiki.webos-internals.org/index.php?title=Tutorials_Linux_opt_on_loopback&amp;diff=4380"/>
		<updated>2009-08-15T07:00:52Z</updated>

		<summary type="html">&lt;p&gt;UltraBlack: /* Workaround for USB Drive/Media Sync: Start/Stop and Mount/Unmount Script */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= Background &amp;amp; Purpose =&lt;br /&gt;
&lt;br /&gt;
The Palm Pre's 8GB HD is configured with three partitions:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;1) /dev/mmcblk0p1 defined as a Linux/PA-RISC boot partition is only 4MB&lt;br /&gt;
2) /dev/mmcblk0p2 defined as a Linux partition and is 32MB mounted as /boot&lt;br /&gt;
3) /dev/mmcblk0p3 defined as a Linux LVM partition is 7.62GB&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The /dev/mmcblk0p3 partition is a Linux Volume Group that is sliced into six Logical Volumes:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;/dev/store/root mounted on / (root) 456 MB&lt;br /&gt;
/dev/store/var mounted on /var 256MB&lt;br /&gt;
/dev/store/update mounts on /var/lib/update 56MB (not mounted)&lt;br /&gt;
/dev/store/log/ mounted on /var/log 40MB&lt;br /&gt;
/dev/store/media mounted /media/internal 6.69GB&lt;br /&gt;
/dev/store/swap Linux swap 128MB&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
It has been observed that if /var or / (root) usage is greater than or equal to 90% than the FAILED_NOT_ENOUGH_INSTALL_SPACE error is generated. &amp;quot;Builtin&amp;quot; applications reside on the root file system in /usr/palm/applications. Downloaded apps and those installed with palm-install reside on the /var file system in /var/usr/palm/applications. Also for so-called &amp;quot;rooted&amp;quot; Pre's the Optware Linux-based apps are stored in /var/opt.&lt;br /&gt;
&lt;br /&gt;
One fix for a rooted Pre is to create a virtual Linux file system using a portion of the space allocated to /media/internal using a procedure similar to this one:&lt;br /&gt;
&lt;br /&gt;
[http://www.linux.org/docs/ldp/howto/Cryptoloop-HOWTO/filebased.html Linux Online - Using a file instead of a partition]&lt;br /&gt;
&lt;br /&gt;
Then mount the virtual file system on /opt vs binding /var/opt to /opt. Then relocating the files/directories under /var/opt to the new virtual file system.&lt;br /&gt;
&lt;br /&gt;
'''NOTE:''' The /dev/store/update is mounted when you run the Update process. It would seem that the updates are stored here (at least some of them) prior to installation.&lt;br /&gt;
&lt;br /&gt;
= Requirements =&lt;br /&gt;
&lt;br /&gt;
You must have access to the Linux shell to perform this process. It is assumed that you followed the procedure to install Optware apps in /var/opt and linked /var/opt to /opt with the &amp;quot;mount -o bind /var/opt /opt&amp;quot; command and there is an equivalent entry in the /etc/fstab file.&lt;br /&gt;
&lt;br /&gt;
=Procedure for Creating a Linux Virtual File System=&lt;br /&gt;
&lt;br /&gt;
Do '''NOT''' do this if you want to connect your Pre to your computer in the USB Drive or Media Sync modes.&lt;br /&gt;
&lt;br /&gt;
The following commands will move all of your Optware packages to an ext3 1GB loopback image that resides on /media/internal.&lt;br /&gt;
&amp;lt;source lang=&amp;quot;bash&amp;quot;&amp;gt;&lt;br /&gt;
# Create a directory on the USB drive portion to hold the virtual file system&lt;br /&gt;
mkdir /media/internal/vfs&lt;br /&gt;
&lt;br /&gt;
#  Create a 1GB file (adjust size (bs*count) as needed, the minimum size should be 256MB)&lt;br /&gt;
dd if=/dev/zero of=/media/internal/vfs/optware.img bs=1024 count=1024k&lt;br /&gt;
&lt;br /&gt;
# Create linux ext3 file system&lt;br /&gt;
mkfs.ext3 -F /media/internal/vfs/optware.img&lt;br /&gt;
&lt;br /&gt;
# Create a temporary mount point&lt;br /&gt;
mkdir /tmp/opt&lt;br /&gt;
&lt;br /&gt;
# Mount newly created virtual file system&lt;br /&gt;
mount -o loop /media/internal/vfs/optware.img  /tmp/opt&lt;br /&gt;
&lt;br /&gt;
# Populate new virtual file system.&lt;br /&gt;
# Must be in the source directory.&lt;br /&gt;
cd /opt&lt;br /&gt;
tar cvf - . |  (cd /tmp/opt; tar xf -)&lt;br /&gt;
cd /&lt;br /&gt;
&lt;br /&gt;
# Unmount virtual file system&lt;br /&gt;
umount /tmp/opt&lt;br /&gt;
&lt;br /&gt;
# Unbind /var/opt from /opt&lt;br /&gt;
umount /opt&lt;br /&gt;
&lt;br /&gt;
# If no errors, mount virtual file system on /opt&lt;br /&gt;
# otherwise skip&lt;br /&gt;
mount -o loop /media/internal/vfs/optware.img /opt&lt;br /&gt;
&lt;br /&gt;
# Add the following line to /etc/fstab to automount (without the #).&lt;br /&gt;
# /media/internal/vfs/optware.img /opt ext3 loop,noatime 1 2&lt;br /&gt;
#&lt;br /&gt;
# Comment out the /var/opt entry, should be similar to next line&lt;br /&gt;
#/var/opt /opt bind defaults,bind 0 0&lt;br /&gt;
#&lt;br /&gt;
# reboot your phone, if error noted when attempting to unmount /opt&lt;br /&gt;
reboot&lt;br /&gt;
&lt;br /&gt;
# If no errors noted with the Optware apps, &lt;br /&gt;
# remove files/directories from /var/opt&lt;br /&gt;
rm -r /var/opt&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Caveats =&lt;br /&gt;
&lt;br /&gt;
Currently this procedure will disable USB Drive and Media Sync modes.&lt;br /&gt;
&lt;br /&gt;
A method to safely unmount Virtual file system when selecting USB Drive and Media Sync modes is under development.&lt;br /&gt;
&lt;br /&gt;
See the start/stop script below for now. The script needs to be run from a non-ssh terminal (ie novaproxy or novaterm). In the future this should be wrapped inside a homebrew GUI.&lt;br /&gt;
&lt;br /&gt;
== Workaround for USB Drive/Media Sync: Start/Stop and Mount/Unmount Script ==&lt;br /&gt;
&lt;br /&gt;
This script will start/stop (mount/unmount) the virtual file system, thus functioning as a work-a-round to allow using the Palm Pre's USB Drive and Media Sync modes. It is a work in progress and needs to be bullet-proofed. Ideally it should be wrapped around a WebOS GUI app—we are working on this. This script should be saved to a file (i.e. /home/root/vfs), made executable (i.e. chmod 750 /home/root/vfs and then run (i.e. with /home/root/vfs on or /home/root/vfs off). '''Do not save the script to an /opt path.''' Make sure you're running the script to toggle the virtual file system on or off when /media/internal is not mounted as a USB drive and the Media Sync mode is not enabled, otherwise the script will fail.&lt;br /&gt;
&lt;br /&gt;
=== Note: We need this put in a Java service ===&lt;br /&gt;
&lt;br /&gt;
''This means we need to translate it to Java the Pre can understand! This will be for front-end GUI to toggle the VFS. Please [http://gitorious.org/webos-internals/applications/trees/master/optloopservice look into this if you have the knowledge, on Gitorious]. The source is there.''&lt;br /&gt;
&lt;br /&gt;
==== The Script Itself ====&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=&amp;quot;bash&amp;quot;&amp;gt;&lt;br /&gt;
#!/bin/sh&lt;br /&gt;
#&lt;br /&gt;
# List of Optware applications to start/stop&lt;br /&gt;
# in conjunction with mounting/unmounting VFS.&lt;br /&gt;
#&lt;br /&gt;
# Check to make sure /media/internal is&lt;br /&gt;
# mounted&lt;br /&gt;
FSINT=`/bin/df|/bin/grep &amp;quot;/dev/mapper/store-media&amp;quot;`&lt;br /&gt;
if [ &amp;quot;$FSINT&amp;quot; = &amp;quot;&amp;quot; ]&lt;br /&gt;
then&lt;br /&gt;
 echo &amp;quot;USB Drive not mounted. Exiting&amp;quot;&lt;br /&gt;
 exit 1&lt;br /&gt;
fi&lt;br /&gt;
&lt;br /&gt;
# OpenSSH and Dropbear are most common.&lt;br /&gt;
# Edit to suit environment.&lt;br /&gt;
APPS=&amp;quot;optware-openssh optware-dropbear&amp;quot;&lt;br /&gt;
&lt;br /&gt;
# An entry in /etc/fstab must exist for the VFS&lt;br /&gt;
# Grab and parse entry&lt;br /&gt;
FSVFS=`/bin/grep &amp;quot;/opt&amp;quot; /etc/fstab|grep loop`&lt;br /&gt;
if [ &amp;quot;$FSVFS&amp;quot; != &amp;quot;&amp;quot; ]&lt;br /&gt;
then&lt;br /&gt;
 # Complete FileName of VFS to mount/unmount&lt;br /&gt;
 LVFSFN=`echo $FSVFS|/usr/bin/awk '{print $1}'`&lt;br /&gt;
 # VFS Mount Point (ie /opt)&lt;br /&gt;
 LVFSMP=`echo $FSVFS|/usr/bin/awk '{print $2}'`&lt;br /&gt;
 # VFS file system Type (ie ext3)&lt;br /&gt;
 LVFSTP=`echo $FSVFS|/usr/bin/awk '{print $3}'`&lt;br /&gt;
else&lt;br /&gt;
 echo &amp;quot;**** No /etc/fstab entry&amp;quot;&lt;br /&gt;
 exit 1&lt;br /&gt;
fi&lt;br /&gt;
&lt;br /&gt;
# Determine if VFS is mounted&lt;br /&gt;
VFSMTD=`/bin/df|/bin/grep &amp;quot;$LVFSMP&amp;quot;|/bin/grep &amp;quot;^/dev/loop&amp;quot;`&lt;br /&gt;
if [ &amp;quot;$VFSMTD&amp;quot; != &amp;quot;&amp;quot; ]&lt;br /&gt;
then&lt;br /&gt;
 # Loopback device associated with VFS (ie /dev/loop0)&lt;br /&gt;
 LVFSDV=`echo $VFSMTD|/usr/bin/awk '{print $1}'`&lt;br /&gt;
fi&lt;br /&gt;
&lt;br /&gt;
case $1 in&lt;br /&gt;
  &amp;quot;on&amp;quot; )&lt;br /&gt;
        if [ -e &amp;quot;$LVFSFN&amp;quot; -a -d &amp;quot;$LVFSMP&amp;quot; -a &amp;quot;$VFSMTD&amp;quot; = &amp;quot;&amp;quot; ]&lt;br /&gt;
        then&lt;br /&gt;
         echo '**** Mounting Linux VFS'&lt;br /&gt;
         /bin/mount &amp;quot;$LVFSFN&amp;quot;&lt;br /&gt;
         echo '**** Starting Applications'&lt;br /&gt;
         for x in $APPS&lt;br /&gt;
           do&lt;br /&gt;
            if [ -f /etc/event.d/&amp;quot;$x&amp;quot; ]&lt;br /&gt;
            then&lt;br /&gt;
            /sbin/initctl start &amp;quot;$x&amp;quot;&lt;br /&gt;
            fi&lt;br /&gt;
         done&lt;br /&gt;
         echo '**** Linux VFS Enabled'&lt;br /&gt;
        else&lt;br /&gt;
         echo '**** Error mounting VFS'&lt;br /&gt;
         exit 1&lt;br /&gt;
        fi&lt;br /&gt;
        ;;&lt;br /&gt;
  &amp;quot;off&amp;quot; )&lt;br /&gt;
        if [ &amp;quot;$VFSMTD&amp;quot; != &amp;quot;&amp;quot; -a &amp;quot;$LVFSDV&amp;quot; != &amp;quot;&amp;quot; ]&lt;br /&gt;
        then&lt;br /&gt;
         echo '**** Stopping Applications'&lt;br /&gt;
         for x in $APPS&lt;br /&gt;
           do&lt;br /&gt;
            if [ -f /etc/event.d/&amp;quot;$x&amp;quot; ]&lt;br /&gt;
            then&lt;br /&gt;
            /sbin/initctl stop &amp;quot;$x&amp;quot;&lt;br /&gt;
            fi&lt;br /&gt;
         done&lt;br /&gt;
         echo '**** Unmounting Linux VFS'&lt;br /&gt;
         /bin/umount &amp;quot;$LVFSMP&amp;quot;&lt;br /&gt;
         # Work-a-round to disassociate VFS from loopback device&lt;br /&gt;
         /sbin/losetup -d $LVFSDV&lt;br /&gt;
         echo '**** Linux VFS Disabled'&lt;br /&gt;
        else&lt;br /&gt;
         echo '**** Error unmounting VFS'&lt;br /&gt;
         exit 1&lt;br /&gt;
        fi&lt;br /&gt;
        ;;&lt;br /&gt;
  * )&lt;br /&gt;
        echo &amp;quot;Usage: `/usr/bin/basename $0` on|off&amp;quot;&lt;br /&gt;
        ;;&lt;br /&gt;
esac&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Credits =&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
PuffTheMagic - Devised the initial process&lt;br /&gt;
1lnxraider   - Expanded, modified, &amp;amp; published tutorial&lt;br /&gt;
             - Helped ultraBlack troubleshoot toggle script&lt;br /&gt;
             - Confirmed caveat&lt;br /&gt;
ultraBlack   - Found &amp;amp; had confirmed the major caveat which disables Media Sync &amp;amp; USB modes&lt;br /&gt;
             - Devised plan for front-end 'Toggle VFS' GUI, envisioning it as a way to also easily create it&lt;br /&gt;
rwhitby      - Provided skeleton &amp;amp; basic methods for front-end GUI's Opt Loop Service&lt;br /&gt;
NetWhiz      - Gave additional warning that this process disables Media Sync and USB modes&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;/div&gt;</summary>
		<author><name>UltraBlack</name></author>
	</entry>
	<entry>
		<id>http://wiki.webos-internals.org/index.php?title=Tutorials_Linux_opt_on_loopback&amp;diff=4379</id>
		<title>Tutorials Linux opt on loopback</title>
		<link rel="alternate" type="text/html" href="http://wiki.webos-internals.org/index.php?title=Tutorials_Linux_opt_on_loopback&amp;diff=4379"/>
		<updated>2009-08-15T06:55:47Z</updated>

		<summary type="html">&lt;p&gt;UltraBlack: /* Credits */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= Background &amp;amp; Purpose =&lt;br /&gt;
&lt;br /&gt;
The Palm Pre's 8GB HD is configured with three partitions:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;1) /dev/mmcblk0p1 defined as a Linux/PA-RISC boot partition is only 4MB&lt;br /&gt;
2) /dev/mmcblk0p2 defined as a Linux partition and is 32MB mounted as /boot&lt;br /&gt;
3) /dev/mmcblk0p3 defined as a Linux LVM partition is 7.62GB&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The /dev/mmcblk0p3 partition is a Linux Volume Group that is sliced into six Logical Volumes:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;/dev/store/root mounted on / (root) 456 MB&lt;br /&gt;
/dev/store/var mounted on /var 256MB&lt;br /&gt;
/dev/store/update mounts on /var/lib/update 56MB (not mounted)&lt;br /&gt;
/dev/store/log/ mounted on /var/log 40MB&lt;br /&gt;
/dev/store/media mounted /media/internal 6.69GB&lt;br /&gt;
/dev/store/swap Linux swap 128MB&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
It has been observed that if /var or / (root) usage is greater than or equal to 90% than the FAILED_NOT_ENOUGH_INSTALL_SPACE error is generated. &amp;quot;Builtin&amp;quot; applications reside on the root file system in /usr/palm/applications. Downloaded apps and those installed with palm-install reside on the /var file system in /var/usr/palm/applications. Also for so-called &amp;quot;rooted&amp;quot; Pre's the Optware Linux-based apps are stored in /var/opt.&lt;br /&gt;
&lt;br /&gt;
One fix for a rooted Pre is to create a virtual Linux file system using a portion of the space allocated to /media/internal using a procedure similar to this one:&lt;br /&gt;
&lt;br /&gt;
[http://www.linux.org/docs/ldp/howto/Cryptoloop-HOWTO/filebased.html Linux Online - Using a file instead of a partition]&lt;br /&gt;
&lt;br /&gt;
Then mount the virtual file system on /opt vs binding /var/opt to /opt. Then relocating the files/directories under /var/opt to the new virtual file system.&lt;br /&gt;
&lt;br /&gt;
'''NOTE:''' The /dev/store/update is mounted when you run the Update process. It would seem that the updates are stored here (at least some of them) prior to installation.&lt;br /&gt;
&lt;br /&gt;
= Requirements =&lt;br /&gt;
&lt;br /&gt;
You must have access to the Linux shell to perform this process. It is assumed that you followed the procedure to install Optware apps in /var/opt and linked /var/opt to /opt with the &amp;quot;mount -o bind /var/opt /opt&amp;quot; command and there is an equivalent entry in the /etc/fstab file.&lt;br /&gt;
&lt;br /&gt;
=Procedure for Creating a Linux Virtual File System=&lt;br /&gt;
&lt;br /&gt;
Do '''NOT''' do this if you want to connect your Pre to your computer in the USB Drive or Media Sync modes.&lt;br /&gt;
&lt;br /&gt;
The following commands will move all of your Optware packages to an ext3 1GB loopback image that resides on /media/internal.&lt;br /&gt;
&amp;lt;source lang=&amp;quot;bash&amp;quot;&amp;gt;&lt;br /&gt;
# Create a directory on the USB drive portion to hold the virtual file system&lt;br /&gt;
mkdir /media/internal/vfs&lt;br /&gt;
&lt;br /&gt;
#  Create a 1GB file (adjust size (bs*count) as needed, the minimum size should be 256MB)&lt;br /&gt;
dd if=/dev/zero of=/media/internal/vfs/optware.img bs=1024 count=1024k&lt;br /&gt;
&lt;br /&gt;
# Create linux ext3 file system&lt;br /&gt;
mkfs.ext3 -F /media/internal/vfs/optware.img&lt;br /&gt;
&lt;br /&gt;
# Create a temporary mount point&lt;br /&gt;
mkdir /tmp/opt&lt;br /&gt;
&lt;br /&gt;
# Mount newly created virtual file system&lt;br /&gt;
mount -o loop /media/internal/vfs/optware.img  /tmp/opt&lt;br /&gt;
&lt;br /&gt;
# Populate new virtual file system.&lt;br /&gt;
# Must be in the source directory.&lt;br /&gt;
cd /opt&lt;br /&gt;
tar cvf - . |  (cd /tmp/opt; tar xf -)&lt;br /&gt;
cd /&lt;br /&gt;
&lt;br /&gt;
# Unmount virtual file system&lt;br /&gt;
umount /tmp/opt&lt;br /&gt;
&lt;br /&gt;
# Unbind /var/opt from /opt&lt;br /&gt;
umount /opt&lt;br /&gt;
&lt;br /&gt;
# If no errors, mount virtual file system on /opt&lt;br /&gt;
# otherwise skip&lt;br /&gt;
mount -o loop /media/internal/vfs/optware.img /opt&lt;br /&gt;
&lt;br /&gt;
# Add the following line to /etc/fstab to automount (without the #).&lt;br /&gt;
# /media/internal/vfs/optware.img /opt ext3 loop,noatime 1 2&lt;br /&gt;
#&lt;br /&gt;
# Comment out the /var/opt entry, should be similar to next line&lt;br /&gt;
#/var/opt /opt bind defaults,bind 0 0&lt;br /&gt;
#&lt;br /&gt;
# reboot your phone, if error noted when attempting to unmount /opt&lt;br /&gt;
reboot&lt;br /&gt;
&lt;br /&gt;
# If no errors noted with the Optware apps, &lt;br /&gt;
# remove files/directories from /var/opt&lt;br /&gt;
rm -r /var/opt&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Caveats =&lt;br /&gt;
&lt;br /&gt;
Currently this procedure will disable USB Drive and Media Sync modes.&lt;br /&gt;
&lt;br /&gt;
A method to safely unmount Virtual file system when selecting USB Drive and Media Sync modes is under development.&lt;br /&gt;
&lt;br /&gt;
See the start/stop script below for now. The script needs to be run from a non-ssh terminal (ie novaproxy or novaterm). In the future this should be wrapped inside a homebrew GUI.&lt;br /&gt;
&lt;br /&gt;
== Workaround for USB Drive/Media Sync: Start/Stop and Mount/Unmount Script ==&lt;br /&gt;
&lt;br /&gt;
This script will start/stop (mount/unmount) the virtual file system, thus functioning as a work-a-round to allow using the Palm Pre's USB Drive and Media Sync modes. It is a work in progress and needs to be bullet-proofed. Ideally it should be wrapped around a WebOS GUI app—we are working on this. This script should be saved to a file (i.e. /home/root/vfs), made executable (i.e. chmod 750 /home/root/vfs and then run (i.e. with /home/root/vfs on or /home/root/vfs off). '''Do not save the script to an /opt path.''' Make sure you're running the script to toggle the virtual file system on or off when /media/internal is not mounted as a USB drive and the Media Sync mode is not enabled, otherwise the script will fail.&lt;br /&gt;
&lt;br /&gt;
==== Note: ''We need this put in a Java service, which means we need to translate it to Java that the Pre can understand! This will be for the app that is used as a front-end GUI to toggle the the VFS. Please [http://gitorious.org/webos-internals/applications/trees/master/optloopservice look into this if you have the knowledge, on Gitorious]. The source is there.'' ====&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=&amp;quot;bash&amp;quot;&amp;gt;&lt;br /&gt;
#!/bin/sh&lt;br /&gt;
#&lt;br /&gt;
# List of Optware applications to start/stop&lt;br /&gt;
# in conjunction with mounting/unmounting VFS.&lt;br /&gt;
#&lt;br /&gt;
# Check to make sure /media/internal is&lt;br /&gt;
# mounted&lt;br /&gt;
FSINT=`/bin/df|/bin/grep &amp;quot;/dev/mapper/store-media&amp;quot;`&lt;br /&gt;
if [ &amp;quot;$FSINT&amp;quot; = &amp;quot;&amp;quot; ]&lt;br /&gt;
then&lt;br /&gt;
 echo &amp;quot;USB Drive not mounted. Exiting&amp;quot;&lt;br /&gt;
 exit 1&lt;br /&gt;
fi&lt;br /&gt;
&lt;br /&gt;
# OpenSSH and Dropbear are most common.&lt;br /&gt;
# Edit to suit environment.&lt;br /&gt;
APPS=&amp;quot;optware-openssh optware-dropbear&amp;quot;&lt;br /&gt;
&lt;br /&gt;
# An entry in /etc/fstab must exist for the VFS&lt;br /&gt;
# Grab and parse entry&lt;br /&gt;
FSVFS=`/bin/grep &amp;quot;/opt&amp;quot; /etc/fstab|grep loop`&lt;br /&gt;
if [ &amp;quot;$FSVFS&amp;quot; != &amp;quot;&amp;quot; ]&lt;br /&gt;
then&lt;br /&gt;
 # Complete FileName of VFS to mount/unmount&lt;br /&gt;
 LVFSFN=`echo $FSVFS|/usr/bin/awk '{print $1}'`&lt;br /&gt;
 # VFS Mount Point (ie /opt)&lt;br /&gt;
 LVFSMP=`echo $FSVFS|/usr/bin/awk '{print $2}'`&lt;br /&gt;
 # VFS file system Type (ie ext3)&lt;br /&gt;
 LVFSTP=`echo $FSVFS|/usr/bin/awk '{print $3}'`&lt;br /&gt;
else&lt;br /&gt;
 echo &amp;quot;**** No /etc/fstab entry&amp;quot;&lt;br /&gt;
 exit 1&lt;br /&gt;
fi&lt;br /&gt;
&lt;br /&gt;
# Determine if VFS is mounted&lt;br /&gt;
VFSMTD=`/bin/df|/bin/grep &amp;quot;$LVFSMP&amp;quot;|/bin/grep &amp;quot;^/dev/loop&amp;quot;`&lt;br /&gt;
if [ &amp;quot;$VFSMTD&amp;quot; != &amp;quot;&amp;quot; ]&lt;br /&gt;
then&lt;br /&gt;
 # Loopback device associated with VFS (ie /dev/loop0)&lt;br /&gt;
 LVFSDV=`echo $VFSMTD|/usr/bin/awk '{print $1}'`&lt;br /&gt;
fi&lt;br /&gt;
&lt;br /&gt;
case $1 in&lt;br /&gt;
  &amp;quot;on&amp;quot; )&lt;br /&gt;
        if [ -e &amp;quot;$LVFSFN&amp;quot; -a -d &amp;quot;$LVFSMP&amp;quot; -a &amp;quot;$VFSMTD&amp;quot; = &amp;quot;&amp;quot; ]&lt;br /&gt;
        then&lt;br /&gt;
         echo '**** Mounting Linux VFS'&lt;br /&gt;
         /bin/mount &amp;quot;$LVFSFN&amp;quot;&lt;br /&gt;
         echo '**** Starting Applications'&lt;br /&gt;
         for x in $APPS&lt;br /&gt;
           do&lt;br /&gt;
            if [ -f /etc/event.d/&amp;quot;$x&amp;quot; ]&lt;br /&gt;
            then&lt;br /&gt;
            /sbin/initctl start &amp;quot;$x&amp;quot;&lt;br /&gt;
            fi&lt;br /&gt;
         done&lt;br /&gt;
         echo '**** Linux VFS Enabled'&lt;br /&gt;
        else&lt;br /&gt;
         echo '**** Error mounting VFS'&lt;br /&gt;
         exit 1&lt;br /&gt;
        fi&lt;br /&gt;
        ;;&lt;br /&gt;
  &amp;quot;off&amp;quot; )&lt;br /&gt;
        if [ &amp;quot;$VFSMTD&amp;quot; != &amp;quot;&amp;quot; -a &amp;quot;$LVFSDV&amp;quot; != &amp;quot;&amp;quot; ]&lt;br /&gt;
        then&lt;br /&gt;
         echo '**** Stopping Applications'&lt;br /&gt;
         for x in $APPS&lt;br /&gt;
           do&lt;br /&gt;
            if [ -f /etc/event.d/&amp;quot;$x&amp;quot; ]&lt;br /&gt;
            then&lt;br /&gt;
            /sbin/initctl stop &amp;quot;$x&amp;quot;&lt;br /&gt;
            fi&lt;br /&gt;
         done&lt;br /&gt;
         echo '**** Unmounting Linux VFS'&lt;br /&gt;
         /bin/umount &amp;quot;$LVFSMP&amp;quot;&lt;br /&gt;
         # Work-a-round to disassociate VFS from loopback device&lt;br /&gt;
         /sbin/losetup -d $LVFSDV&lt;br /&gt;
         echo '**** Linux VFS Disabled'&lt;br /&gt;
        else&lt;br /&gt;
         echo '**** Error unmounting VFS'&lt;br /&gt;
         exit 1&lt;br /&gt;
        fi&lt;br /&gt;
        ;;&lt;br /&gt;
  * )&lt;br /&gt;
        echo &amp;quot;Usage: `/usr/bin/basename $0` on|off&amp;quot;&lt;br /&gt;
        ;;&lt;br /&gt;
esac&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Credits =&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
PuffTheMagic - Devised the initial process&lt;br /&gt;
1lnxraider   - Expanded, modified, &amp;amp; published tutorial&lt;br /&gt;
             - Helped ultraBlack troubleshoot toggle script&lt;br /&gt;
             - Confirmed caveat&lt;br /&gt;
ultraBlack   - Found &amp;amp; had confirmed the major caveat which disables Media Sync &amp;amp; USB modes&lt;br /&gt;
             - Devised plan for front-end 'Toggle VFS' GUI, envisioning it as a way to also easily create it&lt;br /&gt;
rwhitby      - Provided skeleton &amp;amp; basic methods for front-end GUI's Opt Loop Service&lt;br /&gt;
NetWhiz      - Gave additional warning that this process disables Media Sync and USB modes&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;/div&gt;</summary>
		<author><name>UltraBlack</name></author>
	</entry>
	<entry>
		<id>http://wiki.webos-internals.org/index.php?title=Tutorials_Linux_opt_on_loopback&amp;diff=4378</id>
		<title>Tutorials Linux opt on loopback</title>
		<link rel="alternate" type="text/html" href="http://wiki.webos-internals.org/index.php?title=Tutorials_Linux_opt_on_loopback&amp;diff=4378"/>
		<updated>2009-08-15T06:53:52Z</updated>

		<summary type="html">&lt;p&gt;UltraBlack: /* Credits */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= Background &amp;amp; Purpose =&lt;br /&gt;
&lt;br /&gt;
The Palm Pre's 8GB HD is configured with three partitions:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;1) /dev/mmcblk0p1 defined as a Linux/PA-RISC boot partition is only 4MB&lt;br /&gt;
2) /dev/mmcblk0p2 defined as a Linux partition and is 32MB mounted as /boot&lt;br /&gt;
3) /dev/mmcblk0p3 defined as a Linux LVM partition is 7.62GB&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The /dev/mmcblk0p3 partition is a Linux Volume Group that is sliced into six Logical Volumes:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;/dev/store/root mounted on / (root) 456 MB&lt;br /&gt;
/dev/store/var mounted on /var 256MB&lt;br /&gt;
/dev/store/update mounts on /var/lib/update 56MB (not mounted)&lt;br /&gt;
/dev/store/log/ mounted on /var/log 40MB&lt;br /&gt;
/dev/store/media mounted /media/internal 6.69GB&lt;br /&gt;
/dev/store/swap Linux swap 128MB&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
It has been observed that if /var or / (root) usage is greater than or equal to 90% than the FAILED_NOT_ENOUGH_INSTALL_SPACE error is generated. &amp;quot;Builtin&amp;quot; applications reside on the root file system in /usr/palm/applications. Downloaded apps and those installed with palm-install reside on the /var file system in /var/usr/palm/applications. Also for so-called &amp;quot;rooted&amp;quot; Pre's the Optware Linux-based apps are stored in /var/opt.&lt;br /&gt;
&lt;br /&gt;
One fix for a rooted Pre is to create a virtual Linux file system using a portion of the space allocated to /media/internal using a procedure similar to this one:&lt;br /&gt;
&lt;br /&gt;
[http://www.linux.org/docs/ldp/howto/Cryptoloop-HOWTO/filebased.html Linux Online - Using a file instead of a partition]&lt;br /&gt;
&lt;br /&gt;
Then mount the virtual file system on /opt vs binding /var/opt to /opt. Then relocating the files/directories under /var/opt to the new virtual file system.&lt;br /&gt;
&lt;br /&gt;
'''NOTE:''' The /dev/store/update is mounted when you run the Update process. It would seem that the updates are stored here (at least some of them) prior to installation.&lt;br /&gt;
&lt;br /&gt;
= Requirements =&lt;br /&gt;
&lt;br /&gt;
You must have access to the Linux shell to perform this process. It is assumed that you followed the procedure to install Optware apps in /var/opt and linked /var/opt to /opt with the &amp;quot;mount -o bind /var/opt /opt&amp;quot; command and there is an equivalent entry in the /etc/fstab file.&lt;br /&gt;
&lt;br /&gt;
=Procedure for Creating a Linux Virtual File System=&lt;br /&gt;
&lt;br /&gt;
Do '''NOT''' do this if you want to connect your Pre to your computer in the USB Drive or Media Sync modes.&lt;br /&gt;
&lt;br /&gt;
The following commands will move all of your Optware packages to an ext3 1GB loopback image that resides on /media/internal.&lt;br /&gt;
&amp;lt;source lang=&amp;quot;bash&amp;quot;&amp;gt;&lt;br /&gt;
# Create a directory on the USB drive portion to hold the virtual file system&lt;br /&gt;
mkdir /media/internal/vfs&lt;br /&gt;
&lt;br /&gt;
#  Create a 1GB file (adjust size (bs*count) as needed, the minimum size should be 256MB)&lt;br /&gt;
dd if=/dev/zero of=/media/internal/vfs/optware.img bs=1024 count=1024k&lt;br /&gt;
&lt;br /&gt;
# Create linux ext3 file system&lt;br /&gt;
mkfs.ext3 -F /media/internal/vfs/optware.img&lt;br /&gt;
&lt;br /&gt;
# Create a temporary mount point&lt;br /&gt;
mkdir /tmp/opt&lt;br /&gt;
&lt;br /&gt;
# Mount newly created virtual file system&lt;br /&gt;
mount -o loop /media/internal/vfs/optware.img  /tmp/opt&lt;br /&gt;
&lt;br /&gt;
# Populate new virtual file system.&lt;br /&gt;
# Must be in the source directory.&lt;br /&gt;
cd /opt&lt;br /&gt;
tar cvf - . |  (cd /tmp/opt; tar xf -)&lt;br /&gt;
cd /&lt;br /&gt;
&lt;br /&gt;
# Unmount virtual file system&lt;br /&gt;
umount /tmp/opt&lt;br /&gt;
&lt;br /&gt;
# Unbind /var/opt from /opt&lt;br /&gt;
umount /opt&lt;br /&gt;
&lt;br /&gt;
# If no errors, mount virtual file system on /opt&lt;br /&gt;
# otherwise skip&lt;br /&gt;
mount -o loop /media/internal/vfs/optware.img /opt&lt;br /&gt;
&lt;br /&gt;
# Add the following line to /etc/fstab to automount (without the #).&lt;br /&gt;
# /media/internal/vfs/optware.img /opt ext3 loop,noatime 1 2&lt;br /&gt;
#&lt;br /&gt;
# Comment out the /var/opt entry, should be similar to next line&lt;br /&gt;
#/var/opt /opt bind defaults,bind 0 0&lt;br /&gt;
#&lt;br /&gt;
# reboot your phone, if error noted when attempting to unmount /opt&lt;br /&gt;
reboot&lt;br /&gt;
&lt;br /&gt;
# If no errors noted with the Optware apps, &lt;br /&gt;
# remove files/directories from /var/opt&lt;br /&gt;
rm -r /var/opt&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Caveats =&lt;br /&gt;
&lt;br /&gt;
Currently this procedure will disable USB Drive and Media Sync modes.&lt;br /&gt;
&lt;br /&gt;
A method to safely unmount Virtual file system when selecting USB Drive and Media Sync modes is under development.&lt;br /&gt;
&lt;br /&gt;
See the start/stop script below for now. The script needs to be run from a non-ssh terminal (ie novaproxy or novaterm). In the future this should be wrapped inside a homebrew GUI.&lt;br /&gt;
&lt;br /&gt;
== Workaround for USB Drive/Media Sync: Start/Stop and Mount/Unmount Script ==&lt;br /&gt;
&lt;br /&gt;
This script will start/stop (mount/unmount) the virtual file system, thus functioning as a work-a-round to allow using the Palm Pre's USB Drive and Media Sync modes. It is a work in progress and needs to be bullet-proofed. Ideally it should be wrapped around a WebOS GUI app—we are working on this. This script should be saved to a file (i.e. /home/root/vfs), made executable (i.e. chmod 750 /home/root/vfs and then run (i.e. with /home/root/vfs on or /home/root/vfs off). '''Do not save the script to an /opt path.''' Make sure you're running the script to toggle the virtual file system on or off when /media/internal is not mounted as a USB drive and the Media Sync mode is not enabled, otherwise the script will fail.&lt;br /&gt;
&lt;br /&gt;
==== Note: ''We need this put in a Java service, which means we need to translate it to Java that the Pre can understand! This will be for the app that is used as a front-end GUI to toggle the the VFS. Please [http://gitorious.org/webos-internals/applications/trees/master/optloopservice look into this if you have the knowledge, on Gitorious]. The source is there.'' ====&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=&amp;quot;bash&amp;quot;&amp;gt;&lt;br /&gt;
#!/bin/sh&lt;br /&gt;
#&lt;br /&gt;
# List of Optware applications to start/stop&lt;br /&gt;
# in conjunction with mounting/unmounting VFS.&lt;br /&gt;
#&lt;br /&gt;
# Check to make sure /media/internal is&lt;br /&gt;
# mounted&lt;br /&gt;
FSINT=`/bin/df|/bin/grep &amp;quot;/dev/mapper/store-media&amp;quot;`&lt;br /&gt;
if [ &amp;quot;$FSINT&amp;quot; = &amp;quot;&amp;quot; ]&lt;br /&gt;
then&lt;br /&gt;
 echo &amp;quot;USB Drive not mounted. Exiting&amp;quot;&lt;br /&gt;
 exit 1&lt;br /&gt;
fi&lt;br /&gt;
&lt;br /&gt;
# OpenSSH and Dropbear are most common.&lt;br /&gt;
# Edit to suit environment.&lt;br /&gt;
APPS=&amp;quot;optware-openssh optware-dropbear&amp;quot;&lt;br /&gt;
&lt;br /&gt;
# An entry in /etc/fstab must exist for the VFS&lt;br /&gt;
# Grab and parse entry&lt;br /&gt;
FSVFS=`/bin/grep &amp;quot;/opt&amp;quot; /etc/fstab|grep loop`&lt;br /&gt;
if [ &amp;quot;$FSVFS&amp;quot; != &amp;quot;&amp;quot; ]&lt;br /&gt;
then&lt;br /&gt;
 # Complete FileName of VFS to mount/unmount&lt;br /&gt;
 LVFSFN=`echo $FSVFS|/usr/bin/awk '{print $1}'`&lt;br /&gt;
 # VFS Mount Point (ie /opt)&lt;br /&gt;
 LVFSMP=`echo $FSVFS|/usr/bin/awk '{print $2}'`&lt;br /&gt;
 # VFS file system Type (ie ext3)&lt;br /&gt;
 LVFSTP=`echo $FSVFS|/usr/bin/awk '{print $3}'`&lt;br /&gt;
else&lt;br /&gt;
 echo &amp;quot;**** No /etc/fstab entry&amp;quot;&lt;br /&gt;
 exit 1&lt;br /&gt;
fi&lt;br /&gt;
&lt;br /&gt;
# Determine if VFS is mounted&lt;br /&gt;
VFSMTD=`/bin/df|/bin/grep &amp;quot;$LVFSMP&amp;quot;|/bin/grep &amp;quot;^/dev/loop&amp;quot;`&lt;br /&gt;
if [ &amp;quot;$VFSMTD&amp;quot; != &amp;quot;&amp;quot; ]&lt;br /&gt;
then&lt;br /&gt;
 # Loopback device associated with VFS (ie /dev/loop0)&lt;br /&gt;
 LVFSDV=`echo $VFSMTD|/usr/bin/awk '{print $1}'`&lt;br /&gt;
fi&lt;br /&gt;
&lt;br /&gt;
case $1 in&lt;br /&gt;
  &amp;quot;on&amp;quot; )&lt;br /&gt;
        if [ -e &amp;quot;$LVFSFN&amp;quot; -a -d &amp;quot;$LVFSMP&amp;quot; -a &amp;quot;$VFSMTD&amp;quot; = &amp;quot;&amp;quot; ]&lt;br /&gt;
        then&lt;br /&gt;
         echo '**** Mounting Linux VFS'&lt;br /&gt;
         /bin/mount &amp;quot;$LVFSFN&amp;quot;&lt;br /&gt;
         echo '**** Starting Applications'&lt;br /&gt;
         for x in $APPS&lt;br /&gt;
           do&lt;br /&gt;
            if [ -f /etc/event.d/&amp;quot;$x&amp;quot; ]&lt;br /&gt;
            then&lt;br /&gt;
            /sbin/initctl start &amp;quot;$x&amp;quot;&lt;br /&gt;
            fi&lt;br /&gt;
         done&lt;br /&gt;
         echo '**** Linux VFS Enabled'&lt;br /&gt;
        else&lt;br /&gt;
         echo '**** Error mounting VFS'&lt;br /&gt;
         exit 1&lt;br /&gt;
        fi&lt;br /&gt;
        ;;&lt;br /&gt;
  &amp;quot;off&amp;quot; )&lt;br /&gt;
        if [ &amp;quot;$VFSMTD&amp;quot; != &amp;quot;&amp;quot; -a &amp;quot;$LVFSDV&amp;quot; != &amp;quot;&amp;quot; ]&lt;br /&gt;
        then&lt;br /&gt;
         echo '**** Stopping Applications'&lt;br /&gt;
         for x in $APPS&lt;br /&gt;
           do&lt;br /&gt;
            if [ -f /etc/event.d/&amp;quot;$x&amp;quot; ]&lt;br /&gt;
            then&lt;br /&gt;
            /sbin/initctl stop &amp;quot;$x&amp;quot;&lt;br /&gt;
            fi&lt;br /&gt;
         done&lt;br /&gt;
         echo '**** Unmounting Linux VFS'&lt;br /&gt;
         /bin/umount &amp;quot;$LVFSMP&amp;quot;&lt;br /&gt;
         # Work-a-round to disassociate VFS from loopback device&lt;br /&gt;
         /sbin/losetup -d $LVFSDV&lt;br /&gt;
         echo '**** Linux VFS Disabled'&lt;br /&gt;
        else&lt;br /&gt;
         echo '**** Error unmounting VFS'&lt;br /&gt;
         exit 1&lt;br /&gt;
        fi&lt;br /&gt;
        ;;&lt;br /&gt;
  * )&lt;br /&gt;
        echo &amp;quot;Usage: `/usr/bin/basename $0` on|off&amp;quot;&lt;br /&gt;
        ;;&lt;br /&gt;
esac&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Credits =&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
PuffTheMagic - Devised the initial process&lt;br /&gt;
1lnxraider   - Expanded, modified, and published tutorial&lt;br /&gt;
             - Helped ultraBlack troubleshoot toggle script&lt;br /&gt;
ultraBlack   - Found and had confirmed the major caveat that disables Media Sync and USB modes&lt;br /&gt;
             - Devised plan for front-end 'Toggle VFS' GUI, envisioning it as a way to also easily create it&lt;br /&gt;
rwhitby      - Provided skeleton and basic methods for the front-end GUI's Opt Loop Service&lt;br /&gt;
NetWhiz      - Gave additional warning that this process disables Media Sync and USB modes&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;/div&gt;</summary>
		<author><name>UltraBlack</name></author>
	</entry>
	<entry>
		<id>http://wiki.webos-internals.org/index.php?title=Tutorials_Linux_opt_on_loopback&amp;diff=4377</id>
		<title>Tutorials Linux opt on loopback</title>
		<link rel="alternate" type="text/html" href="http://wiki.webos-internals.org/index.php?title=Tutorials_Linux_opt_on_loopback&amp;diff=4377"/>
		<updated>2009-08-15T06:53:35Z</updated>

		<summary type="html">&lt;p&gt;UltraBlack: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= Background &amp;amp; Purpose =&lt;br /&gt;
&lt;br /&gt;
The Palm Pre's 8GB HD is configured with three partitions:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;1) /dev/mmcblk0p1 defined as a Linux/PA-RISC boot partition is only 4MB&lt;br /&gt;
2) /dev/mmcblk0p2 defined as a Linux partition and is 32MB mounted as /boot&lt;br /&gt;
3) /dev/mmcblk0p3 defined as a Linux LVM partition is 7.62GB&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The /dev/mmcblk0p3 partition is a Linux Volume Group that is sliced into six Logical Volumes:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;/dev/store/root mounted on / (root) 456 MB&lt;br /&gt;
/dev/store/var mounted on /var 256MB&lt;br /&gt;
/dev/store/update mounts on /var/lib/update 56MB (not mounted)&lt;br /&gt;
/dev/store/log/ mounted on /var/log 40MB&lt;br /&gt;
/dev/store/media mounted /media/internal 6.69GB&lt;br /&gt;
/dev/store/swap Linux swap 128MB&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
It has been observed that if /var or / (root) usage is greater than or equal to 90% than the FAILED_NOT_ENOUGH_INSTALL_SPACE error is generated. &amp;quot;Builtin&amp;quot; applications reside on the root file system in /usr/palm/applications. Downloaded apps and those installed with palm-install reside on the /var file system in /var/usr/palm/applications. Also for so-called &amp;quot;rooted&amp;quot; Pre's the Optware Linux-based apps are stored in /var/opt.&lt;br /&gt;
&lt;br /&gt;
One fix for a rooted Pre is to create a virtual Linux file system using a portion of the space allocated to /media/internal using a procedure similar to this one:&lt;br /&gt;
&lt;br /&gt;
[http://www.linux.org/docs/ldp/howto/Cryptoloop-HOWTO/filebased.html Linux Online - Using a file instead of a partition]&lt;br /&gt;
&lt;br /&gt;
Then mount the virtual file system on /opt vs binding /var/opt to /opt. Then relocating the files/directories under /var/opt to the new virtual file system.&lt;br /&gt;
&lt;br /&gt;
'''NOTE:''' The /dev/store/update is mounted when you run the Update process. It would seem that the updates are stored here (at least some of them) prior to installation.&lt;br /&gt;
&lt;br /&gt;
= Requirements =&lt;br /&gt;
&lt;br /&gt;
You must have access to the Linux shell to perform this process. It is assumed that you followed the procedure to install Optware apps in /var/opt and linked /var/opt to /opt with the &amp;quot;mount -o bind /var/opt /opt&amp;quot; command and there is an equivalent entry in the /etc/fstab file.&lt;br /&gt;
&lt;br /&gt;
=Procedure for Creating a Linux Virtual File System=&lt;br /&gt;
&lt;br /&gt;
Do '''NOT''' do this if you want to connect your Pre to your computer in the USB Drive or Media Sync modes.&lt;br /&gt;
&lt;br /&gt;
The following commands will move all of your Optware packages to an ext3 1GB loopback image that resides on /media/internal.&lt;br /&gt;
&amp;lt;source lang=&amp;quot;bash&amp;quot;&amp;gt;&lt;br /&gt;
# Create a directory on the USB drive portion to hold the virtual file system&lt;br /&gt;
mkdir /media/internal/vfs&lt;br /&gt;
&lt;br /&gt;
#  Create a 1GB file (adjust size (bs*count) as needed, the minimum size should be 256MB)&lt;br /&gt;
dd if=/dev/zero of=/media/internal/vfs/optware.img bs=1024 count=1024k&lt;br /&gt;
&lt;br /&gt;
# Create linux ext3 file system&lt;br /&gt;
mkfs.ext3 -F /media/internal/vfs/optware.img&lt;br /&gt;
&lt;br /&gt;
# Create a temporary mount point&lt;br /&gt;
mkdir /tmp/opt&lt;br /&gt;
&lt;br /&gt;
# Mount newly created virtual file system&lt;br /&gt;
mount -o loop /media/internal/vfs/optware.img  /tmp/opt&lt;br /&gt;
&lt;br /&gt;
# Populate new virtual file system.&lt;br /&gt;
# Must be in the source directory.&lt;br /&gt;
cd /opt&lt;br /&gt;
tar cvf - . |  (cd /tmp/opt; tar xf -)&lt;br /&gt;
cd /&lt;br /&gt;
&lt;br /&gt;
# Unmount virtual file system&lt;br /&gt;
umount /tmp/opt&lt;br /&gt;
&lt;br /&gt;
# Unbind /var/opt from /opt&lt;br /&gt;
umount /opt&lt;br /&gt;
&lt;br /&gt;
# If no errors, mount virtual file system on /opt&lt;br /&gt;
# otherwise skip&lt;br /&gt;
mount -o loop /media/internal/vfs/optware.img /opt&lt;br /&gt;
&lt;br /&gt;
# Add the following line to /etc/fstab to automount (without the #).&lt;br /&gt;
# /media/internal/vfs/optware.img /opt ext3 loop,noatime 1 2&lt;br /&gt;
#&lt;br /&gt;
# Comment out the /var/opt entry, should be similar to next line&lt;br /&gt;
#/var/opt /opt bind defaults,bind 0 0&lt;br /&gt;
#&lt;br /&gt;
# reboot your phone, if error noted when attempting to unmount /opt&lt;br /&gt;
reboot&lt;br /&gt;
&lt;br /&gt;
# If no errors noted with the Optware apps, &lt;br /&gt;
# remove files/directories from /var/opt&lt;br /&gt;
rm -r /var/opt&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Caveats =&lt;br /&gt;
&lt;br /&gt;
Currently this procedure will disable USB Drive and Media Sync modes.&lt;br /&gt;
&lt;br /&gt;
A method to safely unmount Virtual file system when selecting USB Drive and Media Sync modes is under development.&lt;br /&gt;
&lt;br /&gt;
See the start/stop script below for now. The script needs to be run from a non-ssh terminal (ie novaproxy or novaterm). In the future this should be wrapped inside a homebrew GUI.&lt;br /&gt;
&lt;br /&gt;
== Workaround for USB Drive/Media Sync: Start/Stop and Mount/Unmount Script ==&lt;br /&gt;
&lt;br /&gt;
This script will start/stop (mount/unmount) the virtual file system, thus functioning as a work-a-round to allow using the Palm Pre's USB Drive and Media Sync modes. It is a work in progress and needs to be bullet-proofed. Ideally it should be wrapped around a WebOS GUI app—we are working on this. This script should be saved to a file (i.e. /home/root/vfs), made executable (i.e. chmod 750 /home/root/vfs and then run (i.e. with /home/root/vfs on or /home/root/vfs off). '''Do not save the script to an /opt path.''' Make sure you're running the script to toggle the virtual file system on or off when /media/internal is not mounted as a USB drive and the Media Sync mode is not enabled, otherwise the script will fail.&lt;br /&gt;
&lt;br /&gt;
==== Note: ''We need this put in a Java service, which means we need to translate it to Java that the Pre can understand! This will be for the app that is used as a front-end GUI to toggle the the VFS. Please [http://gitorious.org/webos-internals/applications/trees/master/optloopservice look into this if you have the knowledge, on Gitorious]. The source is there.'' ====&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=&amp;quot;bash&amp;quot;&amp;gt;&lt;br /&gt;
#!/bin/sh&lt;br /&gt;
#&lt;br /&gt;
# List of Optware applications to start/stop&lt;br /&gt;
# in conjunction with mounting/unmounting VFS.&lt;br /&gt;
#&lt;br /&gt;
# Check to make sure /media/internal is&lt;br /&gt;
# mounted&lt;br /&gt;
FSINT=`/bin/df|/bin/grep &amp;quot;/dev/mapper/store-media&amp;quot;`&lt;br /&gt;
if [ &amp;quot;$FSINT&amp;quot; = &amp;quot;&amp;quot; ]&lt;br /&gt;
then&lt;br /&gt;
 echo &amp;quot;USB Drive not mounted. Exiting&amp;quot;&lt;br /&gt;
 exit 1&lt;br /&gt;
fi&lt;br /&gt;
&lt;br /&gt;
# OpenSSH and Dropbear are most common.&lt;br /&gt;
# Edit to suit environment.&lt;br /&gt;
APPS=&amp;quot;optware-openssh optware-dropbear&amp;quot;&lt;br /&gt;
&lt;br /&gt;
# An entry in /etc/fstab must exist for the VFS&lt;br /&gt;
# Grab and parse entry&lt;br /&gt;
FSVFS=`/bin/grep &amp;quot;/opt&amp;quot; /etc/fstab|grep loop`&lt;br /&gt;
if [ &amp;quot;$FSVFS&amp;quot; != &amp;quot;&amp;quot; ]&lt;br /&gt;
then&lt;br /&gt;
 # Complete FileName of VFS to mount/unmount&lt;br /&gt;
 LVFSFN=`echo $FSVFS|/usr/bin/awk '{print $1}'`&lt;br /&gt;
 # VFS Mount Point (ie /opt)&lt;br /&gt;
 LVFSMP=`echo $FSVFS|/usr/bin/awk '{print $2}'`&lt;br /&gt;
 # VFS file system Type (ie ext3)&lt;br /&gt;
 LVFSTP=`echo $FSVFS|/usr/bin/awk '{print $3}'`&lt;br /&gt;
else&lt;br /&gt;
 echo &amp;quot;**** No /etc/fstab entry&amp;quot;&lt;br /&gt;
 exit 1&lt;br /&gt;
fi&lt;br /&gt;
&lt;br /&gt;
# Determine if VFS is mounted&lt;br /&gt;
VFSMTD=`/bin/df|/bin/grep &amp;quot;$LVFSMP&amp;quot;|/bin/grep &amp;quot;^/dev/loop&amp;quot;`&lt;br /&gt;
if [ &amp;quot;$VFSMTD&amp;quot; != &amp;quot;&amp;quot; ]&lt;br /&gt;
then&lt;br /&gt;
 # Loopback device associated with VFS (ie /dev/loop0)&lt;br /&gt;
 LVFSDV=`echo $VFSMTD|/usr/bin/awk '{print $1}'`&lt;br /&gt;
fi&lt;br /&gt;
&lt;br /&gt;
case $1 in&lt;br /&gt;
  &amp;quot;on&amp;quot; )&lt;br /&gt;
        if [ -e &amp;quot;$LVFSFN&amp;quot; -a -d &amp;quot;$LVFSMP&amp;quot; -a &amp;quot;$VFSMTD&amp;quot; = &amp;quot;&amp;quot; ]&lt;br /&gt;
        then&lt;br /&gt;
         echo '**** Mounting Linux VFS'&lt;br /&gt;
         /bin/mount &amp;quot;$LVFSFN&amp;quot;&lt;br /&gt;
         echo '**** Starting Applications'&lt;br /&gt;
         for x in $APPS&lt;br /&gt;
           do&lt;br /&gt;
            if [ -f /etc/event.d/&amp;quot;$x&amp;quot; ]&lt;br /&gt;
            then&lt;br /&gt;
            /sbin/initctl start &amp;quot;$x&amp;quot;&lt;br /&gt;
            fi&lt;br /&gt;
         done&lt;br /&gt;
         echo '**** Linux VFS Enabled'&lt;br /&gt;
        else&lt;br /&gt;
         echo '**** Error mounting VFS'&lt;br /&gt;
         exit 1&lt;br /&gt;
        fi&lt;br /&gt;
        ;;&lt;br /&gt;
  &amp;quot;off&amp;quot; )&lt;br /&gt;
        if [ &amp;quot;$VFSMTD&amp;quot; != &amp;quot;&amp;quot; -a &amp;quot;$LVFSDV&amp;quot; != &amp;quot;&amp;quot; ]&lt;br /&gt;
        then&lt;br /&gt;
         echo '**** Stopping Applications'&lt;br /&gt;
         for x in $APPS&lt;br /&gt;
           do&lt;br /&gt;
            if [ -f /etc/event.d/&amp;quot;$x&amp;quot; ]&lt;br /&gt;
            then&lt;br /&gt;
            /sbin/initctl stop &amp;quot;$x&amp;quot;&lt;br /&gt;
            fi&lt;br /&gt;
         done&lt;br /&gt;
         echo '**** Unmounting Linux VFS'&lt;br /&gt;
         /bin/umount &amp;quot;$LVFSMP&amp;quot;&lt;br /&gt;
         # Work-a-round to disassociate VFS from loopback device&lt;br /&gt;
         /sbin/losetup -d $LVFSDV&lt;br /&gt;
         echo '**** Linux VFS Disabled'&lt;br /&gt;
        else&lt;br /&gt;
         echo '**** Error unmounting VFS'&lt;br /&gt;
         exit 1&lt;br /&gt;
        fi&lt;br /&gt;
        ;;&lt;br /&gt;
  * )&lt;br /&gt;
        echo &amp;quot;Usage: `/usr/bin/basename $0` on|off&amp;quot;&lt;br /&gt;
        ;;&lt;br /&gt;
esac&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Credits =&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
PuffTheMagic - Devised the initial process&lt;br /&gt;
1lnxraider   - Expanded, modified, and published tutorial&lt;br /&gt;
             - Helped ultraBlack troubleshoot toggle script&lt;br /&gt;
NetWhiz      - Gave additional warning that this process disables Media Sync and USB modes&lt;br /&gt;
ultraBlack   - Found and had confirmed the major caveat that disables Media Sync and USB modes&lt;br /&gt;
             - Devised plan for front-end 'Toggle VFS' GUI, envisioning it as a way to also easily create it&lt;br /&gt;
rwhitby      - Provided skeleton and basic methods for the front-end GUI's Opt Loop Service&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;/div&gt;</summary>
		<author><name>UltraBlack</name></author>
	</entry>
	<entry>
		<id>http://wiki.webos-internals.org/index.php?title=Tutorials_Linux_opt_on_loopback&amp;diff=4376</id>
		<title>Tutorials Linux opt on loopback</title>
		<link rel="alternate" type="text/html" href="http://wiki.webos-internals.org/index.php?title=Tutorials_Linux_opt_on_loopback&amp;diff=4376"/>
		<updated>2009-08-15T06:47:48Z</updated>

		<summary type="html">&lt;p&gt;UltraBlack: /* Workaround for USB Drive/Media Sync: Start/Stop and Mount/Unmount Script */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=Background &amp;amp; Purpose=&lt;br /&gt;
&lt;br /&gt;
The Palm Pre's 8GB HD is configured with three partitions:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;1) /dev/mmcblk0p1 defined as a Linux/PA-RISC boot partition is only 4MB&lt;br /&gt;
2) /dev/mmcblk0p2 defined as a Linux partition and is 32MB mounted as /boot&lt;br /&gt;
3) /dev/mmcblk0p3 defined as a Linux LVM partition is 7.62GB&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The /dev/mmcblk0p3 partition is a Linux Volume Group that is sliced into six Logical Volumes:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;/dev/store/root mounted on / (root) 456 MB&lt;br /&gt;
/dev/store/var mounted on /var 256MB&lt;br /&gt;
/dev/store/update mounts on /var/lib/update 56MB (not mounted)&lt;br /&gt;
/dev/store/log/ mounted on /var/log 40MB&lt;br /&gt;
/dev/store/media mounted /media/internal 6.69GB&lt;br /&gt;
/dev/store/swap Linux swap 128MB&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
It has been observed that if /var or / (root) usage is greater than or equal to 90% than the FAILED_NOT_ENOUGH_INSTALL_SPACE error is generated. &amp;quot;Builtin&amp;quot; applications reside on the root file system in /usr/palm/applications. Downloaded apps and those installed with palm-install reside on the /var file system in /var/usr/palm/applications. Also for so-called &amp;quot;rooted&amp;quot; Pre's the Optware Linux-based apps are stored in /var/opt.&lt;br /&gt;
&lt;br /&gt;
One fix for a rooted Pre is to create a virtual Linux file system using a portion of the space allocated to /media/internal using a procedure similar to this one:&lt;br /&gt;
&lt;br /&gt;
[http://www.linux.org/docs/ldp/howto/Cryptoloop-HOWTO/filebased.html Linux Online - Using a file instead of a partition]&lt;br /&gt;
&lt;br /&gt;
Then mount the virtual file system on /opt vs binding /var/opt to /opt. Then relocating the files/directories under /var/opt to the new virtual file system.&lt;br /&gt;
&lt;br /&gt;
'''NOTE:''' The /dev/store/update is mounted when you run the Update process. It would seem that the updates are stored here (at least some of them) prior to installation.&lt;br /&gt;
&lt;br /&gt;
=Requirements=&lt;br /&gt;
&lt;br /&gt;
You must have access to the Linux shell to perform this process. It is assumed that you followed the procedure to install Optware apps in /var/opt and linked /var/opt to /opt with the &amp;quot;mount -o bind /var/opt /opt&amp;quot; command and there is an equivalent entry in the /etc/fstab file.&lt;br /&gt;
&lt;br /&gt;
=Procedure for Creating a Linux Virtual File System=&lt;br /&gt;
&lt;br /&gt;
Do '''NOT''' do this if you want to connect your Pre to your computer in the USB Drive or Media Sync modes.&lt;br /&gt;
&lt;br /&gt;
The following commands will move all of your Optware packages to an ext3 1GB loopback image that resides on /media/internal.&lt;br /&gt;
&amp;lt;source lang=&amp;quot;bash&amp;quot;&amp;gt;&lt;br /&gt;
# Create a directory on the USB drive portion to hold the virtual file system&lt;br /&gt;
mkdir /media/internal/vfs&lt;br /&gt;
&lt;br /&gt;
#  Create a 1GB file (adjust size (bs*count) as needed, the minimum size should be 256MB)&lt;br /&gt;
dd if=/dev/zero of=/media/internal/vfs/optware.img bs=1024 count=1024k&lt;br /&gt;
&lt;br /&gt;
# Create linux ext3 file system&lt;br /&gt;
mkfs.ext3 -F /media/internal/vfs/optware.img&lt;br /&gt;
&lt;br /&gt;
# Create a temporary mount point&lt;br /&gt;
mkdir /tmp/opt&lt;br /&gt;
&lt;br /&gt;
# Mount newly created virtual file system&lt;br /&gt;
mount -o loop /media/internal/vfs/optware.img  /tmp/opt&lt;br /&gt;
&lt;br /&gt;
# Populate new virtual file system.&lt;br /&gt;
# Must be in the source directory.&lt;br /&gt;
cd /opt&lt;br /&gt;
tar cvf - . |  (cd /tmp/opt; tar xf -)&lt;br /&gt;
cd /&lt;br /&gt;
&lt;br /&gt;
# Unmount virtual file system&lt;br /&gt;
umount /tmp/opt&lt;br /&gt;
&lt;br /&gt;
# Unbind /var/opt from /opt&lt;br /&gt;
umount /opt&lt;br /&gt;
&lt;br /&gt;
# If no errors, mount virtual file system on /opt&lt;br /&gt;
# otherwise skip&lt;br /&gt;
mount -o loop /media/internal/vfs/optware.img /opt&lt;br /&gt;
&lt;br /&gt;
# Add the following line to /etc/fstab to automount (without the #).&lt;br /&gt;
# /media/internal/vfs/optware.img /opt ext3 loop,noatime 1 2&lt;br /&gt;
#&lt;br /&gt;
# Comment out the /var/opt entry, should be similar to next line&lt;br /&gt;
#/var/opt /opt bind defaults,bind 0 0&lt;br /&gt;
#&lt;br /&gt;
# reboot your phone, if error noted when attempting to unmount /opt&lt;br /&gt;
reboot&lt;br /&gt;
&lt;br /&gt;
# If no errors noted with the Optware apps, &lt;br /&gt;
# remove files/directories from /var/opt&lt;br /&gt;
rm -r /var/opt&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=Caveats=&lt;br /&gt;
&lt;br /&gt;
Currently this procedure will disable USB Drive and Media Sync modes.&lt;br /&gt;
&lt;br /&gt;
A method to safely unmount Virtual file system when selecting USB Drive and Media Sync modes is under development.&lt;br /&gt;
&lt;br /&gt;
See the start/stop script below for now. The script needs to be run from a non-ssh terminal (ie novaproxy or novaterm). In the future this should be wrapped inside a homebrew GUI.&lt;br /&gt;
&lt;br /&gt;
== Workaround for USB Drive/Media Sync: Start/Stop and Mount/Unmount Script ==&lt;br /&gt;
&lt;br /&gt;
This script will start/stop (mount/unmount) the virtual file system, thus functioning as a work-a-round to allow using the Palm Pre's USB Drive and Media Sync modes. It is a work in progress and needs to be bullet-proofed. Ideally it should be wrapped around a WebOS GUI app—we are working on this. This script should be saved to a file (i.e. /home/root/vfs), made executable (i.e. chmod 750 /home/root/vfs and then run (i.e. with /home/root/vfs on or /home/root/vfs off). '''Do not save the script to an /opt path.''' Make sure you're running the script to toggle the virtual file system on or off when /media/internal is not mounted as a USB drive and the Media Sync mode is not enabled, otherwise the script will fail.&lt;br /&gt;
&lt;br /&gt;
====Note: ''We need this put in a Java service, which means we need to translate it to Java that the Pre can understand! This will be for the app that is used as a front-end GUI to toggle the the VFS. Please [http://gitorious.org/webos-internals/applications/trees/master/optloopservice look into this if you have the knowledge, on Gitorious]. The source is there.''====&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=&amp;quot;bash&amp;quot;&amp;gt;&lt;br /&gt;
#!/bin/sh&lt;br /&gt;
#&lt;br /&gt;
# List of Optware applications to start/stop&lt;br /&gt;
# in conjunction with mounting/unmounting VFS.&lt;br /&gt;
#&lt;br /&gt;
# Check to make sure /media/internal is&lt;br /&gt;
# mounted&lt;br /&gt;
FSINT=`/bin/df|/bin/grep &amp;quot;/dev/mapper/store-media&amp;quot;`&lt;br /&gt;
if [ &amp;quot;$FSINT&amp;quot; = &amp;quot;&amp;quot; ]&lt;br /&gt;
then&lt;br /&gt;
 echo &amp;quot;USB Drive not mounted. Exiting&amp;quot;&lt;br /&gt;
 exit 1&lt;br /&gt;
fi&lt;br /&gt;
&lt;br /&gt;
# OpenSSH and Dropbear are most common.&lt;br /&gt;
# Edit to suit environment.&lt;br /&gt;
APPS=&amp;quot;optware-openssh optware-dropbear&amp;quot;&lt;br /&gt;
&lt;br /&gt;
# An entry in /etc/fstab must exist for the VFS&lt;br /&gt;
# Grab and parse entry&lt;br /&gt;
FSVFS=`/bin/grep &amp;quot;/opt&amp;quot; /etc/fstab|grep loop`&lt;br /&gt;
if [ &amp;quot;$FSVFS&amp;quot; != &amp;quot;&amp;quot; ]&lt;br /&gt;
then&lt;br /&gt;
 # Complete FileName of VFS to mount/unmount&lt;br /&gt;
 LVFSFN=`echo $FSVFS|/usr/bin/awk '{print $1}'`&lt;br /&gt;
 # VFS Mount Point (ie /opt)&lt;br /&gt;
 LVFSMP=`echo $FSVFS|/usr/bin/awk '{print $2}'`&lt;br /&gt;
 # VFS file system Type (ie ext3)&lt;br /&gt;
 LVFSTP=`echo $FSVFS|/usr/bin/awk '{print $3}'`&lt;br /&gt;
else&lt;br /&gt;
 echo &amp;quot;**** No /etc/fstab entry&amp;quot;&lt;br /&gt;
 exit 1&lt;br /&gt;
fi&lt;br /&gt;
&lt;br /&gt;
# Determine if VFS is mounted&lt;br /&gt;
VFSMTD=`/bin/df|/bin/grep &amp;quot;$LVFSMP&amp;quot;|/bin/grep &amp;quot;^/dev/loop&amp;quot;`&lt;br /&gt;
if [ &amp;quot;$VFSMTD&amp;quot; != &amp;quot;&amp;quot; ]&lt;br /&gt;
then&lt;br /&gt;
 # Loopback device associated with VFS (ie /dev/loop0)&lt;br /&gt;
 LVFSDV=`echo $VFSMTD|/usr/bin/awk '{print $1}'`&lt;br /&gt;
fi&lt;br /&gt;
&lt;br /&gt;
case $1 in&lt;br /&gt;
  &amp;quot;on&amp;quot; )&lt;br /&gt;
        if [ -e &amp;quot;$LVFSFN&amp;quot; -a -d &amp;quot;$LVFSMP&amp;quot; -a &amp;quot;$VFSMTD&amp;quot; = &amp;quot;&amp;quot; ]&lt;br /&gt;
        then&lt;br /&gt;
         echo '**** Mounting Linux VFS'&lt;br /&gt;
         /bin/mount &amp;quot;$LVFSFN&amp;quot;&lt;br /&gt;
         echo '**** Starting Applications'&lt;br /&gt;
         for x in $APPS&lt;br /&gt;
           do&lt;br /&gt;
            if [ -f /etc/event.d/&amp;quot;$x&amp;quot; ]&lt;br /&gt;
            then&lt;br /&gt;
            /sbin/initctl start &amp;quot;$x&amp;quot;&lt;br /&gt;
            fi&lt;br /&gt;
         done&lt;br /&gt;
         echo '**** Linux VFS Enabled'&lt;br /&gt;
        else&lt;br /&gt;
         echo '**** Error mounting VFS'&lt;br /&gt;
         exit 1&lt;br /&gt;
        fi&lt;br /&gt;
        ;;&lt;br /&gt;
  &amp;quot;off&amp;quot; )&lt;br /&gt;
        if [ &amp;quot;$VFSMTD&amp;quot; != &amp;quot;&amp;quot; -a &amp;quot;$LVFSDV&amp;quot; != &amp;quot;&amp;quot; ]&lt;br /&gt;
        then&lt;br /&gt;
         echo '**** Stopping Applications'&lt;br /&gt;
         for x in $APPS&lt;br /&gt;
           do&lt;br /&gt;
            if [ -f /etc/event.d/&amp;quot;$x&amp;quot; ]&lt;br /&gt;
            then&lt;br /&gt;
            /sbin/initctl stop &amp;quot;$x&amp;quot;&lt;br /&gt;
            fi&lt;br /&gt;
         done&lt;br /&gt;
         echo '**** Unmounting Linux VFS'&lt;br /&gt;
         /bin/umount &amp;quot;$LVFSMP&amp;quot;&lt;br /&gt;
         # Work-a-round to disassociate VFS from loopback device&lt;br /&gt;
         /sbin/losetup -d $LVFSDV&lt;br /&gt;
         echo '**** Linux VFS Disabled'&lt;br /&gt;
        else&lt;br /&gt;
         echo '**** Error unmounting VFS'&lt;br /&gt;
         exit 1&lt;br /&gt;
        fi&lt;br /&gt;
        ;;&lt;br /&gt;
  * )&lt;br /&gt;
        echo &amp;quot;Usage: `/usr/bin/basename $0` on|off&amp;quot;&lt;br /&gt;
        ;;&lt;br /&gt;
esac&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=Credits=&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
PuffTheMagic - Devised the initial process&lt;br /&gt;
1lnxraider   - Expanded and modified tutorial, is working on fixing caveats&lt;br /&gt;
             - Helped ultraBlack troubleshoot start/stop / mount/unmount script&lt;br /&gt;
NetWhiz      - Warned that this process disables USB Drive/Media Sync&lt;br /&gt;
ultraBlack   - Found and had confirmed the major caveat that disables Media Sync and USB modes&lt;br /&gt;
             - Edited this page and the start/stop script to accommodate for /opt&lt;br /&gt;
               not being mounted and for issues people might have mounting/unmounting&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;/div&gt;</summary>
		<author><name>UltraBlack</name></author>
	</entry>
	<entry>
		<id>http://wiki.webos-internals.org/index.php?title=Setup_SFTP&amp;diff=4095</id>
		<title>Setup SFTP</title>
		<link rel="alternate" type="text/html" href="http://wiki.webos-internals.org/index.php?title=Setup_SFTP&amp;diff=4095"/>
		<updated>2009-08-09T00:43:02Z</updated>

		<summary type="html">&lt;p&gt;UltraBlack: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;''If you want the automated setup meta-package, go [[Next_steps | here]].''&lt;br /&gt;
&lt;br /&gt;
Once you have accessed Linux on your Pre, it would be nice to be able to get and put files off the Pre without having to switch to usb drive mode, and copy the files over,and switch back to user mode, and move the files out of the media/internal folder and so forth. &lt;br /&gt;
&lt;br /&gt;
One good way to do this is via SFTP.  If you are not sure what that is, please visit [http://en.wikipedia.org/wiki/SSH_File_Transfer_Protocol this wiki page]. &lt;br /&gt;
&lt;br /&gt;
This document assumes you know why you want sftp, and how to use it once it's on the Pre. &lt;br /&gt;
&lt;br /&gt;
Step 1: [[Portal:Accessing_Linux | Login to your Pre's Linux shell]].  You must also have Optware packages configured, as outlined [[Next_steps|here]]: &lt;br /&gt;
&lt;br /&gt;
Step 2: Set Read/Write Access:&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
sudo -i&lt;br /&gt;
mount -o remount,rw /&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Step 3: Install the needed components from ipkg-opt:&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
cd /opt/bin&lt;br /&gt;
ipkg-opt update&lt;br /&gt;
ipkg-opt install openssh-sftp-server&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Step 4: Modify the sudoers file to allow your user account to sudo sftp-server without a password:&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
visudo &lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
Once in the file, add the following line after the existing ALL line for your user - where //myusername// should be replaced with the user account that you are using to access your Pre via SSH.  The order of the lines count here :&lt;br /&gt;
&lt;br /&gt;
Example:&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
myusername ALL=(ALL) ALL&lt;br /&gt;
myusername ALL=NOPASSWD: /opt/libexec/sftp-server&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Quit and save your changes (ESC :wq)&lt;br /&gt;
&lt;br /&gt;
Step 5: Mount the Pre's file system as read-only:&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
mount -o remount,ro /&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Step 6: Reboot via one of the methods below:&lt;br /&gt;
&lt;br /&gt;
Method 1:&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
su&lt;br /&gt;
/sbin/reboot&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Method 2:&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
sudo su -l&lt;br /&gt;
reboot&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Method 3:&lt;br /&gt;
Turn off the Pre by holding the power button until the 'Turn Off' button appears and then pressing it. Turn the Pre back on after it has turned off by holding the power button until you see the Palm logo.&lt;br /&gt;
&lt;br /&gt;
To login to the Pre using WinSCP:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
Hostname: [my pre's ip]&lt;br /&gt;
port: [my pre's port] (222 if you followed the Optware enabling instructions verbatim)&lt;br /&gt;
username and password you set&lt;br /&gt;
&lt;br /&gt;
Check 'Advanced Options' and select &amp;quot;Environment&amp;gt;SFTP&amp;quot;.&lt;br /&gt;
In the SFTP server box enter: sudo /opt/libexec/sftp-server&lt;br /&gt;
&lt;br /&gt;
Be sure to set &amp;quot;mount -o remount,rw /&amp;quot; to write and &amp;quot;mount -o remount,ro /&amp;quot; when done. (If on Windows, do this through PuTTY. I haven't found a way to do it through WinSCP, but you can go to &amp;quot;Commands&amp;gt;Open in PuTTY&amp;quot; from the main toolbar.)&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Courtesy of jhoff80 and blakeb at PreCentral.net&lt;/div&gt;</summary>
		<author><name>UltraBlack</name></author>
	</entry>
	<entry>
		<id>http://wiki.webos-internals.org/index.php?title=Next_steps&amp;diff=4094</id>
		<title>Next steps</title>
		<link rel="alternate" type="text/html" href="http://wiki.webos-internals.org/index.php?title=Next_steps&amp;diff=4094"/>
		<updated>2009-08-09T00:23:37Z</updated>

		<summary type="html">&lt;p&gt;UltraBlack: /* Finishing */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;''The old, manual setup of Optware and users can be found [[Setting_up_optware_feed | here]].''&lt;br /&gt;
&lt;br /&gt;
=Automated Setup of Optware, Users and Access=&lt;br /&gt;
The webOS community asks that users who have obtained access to the Linux subsystem install a standard set of software  to ensure everyone has the necessary tools in place to use the resources the community is providing.&lt;br /&gt;
&lt;br /&gt;
In particular, this includes the Optware package manager.  Palm's webOS uses the ''ipkg'' package manager internally.  The community has a version of ''ipkg''  called  ''ipkg-opt'' which accesses the Optware library of over 1300 Linux programs available for installation on the Pre. &lt;br /&gt;
&lt;br /&gt;
Palm has indicated that they have no intention of using the /opt directory, so we direct our installs to /opt/bin rather than /bin to avoid being overwritten  by future Palm software upgrades. &lt;br /&gt;
&lt;br /&gt;
In addition, the standard package  creates a non-root user, installs ''sudo'', and includes a SSH program (''Dropbear'') and SFTP program. &lt;br /&gt;
&lt;br /&gt;
For your convenience, we've packaged all this up into a simple script.&lt;br /&gt;
&lt;br /&gt;
==Optware Setup==&lt;br /&gt;
&lt;br /&gt;
'''If you're attempting to install these packages to your emulator, you must first add sufficient space by [[Adding_Disks_to_the_Emulator|enabling a virtual disk]].'''&lt;br /&gt;
&lt;br /&gt;
After completing the process of obtaining access to your Pre, do the following: &lt;br /&gt;
&lt;br /&gt;
'''Type each line exactly as it appears.  Copying and pasting is probably a good idea.''' &lt;br /&gt;
&lt;br /&gt;
''Note to Windows Putty users:  To paste in putty, simply right-click and the program pastes into the terminal whatever you have copied to the clipboard.''&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;font-size:100%;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;source lang=bash&amp;gt;&lt;br /&gt;
 cd /tmp&lt;br /&gt;
 wget http://gitorious.org/webos-internals/bootstrap/blobs/raw/master/optware-bootstrap.sh&lt;br /&gt;
 sh optware-bootstrap.sh&lt;br /&gt;
&amp;lt;/source&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Follow the on-screen instructions.  &lt;br /&gt;
&lt;br /&gt;
If you want to review the script before you run it, you can look here: &lt;br /&gt;
&lt;br /&gt;
[http://gitorious.org/webos-internals/bootstrap/blobs/master/optware-bootstrap.sh http://gitorious.org/webos-internals/bootstrap/blobs/master/optware-bootstrap.sh]&lt;br /&gt;
&lt;br /&gt;
==Quilt setup==&lt;br /&gt;
&lt;br /&gt;
Optionally, you can then install the ''quilt'' patch manager which allows multiple-file patches.  (Yes, the pun was intentional. Quilt manages multiple patches.)  This installation process has also been packaged into a simple script. It will install quilt, and all of its dependencies, and create a local clone of the WebOS-Internals patch repository. [[Applying_Patches | Applying Patches]] provides a more thorough guide on the use of quilt.&lt;br /&gt;
&lt;br /&gt;
'''Again, type each line exactly as it appears.  Copying and pasting is probably a good idea.'''&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;font-size:100%;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;source lang=bash&amp;gt;&lt;br /&gt;
 cd /tmp&lt;br /&gt;
 wget http://gitorious.org/webos-internals/bootstrap/blobs/raw/master/quilt-bootstrap.sh&lt;br /&gt;
 sh quilt-bootstrap.sh&lt;br /&gt;
&amp;lt;/source&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
If you want to review the script before you run it, you can look here: &lt;br /&gt;
&lt;br /&gt;
[http://gitorious.org/webos-internals/bootstrap/blobs/master/quilt-bootstrap.sh http://gitorious.org/webos-internals/bootstrap/blobs/master/quilt-bootstrap.sh]&lt;br /&gt;
&lt;br /&gt;
==Finishing==&lt;br /&gt;
&lt;br /&gt;
To finish off, turn Developer Mode back to &amp;quot;Off&amp;quot; (which will reboot your Pre).&lt;br /&gt;
&lt;br /&gt;
Once you are finished, you may SSH into your Pre with an SSH client like [http://www.chiark.greenend.org.uk/~sgtatham/putty/ Putty]:&lt;br /&gt;
*Find your IP address with [http://checkmyip.com/ CheckMyIP.com]&lt;br /&gt;
*SSH to that IP address on port 222&lt;br /&gt;
**If you're doing this over EVDO, there may be a lot of latency.  Be patient.&lt;br /&gt;
**You can optionally install [[Avahi]] and SSH to &amp;lt;tt&amp;gt;castle.local.&amp;lt;/tt&amp;gt;&lt;br /&gt;
*Log in with the username and password you created during the Optware installation&lt;br /&gt;
**Many operations cannot be carried out with the permissions of that username.  You'll need to [[Basic_Linux_Use#sudo|sudo]] those operations with the new username's password&lt;br /&gt;
&lt;br /&gt;
Only the default shell (/bin/ash) will work for ssh. To change your shell to bash (located in /opt/bin/bash after the install), you will have to create an /etc/shells file, and add the following lines:&lt;br /&gt;
&lt;br /&gt;
 /bin/ash&lt;br /&gt;
 /bin/sh&lt;br /&gt;
 /opt/bin/bash&lt;br /&gt;
&lt;br /&gt;
Then you will be able to edit /etc/passwd and change the shell parameter for the user you created. Note that if you try to change your shell without adding an /etc/shells the SSH server (Dropbear) will look like it is rejecting your password on subsequent connections.&lt;/div&gt;</summary>
		<author><name>UltraBlack</name></author>
	</entry>
	<entry>
		<id>http://wiki.webos-internals.org/index.php?title=Next_steps&amp;diff=4093</id>
		<title>Next steps</title>
		<link rel="alternate" type="text/html" href="http://wiki.webos-internals.org/index.php?title=Next_steps&amp;diff=4093"/>
		<updated>2009-08-09T00:22:02Z</updated>

		<summary type="html">&lt;p&gt;UltraBlack: /* Automated Setup of Optware, Users and Access */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;''The old, manual setup of Optware and users can be found [[Setting_up_optware_feed | here]].''&lt;br /&gt;
&lt;br /&gt;
=Automated Setup of Optware, Users and Access=&lt;br /&gt;
The webOS community asks that users who have obtained access to the Linux subsystem install a standard set of software  to ensure everyone has the necessary tools in place to use the resources the community is providing.&lt;br /&gt;
&lt;br /&gt;
In particular, this includes the Optware package manager.  Palm's webOS uses the ''ipkg'' package manager internally.  The community has a version of ''ipkg''  called  ''ipkg-opt'' which accesses the Optware library of over 1300 Linux programs available for installation on the Pre. &lt;br /&gt;
&lt;br /&gt;
Palm has indicated that they have no intention of using the /opt directory, so we direct our installs to /opt/bin rather than /bin to avoid being overwritten  by future Palm software upgrades. &lt;br /&gt;
&lt;br /&gt;
In addition, the standard package  creates a non-root user, installs ''sudo'', and includes a SSH program (''Dropbear'') and SFTP program. &lt;br /&gt;
&lt;br /&gt;
For your convenience, we've packaged all this up into a simple script.&lt;br /&gt;
&lt;br /&gt;
==Optware Setup==&lt;br /&gt;
&lt;br /&gt;
'''If you're attempting to install these packages to your emulator, you must first add sufficient space by [[Adding_Disks_to_the_Emulator|enabling a virtual disk]].'''&lt;br /&gt;
&lt;br /&gt;
After completing the process of obtaining access to your Pre, do the following: &lt;br /&gt;
&lt;br /&gt;
'''Type each line exactly as it appears.  Copying and pasting is probably a good idea.''' &lt;br /&gt;
&lt;br /&gt;
''Note to Windows Putty users:  To paste in putty, simply right-click and the program pastes into the terminal whatever you have copied to the clipboard.''&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;font-size:100%;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;source lang=bash&amp;gt;&lt;br /&gt;
 cd /tmp&lt;br /&gt;
 wget http://gitorious.org/webos-internals/bootstrap/blobs/raw/master/optware-bootstrap.sh&lt;br /&gt;
 sh optware-bootstrap.sh&lt;br /&gt;
&amp;lt;/source&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Follow the on-screen instructions.  &lt;br /&gt;
&lt;br /&gt;
If you want to review the script before you run it, you can look here: &lt;br /&gt;
&lt;br /&gt;
[http://gitorious.org/webos-internals/bootstrap/blobs/master/optware-bootstrap.sh http://gitorious.org/webos-internals/bootstrap/blobs/master/optware-bootstrap.sh]&lt;br /&gt;
&lt;br /&gt;
==Quilt setup==&lt;br /&gt;
&lt;br /&gt;
Optionally, you can then install the ''quilt'' patch manager which allows multiple-file patches.  (Yes, the pun was intentional. Quilt manages multiple patches.)  This installation process has also been packaged into a simple script. It will install quilt, and all of its dependencies, and create a local clone of the WebOS-Internals patch repository. [[Applying_Patches | Applying Patches]] provides a more thorough guide on the use of quilt.&lt;br /&gt;
&lt;br /&gt;
'''Again, type each line exactly as it appears.  Copying and pasting is probably a good idea.'''&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;font-size:100%;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;source lang=bash&amp;gt;&lt;br /&gt;
 cd /tmp&lt;br /&gt;
 wget http://gitorious.org/webos-internals/bootstrap/blobs/raw/master/quilt-bootstrap.sh&lt;br /&gt;
 sh quilt-bootstrap.sh&lt;br /&gt;
&amp;lt;/source&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
If you want to review the script before you run it, you can look here: &lt;br /&gt;
&lt;br /&gt;
[http://gitorious.org/webos-internals/bootstrap/blobs/master/quilt-bootstrap.sh http://gitorious.org/webos-internals/bootstrap/blobs/master/quilt-bootstrap.sh]&lt;br /&gt;
&lt;br /&gt;
==Finishing==&lt;br /&gt;
&lt;br /&gt;
To finish off, turn Developer Mode back to &amp;quot;Off&amp;quot; (which will reboot your Pre).&lt;br /&gt;
&lt;br /&gt;
Once you are finished, you may SSH into your Pre with an SSH client like [http://www.chiark.greenend.org.uk/~sgtatham/putty/ Putty]:&lt;br /&gt;
*Find your IP address with [http://checkmyip.com/ CheckMyIP.com]&lt;br /&gt;
*SSH to that IP address on port 222&lt;br /&gt;
**If you're doing this over EVDO, there may be a lot of latency.  Be patient.&lt;br /&gt;
**You can optionally install [[Avahi]] and SSH to &amp;lt;tt&amp;gt;castle.local.&amp;lt;/tt&amp;gt;&lt;br /&gt;
*Log in with the username and password you created during the Optware installation&lt;br /&gt;
**Many operations cannot be carried out with the permissions of that username.  You'll need to [[Basic_Linux_Use#sudo|sudo]] those operations with the new username's password&lt;br /&gt;
&lt;br /&gt;
Only the default shell (/bin/ash) will work for ssh. To change your shell to bash (located in /opt/bin/bash after the install), you will have to create an /etc/shells file, and add the following lines:&lt;br /&gt;
&lt;br /&gt;
 /bin/ash&lt;br /&gt;
 /bin/sh&lt;br /&gt;
 /opt/bin/bash&lt;br /&gt;
&lt;br /&gt;
Then you will be able to edit /etc/passwd and change the shell parameter for the user you created. Note that if you try to change your shell without adding an /etc/shells the SSH server (dropbear) will look like it is rejecting your password on subsequent connections.&lt;/div&gt;</summary>
		<author><name>UltraBlack</name></author>
	</entry>
	<entry>
		<id>http://wiki.webos-internals.org/index.php?title=Next_steps&amp;diff=4092</id>
		<title>Next steps</title>
		<link rel="alternate" type="text/html" href="http://wiki.webos-internals.org/index.php?title=Next_steps&amp;diff=4092"/>
		<updated>2009-08-09T00:21:49Z</updated>

		<summary type="html">&lt;p&gt;UltraBlack: /* Automated Setup of Optware, Users and Access */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;''The old, manual setup of Optware and users can be found [[Setting_up_optware_feed | here]].''&lt;br /&gt;
&lt;br /&gt;
=Automated Setup of Optware, Users and Access=&lt;br /&gt;
The webOS community asks that users who have obtained access to the Linux subsystem install a standard set of software  to ensure everyone has the necessary tools in place to use the resources the community is providing.&lt;br /&gt;
&lt;br /&gt;
In particular, this includes the Optware package manager.  Palm's webOS uses the ''ipkg'' package manager internally.  The community has a version of ''ipkg''  called  ''ipkg-opt'' which accesses the Optware library of over 1300 Linux programs available for installation on the Pre. &lt;br /&gt;
&lt;br /&gt;
Palm has indicated that they have no intention of using the /opt directory, so we direct our installs to /opt/bin rather than /bin to avoid being overwritten  by future Palm software upgrades. &lt;br /&gt;
&lt;br /&gt;
In addition, the standard package  creates a non-root user, installs ''sudo'', and includes a SSH program (''Dropbear'') and an SFTP program. &lt;br /&gt;
&lt;br /&gt;
For your convenience, we've packaged all this up into a simple script.&lt;br /&gt;
&lt;br /&gt;
==Optware Setup==&lt;br /&gt;
&lt;br /&gt;
'''If you're attempting to install these packages to your emulator, you must first add sufficient space by [[Adding_Disks_to_the_Emulator|enabling a virtual disk]].'''&lt;br /&gt;
&lt;br /&gt;
After completing the process of obtaining access to your Pre, do the following: &lt;br /&gt;
&lt;br /&gt;
'''Type each line exactly as it appears.  Copying and pasting is probably a good idea.''' &lt;br /&gt;
&lt;br /&gt;
''Note to Windows Putty users:  To paste in putty, simply right-click and the program pastes into the terminal whatever you have copied to the clipboard.''&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;font-size:100%;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;source lang=bash&amp;gt;&lt;br /&gt;
 cd /tmp&lt;br /&gt;
 wget http://gitorious.org/webos-internals/bootstrap/blobs/raw/master/optware-bootstrap.sh&lt;br /&gt;
 sh optware-bootstrap.sh&lt;br /&gt;
&amp;lt;/source&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Follow the on-screen instructions.  &lt;br /&gt;
&lt;br /&gt;
If you want to review the script before you run it, you can look here: &lt;br /&gt;
&lt;br /&gt;
[http://gitorious.org/webos-internals/bootstrap/blobs/master/optware-bootstrap.sh http://gitorious.org/webos-internals/bootstrap/blobs/master/optware-bootstrap.sh]&lt;br /&gt;
&lt;br /&gt;
==Quilt setup==&lt;br /&gt;
&lt;br /&gt;
Optionally, you can then install the ''quilt'' patch manager which allows multiple-file patches.  (Yes, the pun was intentional. Quilt manages multiple patches.)  This installation process has also been packaged into a simple script. It will install quilt, and all of its dependencies, and create a local clone of the WebOS-Internals patch repository. [[Applying_Patches | Applying Patches]] provides a more thorough guide on the use of quilt.&lt;br /&gt;
&lt;br /&gt;
'''Again, type each line exactly as it appears.  Copying and pasting is probably a good idea.'''&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;font-size:100%;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;source lang=bash&amp;gt;&lt;br /&gt;
 cd /tmp&lt;br /&gt;
 wget http://gitorious.org/webos-internals/bootstrap/blobs/raw/master/quilt-bootstrap.sh&lt;br /&gt;
 sh quilt-bootstrap.sh&lt;br /&gt;
&amp;lt;/source&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
If you want to review the script before you run it, you can look here: &lt;br /&gt;
&lt;br /&gt;
[http://gitorious.org/webos-internals/bootstrap/blobs/master/quilt-bootstrap.sh http://gitorious.org/webos-internals/bootstrap/blobs/master/quilt-bootstrap.sh]&lt;br /&gt;
&lt;br /&gt;
==Finishing==&lt;br /&gt;
&lt;br /&gt;
To finish off, turn Developer Mode back to &amp;quot;Off&amp;quot; (which will reboot your Pre).&lt;br /&gt;
&lt;br /&gt;
Once you are finished, you may SSH into your Pre with an SSH client like [http://www.chiark.greenend.org.uk/~sgtatham/putty/ Putty]:&lt;br /&gt;
*Find your IP address with [http://checkmyip.com/ CheckMyIP.com]&lt;br /&gt;
*SSH to that IP address on port 222&lt;br /&gt;
**If you're doing this over EVDO, there may be a lot of latency.  Be patient.&lt;br /&gt;
**You can optionally install [[Avahi]] and SSH to &amp;lt;tt&amp;gt;castle.local.&amp;lt;/tt&amp;gt;&lt;br /&gt;
*Log in with the username and password you created during the Optware installation&lt;br /&gt;
**Many operations cannot be carried out with the permissions of that username.  You'll need to [[Basic_Linux_Use#sudo|sudo]] those operations with the new username's password&lt;br /&gt;
&lt;br /&gt;
Only the default shell (/bin/ash) will work for ssh. To change your shell to bash (located in /opt/bin/bash after the install), you will have to create an /etc/shells file, and add the following lines:&lt;br /&gt;
&lt;br /&gt;
 /bin/ash&lt;br /&gt;
 /bin/sh&lt;br /&gt;
 /opt/bin/bash&lt;br /&gt;
&lt;br /&gt;
Then you will be able to edit /etc/passwd and change the shell parameter for the user you created. Note that if you try to change your shell without adding an /etc/shells the SSH server (dropbear) will look like it is rejecting your password on subsequent connections.&lt;/div&gt;</summary>
		<author><name>UltraBlack</name></author>
	</entry>
	<entry>
		<id>http://wiki.webos-internals.org/index.php?title=Setup_SFTP&amp;diff=4091</id>
		<title>Setup SFTP</title>
		<link rel="alternate" type="text/html" href="http://wiki.webos-internals.org/index.php?title=Setup_SFTP&amp;diff=4091"/>
		<updated>2009-08-09T00:20:47Z</updated>

		<summary type="html">&lt;p&gt;UltraBlack: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;''If you want the automated setup meta-package, go [[Next_steps | here]].''&lt;br /&gt;
&lt;br /&gt;
Once you have accessed Linux on your Pre, it would be nice to be able to get and put files off the Pre without having to switch to usb drive mode, and copy the files over,and switch back to user mode, and move the files out of the media/internal folder and so forth. &lt;br /&gt;
&lt;br /&gt;
One good way to do this is via SFTP.  If you are not sure what that is, please visit [http://en.wikipedia.org/wiki/SSH_File_Transfer_Protocol this wiki page]. &lt;br /&gt;
&lt;br /&gt;
This document assumes you know why you want sftp, and how to use it once it's on the Pre. &lt;br /&gt;
&lt;br /&gt;
Step 1: [[Portal:Accessing_Linux | Login to your Pre's Linux shell]].  You must also have Optware packages configured, as outlined [[Next_steps|here]]: &lt;br /&gt;
&lt;br /&gt;
Step 2: Set Read/Write Access:&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
sudo -i&lt;br /&gt;
mount -o remount,rw /&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Step 3: Install the needed components from ipkg-opt:&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
cd /opt/bin&lt;br /&gt;
ipkg-opt update&lt;br /&gt;
ipkg-opt install openssh-sftp-server&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Step 4: Modify the sudoers file to allow your user account to sudo sftp-server without a password:&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
vi sudo &lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
Once in the file, add the following line after the existing ALL line for your user - where //myusername// should be replaced with the user account that you are using to access your Pre via SSH.  The order of the lines count here :&lt;br /&gt;
&lt;br /&gt;
Example:&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
myusername ALL=(ALL) ALL&lt;br /&gt;
myusername ALL=NOPASSWD: /opt/libexec/sftp-server&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Quit and save your changes (ESC :wq)&lt;br /&gt;
&lt;br /&gt;
Step 5: Mount the Pre's file system as read-only:&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
mount -o remount,ro /&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Step 6: Reboot via one of the methods below:&lt;br /&gt;
&lt;br /&gt;
Method 1:&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
su&lt;br /&gt;
/sbin/reboot&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Method 2:&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
sudo su -l&lt;br /&gt;
reboot&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Method 3:&lt;br /&gt;
Turn off the Pre by holding the power button until the 'Turn Off' button appears and then pressing it. Turn the Pre back on after it has turned off by holding the power button until you see the Palm logo.&lt;br /&gt;
&lt;br /&gt;
To login to the Pre using WinSCP:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
Hostname: [my pre's ip]&lt;br /&gt;
port: [my pre's port] (222 if you followed the Optware enabling instructions verbatim)&lt;br /&gt;
username and password you set&lt;br /&gt;
&lt;br /&gt;
Check 'Advanced Options' and select &amp;quot;Environment&amp;gt;SFTP&amp;quot;.&lt;br /&gt;
In the SFTP server box enter: sudo /opt/libexec/sftp-server&lt;br /&gt;
&lt;br /&gt;
Be sure to set &amp;quot;mount -o remount,rw /&amp;quot; to write and &amp;quot;mount -o remount,ro /&amp;quot; when done. (If on Windows, do this through PuTTY. I haven't found a way to do it through WinSCP, but you can go to &amp;quot;Commands&amp;gt;Open in PuTTY&amp;quot; from the main toolbar.)&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Courtesy of jhoff80 and blakeb at PreCentral.net&lt;/div&gt;</summary>
		<author><name>UltraBlack</name></author>
	</entry>
	<entry>
		<id>http://wiki.webos-internals.org/index.php?title=Setup_SFTP&amp;diff=4090</id>
		<title>Setup SFTP</title>
		<link rel="alternate" type="text/html" href="http://wiki.webos-internals.org/index.php?title=Setup_SFTP&amp;diff=4090"/>
		<updated>2009-08-09T00:20:22Z</updated>

		<summary type="html">&lt;p&gt;UltraBlack: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;''If you want the automated setup meta-package, go [[Next_steps | here]]''&lt;br /&gt;
&lt;br /&gt;
Once you have accessed Linux on your Pre, it would be nice to be able to get and put files off the Pre without having to switch to usb drive mode, and copy the files over,and switch back to user mode, and move the files out of the media/internal folder and so forth. &lt;br /&gt;
&lt;br /&gt;
One good way to do this is via SFTP.  If you are not sure what that is, please visit [http://en.wikipedia.org/wiki/SSH_File_Transfer_Protocol this wiki page]. &lt;br /&gt;
&lt;br /&gt;
This document assumes you know why you want sftp, and how to use it once it's on the Pre. &lt;br /&gt;
&lt;br /&gt;
Step 1: [[Portal:Accessing_Linux | Login to your Pre's Linux shell]].  You must also have Optware packages configured, as outlined [[Next_steps|here]]: &lt;br /&gt;
&lt;br /&gt;
Step 2: Set Read/Write Access:&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
sudo -i&lt;br /&gt;
mount -o remount,rw /&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Step 3: Install the needed components from ipkg-opt:&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
cd /opt/bin&lt;br /&gt;
ipkg-opt update&lt;br /&gt;
ipkg-opt install openssh-sftp-server&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Step 4: Modify the sudoers file to allow your user account to sudo sftp-server without a password:&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
vi sudo &lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
Once in the file, add the following line after the existing ALL line for your user - where //myusername// should be replaced with the user account that you are using to access your Pre via SSH.  The order of the lines count here :&lt;br /&gt;
&lt;br /&gt;
Example:&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
myusername ALL=(ALL) ALL&lt;br /&gt;
myusername ALL=NOPASSWD: /opt/libexec/sftp-server&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Quit and save your changes (ESC :wq)&lt;br /&gt;
&lt;br /&gt;
Step 5: Mount the Pre's file system as read-only:&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
mount -o remount,ro /&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Step 6: Reboot via one of the methods below:&lt;br /&gt;
&lt;br /&gt;
Method 1:&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
su&lt;br /&gt;
/sbin/reboot&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Method 2:&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
sudo su -l&lt;br /&gt;
reboot&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Method 3:&lt;br /&gt;
Turn off the Pre by holding the power button until the 'Turn Off' button appears and then pressing it. Turn the Pre back on after it has turned off by holding the power button until you see the Palm logo.&lt;br /&gt;
&lt;br /&gt;
To login to the Pre using WinSCP:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
Hostname: [my pre's ip]&lt;br /&gt;
port: [my pre's port] (222 if you followed the Optware enabling instructions verbatim)&lt;br /&gt;
username and password you set&lt;br /&gt;
&lt;br /&gt;
Check 'Advanced Options' and select &amp;quot;Environment&amp;gt;SFTP&amp;quot;.&lt;br /&gt;
In the SFTP server box enter: sudo /opt/libexec/sftp-server&lt;br /&gt;
&lt;br /&gt;
Be sure to set &amp;quot;mount -o remount,rw /&amp;quot; to write and &amp;quot;mount -o remount,ro /&amp;quot; when done. (If on Windows, do this through PuTTY. I haven't found a way to do it through WinSCP, but you can go to &amp;quot;Commands&amp;gt;Open in PuTTY&amp;quot; from the main toolbar.)&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Courtesy of jhoff80 and blakeb at PreCentral.net&lt;/div&gt;</summary>
		<author><name>UltraBlack</name></author>
	</entry>
	<entry>
		<id>http://wiki.webos-internals.org/index.php?title=Setup_SFTP&amp;diff=4089</id>
		<title>Setup SFTP</title>
		<link rel="alternate" type="text/html" href="http://wiki.webos-internals.org/index.php?title=Setup_SFTP&amp;diff=4089"/>
		<updated>2009-08-09T00:17:08Z</updated>

		<summary type="html">&lt;p&gt;UltraBlack: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;''If you want the automated setup meta-package, go [[Next_steps | here]]''&lt;br /&gt;
&lt;br /&gt;
Once you have accessed Linux on your Pre, it would be nice to be able to get and put files off the Pre without having to switch to usb drive mode, and copy the files over,and switch back to user mode, and move the files out of the media/internal folder and so forth. &lt;br /&gt;
&lt;br /&gt;
One good way to do this is via sftp.  If you are not sure what that is, please visit [http://en.wikipedia.org/wiki/SSH_File_Transfer_Protocol]. &lt;br /&gt;
&lt;br /&gt;
This document assumes you know why you want sftp, and how to use it once it's on the Pre. &lt;br /&gt;
&lt;br /&gt;
Step 1: [[Portal:Accessing_Linux | Login to your Pre's Linux shell]].  You must also have Optware packages configured, as outlined [[Next_steps|here]]: &lt;br /&gt;
&lt;br /&gt;
Step 2: Set Read/Write Access:&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
sudo -i&lt;br /&gt;
mount -o remount,rw /&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Step 3: Install the needed components from ipkg-opt:&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
cd /opt/bin&lt;br /&gt;
ipkg-opt update&lt;br /&gt;
ipkg-opt install openssh-sftp-server&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Step 4: Modify the sudoers file to allow your user account to sudo sftp-server without a password:&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
vi sudo &lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
Once in the file, add the following line after the existing ALL line for your user - where //myusername// should be replaced with the user account that you are using to access your Pre via SSH.  The order of the lines count here :&lt;br /&gt;
&lt;br /&gt;
Example:&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
myusername ALL=(ALL) ALL&lt;br /&gt;
myusername ALL=NOPASSWD: /opt/libexec/sftp-server&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Quit and save your changes (ESC :wq)&lt;br /&gt;
&lt;br /&gt;
Step 5: Mount the Pre's file system as read-only:&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
mount -o remount,ro /&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Step 6: Reboot via one of the methods below:&lt;br /&gt;
&lt;br /&gt;
Method 1:&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
su&lt;br /&gt;
/sbin/reboot&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Method 2:&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
sudo su -l&lt;br /&gt;
reboot&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Method 3:&lt;br /&gt;
Turn off the Pre by holding the power button until the 'Turn Off' button appears and then pressing it. Turn the Pre back on after it has turned off by holding the power button until you see the Palm logo.&lt;br /&gt;
&lt;br /&gt;
To login to the Pre using WinSCP:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
Hostname: [my pre's ip]&lt;br /&gt;
port: [my pre's port] (222 if you followed the Optware enabling instructions verbatim)&lt;br /&gt;
username and password you set&lt;br /&gt;
&lt;br /&gt;
Check 'Advanced Options' and select &amp;quot;Environment&amp;gt;SFTP&amp;quot;.&lt;br /&gt;
In the SFTP server box enter: sudo /opt/libexec/sftp-server&lt;br /&gt;
&lt;br /&gt;
Be sure to set &amp;quot;mount -o remount,rw /&amp;quot; to write and &amp;quot;mount -o remount,ro /&amp;quot; when done. (If on Windows, do this through PuTTY. I haven't found a way to do it through WinSCP, but you can go to &amp;quot;Commands&amp;gt;Open in PuTTY&amp;quot; from the main toolbar.)&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Courtesy of jhoff80 and blakeb at PreCentral.net&lt;/div&gt;</summary>
		<author><name>UltraBlack</name></author>
	</entry>
	<entry>
		<id>http://wiki.webos-internals.org/index.php?title=Setup_SFTP&amp;diff=4088</id>
		<title>Setup SFTP</title>
		<link rel="alternate" type="text/html" href="http://wiki.webos-internals.org/index.php?title=Setup_SFTP&amp;diff=4088"/>
		<updated>2009-08-09T00:12:25Z</updated>

		<summary type="html">&lt;p&gt;UltraBlack: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;''If you want the automated setup meta-package, go [[Next_steps | here]]''&lt;br /&gt;
&lt;br /&gt;
Once you have accessed Linux on your Pre, it would be nice to be able to get and put files off the Pre without having to switch to usb drive mode, and copy the files over,and switch back to user mode, and move the files out of the media/internal folder and so forth. &lt;br /&gt;
&lt;br /&gt;
One good way to do this is via sftp.  If you are not sure what that is, please visit [http://en.wikipedia.org/wiki/SSH_File_Transfer_Protocol]. &lt;br /&gt;
&lt;br /&gt;
This document assumes you know why you want sftp, and how to use it once it's on the Pre. &lt;br /&gt;
&lt;br /&gt;
Step 1: [[Portal:Accessing_Linux | Login to your Pre's Linux shell]].  You must also have Optware packages configured, as outlined [[Next_steps|here]]: &lt;br /&gt;
&lt;br /&gt;
Step 2: Set Read/Write Access:&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
sudo -i&lt;br /&gt;
mount -o remount,rw /&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Step 3: Install the needed components from ipkg-opt:&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
cd /opt/bin&lt;br /&gt;
ipkg-opt update&lt;br /&gt;
ipkg-opt install openssh-sftp-server&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Step 4: Modify the sudoers file to allow your user account to sudo sftp-server without a password:&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
vi sudo &lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
Once in the file, add the following line after the existing ALL line for your user - where //myusername// should be replaced with the user account that you are using to access your Pre via SSH.  The order of the lines count here :&lt;br /&gt;
&lt;br /&gt;
Example:&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
myusername ALL=(ALL) ALL&lt;br /&gt;
myusername ALL=NOPASSWD: /opt/libexec/sftp-server&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Quit and save your changes (ESC :wq)&lt;br /&gt;
&lt;br /&gt;
Step 5: Readonly the Pre:&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
mount -o remount,ro /&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Step 6: Reboot via one of the methods below:&lt;br /&gt;
&lt;br /&gt;
Method 1:&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
su&lt;br /&gt;
/sbin/reboot&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Method 2:&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
sudo su -l&lt;br /&gt;
reboot&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Method 3:&lt;br /&gt;
Turn off the Pre by holding the power button until the 'Turn Off' button appears and then pressing it. Turn the Pre back on after it has turned off by holding the power button until you see the Palm logo.&lt;br /&gt;
&lt;br /&gt;
To Login to the Pre using winSCP:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
Hostname: [my pre's ip]&lt;br /&gt;
port: [my pre's port] (222 if you followed the Optware enabling instructions verbatim)&lt;br /&gt;
username and password you set&lt;br /&gt;
&lt;br /&gt;
Check 'Advanced Options' and select &amp;quot;Environment&amp;gt;SFTP&amp;quot;.&lt;br /&gt;
In the SFTP server box enter: sudo /opt/libexec/sftp-server&lt;br /&gt;
&lt;br /&gt;
Be sure to set &amp;quot;mount -o remount,rw /&amp;quot; to write and &amp;quot;mount -o remount,ro /&amp;quot; when done. (If on Windows, do this through PuTTY. I haven't found a way to do it through WinSCP, but you can go to &amp;quot;Commands&amp;gt;Open in PuTTY&amp;quot; from the main toolbar.)&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Courtesy of jhoff80 and blakeb at PreCentral.net&lt;/div&gt;</summary>
		<author><name>UltraBlack</name></author>
	</entry>
	<entry>
		<id>http://wiki.webos-internals.org/index.php?title=Template:Tux&amp;diff=4087</id>
		<title>Template:Tux</title>
		<link rel="alternate" type="text/html" href="http://wiki.webos-internals.org/index.php?title=Template:Tux&amp;diff=4087"/>
		<updated>2009-08-08T21:24:51Z</updated>

		<summary type="html">&lt;p&gt;UltraBlack: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;div style=&amp;quot;display:inline;{{{2|}}}&amp;quot;&amp;gt;{{#icon:{{{1}}}|}}&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;noinclude&amp;gt;&lt;br /&gt;
= Crystal Tux Icons (Wx48) =&lt;br /&gt;
&lt;br /&gt;
[[Image:Tux.png]]&lt;br /&gt;
[[Image:Tux_with_Pre.png]]&lt;br /&gt;
[[Image:Tux_with_Broken_Pre.png]]&lt;br /&gt;
[[Image:Tux_with_Pre_and_Screwdriver.png]]&lt;br /&gt;
[[Image:Tux_Thinking.png]]&lt;br /&gt;
[[Image:Tux_Mad.png]]&lt;br /&gt;
[[Image:Tux_Chat.png]]&lt;br /&gt;
[[Image:Tux_with_Docs.png]]&lt;br /&gt;
[[Image:Scientux.png]]&lt;br /&gt;
&lt;br /&gt;
== How to Use ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=&amp;quot;text&amp;quot;&amp;gt;&lt;br /&gt;
{{tux|Tux_With_Pre.png|float:right;}}&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Note: Exclude '|float:right;' if you don't want the icon to float on the right side of the page&lt;br /&gt;
&lt;br /&gt;
== Want To Add Your Own? ==&lt;br /&gt;
&lt;br /&gt;
Just upload an image with the following naming scheme.&lt;br /&gt;
&amp;lt;source lang=&amp;quot;text&amp;quot;&amp;gt;&lt;br /&gt;
Tux_ + Action or Description + .png&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Warning: .png format only please. And make it look good. =)&lt;br /&gt;
&lt;br /&gt;
== Credits ==&lt;br /&gt;
&lt;br /&gt;
 - ultraBlack created the base Tux.png from scratch with aid of a tutorial on CrystalXP.net&lt;br /&gt;
 - Templarian went crazy with little iconic overlays and edited all kinds of %!@ onto him. He's pretty good. Pretty neat.&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;&lt;/div&gt;</summary>
		<author><name>UltraBlack</name></author>
	</entry>
	<entry>
		<id>http://wiki.webos-internals.org/index.php?title=Patch_webOS_Graphics&amp;diff=3996</id>
		<title>Patch webOS Graphics</title>
		<link rel="alternate" type="text/html" href="http://wiki.webos-internals.org/index.php?title=Patch_webOS_Graphics&amp;diff=3996"/>
		<updated>2009-08-07T09:30:04Z</updated>

		<summary type="html">&lt;p&gt;UltraBlack: /* My New Dialer */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{template:patch}}&lt;br /&gt;
Post all of your custom/homemade images relating to the Pre here.&lt;br /&gt;
&lt;br /&gt;
= Submissions =&lt;br /&gt;
&lt;br /&gt;
== [[User:ultraBlack|ultraBlack]]'s ==&lt;br /&gt;
&lt;br /&gt;
=== Icons ===&lt;br /&gt;
&lt;br /&gt;
All of the icons below come in sizes ranging from 256x256px to 8x8px.&lt;br /&gt;
&lt;br /&gt;
==== [http://g.imagehost.org/dl/a727b6a00b71c151815b5fe87d6a77ee/0121/Tux.ico Tux (click here to download .ico)] ====&lt;br /&gt;
[[Image:Tux-icons.png|340px]]&lt;br /&gt;
&lt;br /&gt;
==== [http://g.imagehost.org/dl/438f4729bf7116407c920d73c0af767d/0600/pre.ico Pre - Front (click here to download .ico)] ====&lt;br /&gt;
[[Image:Pre-front.png|340px]]&lt;br /&gt;
&lt;br /&gt;
==== [http://g.imagehost.org/dl/eb3d52053bd34963c530fbe7e331fc07/0004/pre2.ico Pre - Side/Tilt (click here to download .ico)] ====&lt;br /&gt;
[[Image:Pre-sidetilt.png|340px]]&lt;br /&gt;
&lt;br /&gt;
==== [http://g.imagehost.org/dl/eaf15ffaf7e1fa9c87a2cbda79e5e2a1/0994/Touchstone.ico Touchstone (click here to download .ico)] ====&lt;br /&gt;
[[Image:Pre-touchstone.png|340px]]&lt;br /&gt;
&lt;br /&gt;
=== Miscellaneous ===&lt;br /&gt;
&lt;br /&gt;
[[Image: Ultrablack-theme.png]]&lt;br /&gt;
&lt;br /&gt;
== [[User:JackieRipper|JackieRipper]]'s ==&lt;br /&gt;
&lt;br /&gt;
=== Tux - got root? ===&lt;br /&gt;
&lt;br /&gt;
'''Info:''' To use these for a boot screen, see [[Patch webOS Boot Themes | Boot Themes]].&lt;br /&gt;
&lt;br /&gt;
[[Image:Jackieripper-palm-logo.png]] &lt;br /&gt;
[[Image:Jackieripper-palm-logo-bright.png]]&lt;br /&gt;
&lt;br /&gt;
== [[User:pEEf|pEEf]]'s ==&lt;br /&gt;
&lt;br /&gt;
=== Tux with Blue Glow ===&lt;br /&gt;
&lt;br /&gt;
'''Info:''' To use these for a boot screen, see [[Patch webOS Boot Themes | Boot Themes]].&lt;br /&gt;
&lt;br /&gt;
[[Image:PEEf-palm-logo.png]]&lt;br /&gt;
[[Image:PEEf-palm-logo-bright.png]]&lt;br /&gt;
&lt;br /&gt;
== [[User:Templarian|Templarian]]'s ==&lt;br /&gt;
&lt;br /&gt;
=== Palm Pre Icons (FamFamFam Silk Style) ===&lt;br /&gt;
[[Image:Pre.png]]&lt;br /&gt;
[[Image:Pre_add.png]]&lt;br /&gt;
[[Image:Pre_cancel.png]]&lt;br /&gt;
[[Image:Pre_delete.png]]&lt;br /&gt;
[[Image:Pre_go.png]]&lt;br /&gt;
&lt;br /&gt;
[[Image:Pre_tux.png]] (Added this one after with Tux)&lt;br /&gt;
&lt;br /&gt;
== [[User:anomoly|anomoly]]'s ==&lt;br /&gt;
&lt;br /&gt;
=== My New Dialer ===&lt;br /&gt;
&lt;br /&gt;
Preview:&lt;br /&gt;
&lt;br /&gt;
[[Image:Newdialer.jpg|280px]]&lt;/div&gt;</summary>
		<author><name>UltraBlack</name></author>
	</entry>
	<entry>
		<id>http://wiki.webos-internals.org/index.php?title=Getting_started&amp;diff=3995</id>
		<title>Getting started</title>
		<link rel="alternate" type="text/html" href="http://wiki.webos-internals.org/index.php?title=Getting_started&amp;diff=3995"/>
		<updated>2009-08-07T09:28:52Z</updated>

		<summary type="html">&lt;p&gt;UltraBlack: Think this 2 column layout looks nicer. Need to find a way to make the last column not auto-width.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__FORCETOC__&lt;br /&gt;
&lt;br /&gt;
= Enabling Developer Mode =&lt;br /&gt;
&lt;br /&gt;
{{article-two-columns&lt;br /&gt;
|width1=320px&lt;br /&gt;
|width2=320px&lt;br /&gt;
|column1=&lt;br /&gt;
== Step 1 ==&lt;br /&gt;
&lt;br /&gt;
Type what's below in universal search to find the Developer Mode Enabler app. Run it.&lt;br /&gt;
&amp;lt;source lang=&amp;quot;text&amp;quot;&amp;gt;&lt;br /&gt;
upupdowndownleftrightleftrightbastart&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Image:Enable_developer_mode_step1.png]]&lt;br /&gt;
&lt;br /&gt;
|column2=&lt;br /&gt;
== Step 2 ==&lt;br /&gt;
&lt;br /&gt;
Set the Developer Mode toggle switch to the on position.&lt;br /&gt;
&lt;br /&gt;
[[Image:Enable_developer_mode_step2.png]]&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
= Installing Optware =&lt;br /&gt;
&lt;br /&gt;
= Running Dropbear SSH Server =&lt;/div&gt;</summary>
		<author><name>UltraBlack</name></author>
	</entry>
	<entry>
		<id>http://wiki.webos-internals.org/index.php?title=Patch_webOS_Graphics&amp;diff=3994</id>
		<title>Patch webOS Graphics</title>
		<link rel="alternate" type="text/html" href="http://wiki.webos-internals.org/index.php?title=Patch_webOS_Graphics&amp;diff=3994"/>
		<updated>2009-08-07T09:25:31Z</updated>

		<summary type="html">&lt;p&gt;UltraBlack: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{template:patch}}&lt;br /&gt;
Post all of your custom/homemade images relating to the Pre here.&lt;br /&gt;
&lt;br /&gt;
= Submissions =&lt;br /&gt;
&lt;br /&gt;
== [[User:ultraBlack|ultraBlack]]'s ==&lt;br /&gt;
&lt;br /&gt;
=== Icons ===&lt;br /&gt;
&lt;br /&gt;
All of the icons below come in sizes ranging from 256x256px to 8x8px.&lt;br /&gt;
&lt;br /&gt;
==== [http://g.imagehost.org/dl/a727b6a00b71c151815b5fe87d6a77ee/0121/Tux.ico Tux (click here to download .ico)] ====&lt;br /&gt;
[[Image:Tux-icons.png|340px]]&lt;br /&gt;
&lt;br /&gt;
==== [http://g.imagehost.org/dl/438f4729bf7116407c920d73c0af767d/0600/pre.ico Pre - Front (click here to download .ico)] ====&lt;br /&gt;
[[Image:Pre-front.png|340px]]&lt;br /&gt;
&lt;br /&gt;
==== [http://g.imagehost.org/dl/eb3d52053bd34963c530fbe7e331fc07/0004/pre2.ico Pre - Side/Tilt (click here to download .ico)] ====&lt;br /&gt;
[[Image:Pre-sidetilt.png|340px]]&lt;br /&gt;
&lt;br /&gt;
==== [http://g.imagehost.org/dl/eaf15ffaf7e1fa9c87a2cbda79e5e2a1/0994/Touchstone.ico Touchstone (click here to download .ico)] ====&lt;br /&gt;
[[Image:Pre-touchstone.png|340px]]&lt;br /&gt;
&lt;br /&gt;
=== Miscellaneous ===&lt;br /&gt;
&lt;br /&gt;
[[Image: Ultrablack-theme.png]]&lt;br /&gt;
&lt;br /&gt;
== [[User:JackieRipper|JackieRipper]]'s ==&lt;br /&gt;
&lt;br /&gt;
=== Tux - got root? ===&lt;br /&gt;
&lt;br /&gt;
'''Info:''' To use these for a boot screen, see [[Patch webOS Boot Themes | Boot Themes]].&lt;br /&gt;
&lt;br /&gt;
[[Image:Jackieripper-palm-logo.png]] &lt;br /&gt;
[[Image:Jackieripper-palm-logo-bright.png]]&lt;br /&gt;
&lt;br /&gt;
== [[User:pEEf|pEEf]]'s ==&lt;br /&gt;
&lt;br /&gt;
=== Tux with Blue Glow ===&lt;br /&gt;
&lt;br /&gt;
'''Info:''' To use these for a boot screen, see [[Patch webOS Boot Themes | Boot Themes]].&lt;br /&gt;
&lt;br /&gt;
[[Image:PEEf-palm-logo.png]]&lt;br /&gt;
[[Image:PEEf-palm-logo-bright.png]]&lt;br /&gt;
&lt;br /&gt;
== [[User:Templarian|Templarian]]'s ==&lt;br /&gt;
&lt;br /&gt;
=== Palm Pre Icons (FamFamFam Silk Style) ===&lt;br /&gt;
[[Image:Pre.png]]&lt;br /&gt;
[[Image:Pre_add.png]]&lt;br /&gt;
[[Image:Pre_cancel.png]]&lt;br /&gt;
[[Image:Pre_delete.png]]&lt;br /&gt;
[[Image:Pre_go.png]]&lt;br /&gt;
&lt;br /&gt;
[[Image:Pre_tux.png]] (Added this one after with Tux)&lt;br /&gt;
&lt;br /&gt;
== [[User:anomoly|anomoly]]'s ==&lt;br /&gt;
&lt;br /&gt;
=== My New Dialer ===&lt;br /&gt;
&lt;br /&gt;
Preview:&lt;br /&gt;
&lt;br /&gt;
[[Image:Newdialer.jpg]]&lt;/div&gt;</summary>
		<author><name>UltraBlack</name></author>
	</entry>
	<entry>
		<id>http://wiki.webos-internals.org/index.php?title=Patch_webOS_Graphics&amp;diff=3993</id>
		<title>Patch webOS Graphics</title>
		<link rel="alternate" type="text/html" href="http://wiki.webos-internals.org/index.php?title=Patch_webOS_Graphics&amp;diff=3993"/>
		<updated>2009-08-07T09:22:18Z</updated>

		<summary type="html">&lt;p&gt;UltraBlack: /* Icons */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{template:patch}}&lt;br /&gt;
Post all of your custom/homemade images relating to the Pre here.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= [[User:ultraBlack|ultraBlack]]'s Submissions=&lt;br /&gt;
&lt;br /&gt;
== Icons ==&lt;br /&gt;
&lt;br /&gt;
All of the icons below come in sizes ranging from 256x256px to 8x8px.&lt;br /&gt;
&lt;br /&gt;
=== [http://g.imagehost.org/dl/a727b6a00b71c151815b5fe87d6a77ee/0121/Tux.ico Tux (click here to download .ico)] ===&lt;br /&gt;
[[Image:Tux-icons.png|340px]]&lt;br /&gt;
&lt;br /&gt;
=== [http://g.imagehost.org/dl/438f4729bf7116407c920d73c0af767d/0600/pre.ico Pre - Front (click here to download .ico)] ===&lt;br /&gt;
[[Image:Pre-front.png|340px]]&lt;br /&gt;
&lt;br /&gt;
=== [http://g.imagehost.org/dl/eb3d52053bd34963c530fbe7e331fc07/0004/pre2.ico Pre - Side/Tilt (click here to download .ico)] ===&lt;br /&gt;
[[Image:Pre-sidetilt.png|340px]]&lt;br /&gt;
&lt;br /&gt;
=== [http://g.imagehost.org/dl/eaf15ffaf7e1fa9c87a2cbda79e5e2a1/0994/Touchstone.ico Touchstone (click here to download .ico)] ===&lt;br /&gt;
[[Image:Pre-touchstone.png|340px]]&lt;br /&gt;
&lt;br /&gt;
== Miscellaneous ==&lt;br /&gt;
&lt;br /&gt;
[[Image: Ultrablack-theme.png]]&lt;br /&gt;
&lt;br /&gt;
= [[User:JackieRipper|JackieRipper]]'s Submissions=&lt;br /&gt;
&lt;br /&gt;
== Tux - got root?==&lt;br /&gt;
&lt;br /&gt;
'''Info:''' To use these for a boot screen, see [[Patch webOS Boot Themes | Boot Themes]].&lt;br /&gt;
&lt;br /&gt;
[[Image:Jackieripper-palm-logo.png]] &lt;br /&gt;
[[Image:Jackieripper-palm-logo-bright.png]]&lt;br /&gt;
&lt;br /&gt;
= [[User:pEEf|pEEf]]'s Submissions=&lt;br /&gt;
&lt;br /&gt;
== Tux and Blue Glow ==&lt;br /&gt;
&lt;br /&gt;
'''Info:''' To use these for a boot screen, see [[Patch webOS Boot Themes | Boot Themes]].&lt;br /&gt;
&lt;br /&gt;
[[Image:PEEf-palm-logo.png]]&lt;br /&gt;
[[Image:PEEf-palm-logo-bright.png]]&lt;br /&gt;
&lt;br /&gt;
= [[User:Templarian|Templarian]]'s Submissions =&lt;br /&gt;
&lt;br /&gt;
== Palm Pre Icons (FamFamFam Silk Style) ==&lt;br /&gt;
[[Image:Pre.png]]&lt;br /&gt;
[[Image:Pre_add.png]]&lt;br /&gt;
[[Image:Pre_cancel.png]]&lt;br /&gt;
[[Image:Pre_delete.png]]&lt;br /&gt;
[[Image:Pre_go.png]]&lt;br /&gt;
&lt;br /&gt;
[[Image:Pre_tux.png]] (Added this one after with Tux)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= [[User:anomoly|anomoly]]'s submissions=&lt;br /&gt;
&lt;br /&gt;
== My New Dialer ==&lt;br /&gt;
&lt;br /&gt;
Preview:&lt;br /&gt;
&lt;br /&gt;
[[Image:Newdialer.jpg]]&lt;/div&gt;</summary>
		<author><name>UltraBlack</name></author>
	</entry>
	<entry>
		<id>http://wiki.webos-internals.org/index.php?title=Patch_webOS_Graphics&amp;diff=3992</id>
		<title>Patch webOS Graphics</title>
		<link rel="alternate" type="text/html" href="http://wiki.webos-internals.org/index.php?title=Patch_webOS_Graphics&amp;diff=3992"/>
		<updated>2009-08-07T09:14:14Z</updated>

		<summary type="html">&lt;p&gt;UltraBlack: /* [http://g.imagehost.org/dl/a727b6a00b71c151815b5fe87d6a77ee/0121/Tux.ico Tux (click here to download)] */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{template:patch}}&lt;br /&gt;
Post all of your custom/homemade images relating to the Pre here.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= [[User:ultraBlack|ultraBlack]]'s Submissions=&lt;br /&gt;
&lt;br /&gt;
== Icons ==&lt;br /&gt;
&lt;br /&gt;
=== Tux ===&lt;br /&gt;
[[Image:Tux-icons.png|link=http://g.imagehost.org/dl/a727b6a00b71c151815b5fe87d6a77ee/0121/Tux.ico]]&lt;br /&gt;
&lt;br /&gt;
=== [http://g.imagehost.org/dl/438f4729bf7116407c920d73c0af767d/0600/pre.ico Pre - Front (click here to download)] ===&lt;br /&gt;
Preview: [[Image:Pre-front.png]]&lt;br /&gt;
&lt;br /&gt;
=== [http://g.imagehost.org/dl/eb3d52053bd34963c530fbe7e331fc07/0004/pre2.ico Pre - Side/Tilt (click here to download)] ===&lt;br /&gt;
Preview: [[Image:Pre-sidetilt.png]]&lt;br /&gt;
&lt;br /&gt;
=== [http://g.imagehost.org/dl/eaf15ffaf7e1fa9c87a2cbda79e5e2a1/0994/Touchstone.ico Touchstone (click here to download)] ===&lt;br /&gt;
Preview: [[Image:Pre-touchstone.png]]&lt;br /&gt;
&lt;br /&gt;
== Miscellaneous ==&lt;br /&gt;
&lt;br /&gt;
[[Image: Ultrablack-theme.png]]&lt;br /&gt;
&lt;br /&gt;
= [[User:JackieRipper|JackieRipper]]'s Submissions=&lt;br /&gt;
&lt;br /&gt;
== Tux - got root?==&lt;br /&gt;
&lt;br /&gt;
'''Info:''' To use these for a boot screen, see [[Patch webOS Boot Themes | Boot Themes]].&lt;br /&gt;
&lt;br /&gt;
[[Image:Jackieripper-palm-logo.png]] &lt;br /&gt;
[[Image:Jackieripper-palm-logo-bright.png]]&lt;br /&gt;
&lt;br /&gt;
= [[User:pEEf|pEEf]]'s Submissions=&lt;br /&gt;
&lt;br /&gt;
== Tux and Blue Glow ==&lt;br /&gt;
&lt;br /&gt;
'''Info:''' To use these for a boot screen, see [[Patch webOS Boot Themes | Boot Themes]].&lt;br /&gt;
&lt;br /&gt;
[[Image:PEEf-palm-logo.png]]&lt;br /&gt;
[[Image:PEEf-palm-logo-bright.png]]&lt;br /&gt;
&lt;br /&gt;
= [[User:Templarian|Templarian]]'s Submissions =&lt;br /&gt;
&lt;br /&gt;
== Palm Pre Icons (FamFamFam Silk Style) ==&lt;br /&gt;
[[Image:Pre.png]]&lt;br /&gt;
[[Image:Pre_add.png]]&lt;br /&gt;
[[Image:Pre_cancel.png]]&lt;br /&gt;
[[Image:Pre_delete.png]]&lt;br /&gt;
[[Image:Pre_go.png]]&lt;br /&gt;
&lt;br /&gt;
[[Image:Pre_tux.png]] (Added this one after with Tux)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= [[User:anomoly|anomoly]]'s submissions=&lt;br /&gt;
&lt;br /&gt;
== My New Dialer ==&lt;br /&gt;
&lt;br /&gt;
Preview:&lt;br /&gt;
&lt;br /&gt;
[[Image:Newdialer.jpg]]&lt;/div&gt;</summary>
		<author><name>UltraBlack</name></author>
	</entry>
	<entry>
		<id>http://wiki.webos-internals.org/index.php?title=Patch_webOS_Graphics&amp;diff=3991</id>
		<title>Patch webOS Graphics</title>
		<link rel="alternate" type="text/html" href="http://wiki.webos-internals.org/index.php?title=Patch_webOS_Graphics&amp;diff=3991"/>
		<updated>2009-08-07T09:11:25Z</updated>

		<summary type="html">&lt;p&gt;UltraBlack: /* ultraBlack's Submissions */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{template:patch}}&lt;br /&gt;
Post all of your custom/homemade images relating to the Pre here.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= [[User:ultraBlack|ultraBlack]]'s Submissions=&lt;br /&gt;
&lt;br /&gt;
== Icons ==&lt;br /&gt;
&lt;br /&gt;
=== [http://g.imagehost.org/dl/a727b6a00b71c151815b5fe87d6a77ee/0121/Tux.ico Tux (click here to download)] ===&lt;br /&gt;
Preview: [[Image:Tux-icons.png]]&lt;br /&gt;
&lt;br /&gt;
=== [http://g.imagehost.org/dl/438f4729bf7116407c920d73c0af767d/0600/pre.ico Pre - Front (click here to download)] ===&lt;br /&gt;
Preview: [[Image:Pre-front.png]]&lt;br /&gt;
&lt;br /&gt;
=== [http://g.imagehost.org/dl/eb3d52053bd34963c530fbe7e331fc07/0004/pre2.ico Pre - Side/Tilt (click here to download)] ===&lt;br /&gt;
Preview: [[Image:Pre-sidetilt.png]]&lt;br /&gt;
&lt;br /&gt;
=== [http://g.imagehost.org/dl/eaf15ffaf7e1fa9c87a2cbda79e5e2a1/0994/Touchstone.ico Touchstone (click here to download)] ===&lt;br /&gt;
Preview: [[Image:Pre-touchstone.png]]&lt;br /&gt;
&lt;br /&gt;
== Miscellaneous ==&lt;br /&gt;
&lt;br /&gt;
[[Image: Ultrablack-theme.png]]&lt;br /&gt;
&lt;br /&gt;
= [[User:JackieRipper|JackieRipper]]'s Submissions=&lt;br /&gt;
&lt;br /&gt;
== Tux - got root?==&lt;br /&gt;
&lt;br /&gt;
'''Info:''' To use these for a boot screen, see [[Patch webOS Boot Themes | Boot Themes]].&lt;br /&gt;
&lt;br /&gt;
[[Image:Jackieripper-palm-logo.png]] &lt;br /&gt;
[[Image:Jackieripper-palm-logo-bright.png]]&lt;br /&gt;
&lt;br /&gt;
= [[User:pEEf|pEEf]]'s Submissions=&lt;br /&gt;
&lt;br /&gt;
== Tux and Blue Glow ==&lt;br /&gt;
&lt;br /&gt;
'''Info:''' To use these for a boot screen, see [[Patch webOS Boot Themes | Boot Themes]].&lt;br /&gt;
&lt;br /&gt;
[[Image:PEEf-palm-logo.png]]&lt;br /&gt;
[[Image:PEEf-palm-logo-bright.png]]&lt;br /&gt;
&lt;br /&gt;
= [[User:Templarian|Templarian]]'s Submissions =&lt;br /&gt;
&lt;br /&gt;
== Palm Pre Icons (FamFamFam Silk Style) ==&lt;br /&gt;
[[Image:Pre.png]]&lt;br /&gt;
[[Image:Pre_add.png]]&lt;br /&gt;
[[Image:Pre_cancel.png]]&lt;br /&gt;
[[Image:Pre_delete.png]]&lt;br /&gt;
[[Image:Pre_go.png]]&lt;br /&gt;
&lt;br /&gt;
[[Image:Pre_tux.png]] (Added this one after with Tux)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= [[User:anomoly|anomoly]]'s submissions=&lt;br /&gt;
&lt;br /&gt;
== My New Dialer ==&lt;br /&gt;
&lt;br /&gt;
Preview:&lt;br /&gt;
&lt;br /&gt;
[[Image:Newdialer.jpg]]&lt;/div&gt;</summary>
		<author><name>UltraBlack</name></author>
	</entry>
	<entry>
		<id>http://wiki.webos-internals.org/index.php?title=Patch_webOS_Graphics&amp;diff=3990</id>
		<title>Patch webOS Graphics</title>
		<link rel="alternate" type="text/html" href="http://wiki.webos-internals.org/index.php?title=Patch_webOS_Graphics&amp;diff=3990"/>
		<updated>2009-08-07T09:10:33Z</updated>

		<summary type="html">&lt;p&gt;UltraBlack: /* ultraBlack's Submissions */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{template:patch}}&lt;br /&gt;
Post all of your custom/homemade images relating to the Pre here.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= [[User:ultraBlack|ultraBlack]]'s Submissions=&lt;br /&gt;
&lt;br /&gt;
== Icons==&lt;br /&gt;
&lt;br /&gt;
=== [http://g.imagehost.org/dl/a727b6a00b71c151815b5fe87d6a77ee/0121/Tux.ico Tux (click here to download)]===&lt;br /&gt;
Preview: [[Image:Tux-icons.png]]&lt;br /&gt;
&lt;br /&gt;
=== [http://g.imagehost.org/dl/438f4729bf7116407c920d73c0af767d/0600/pre.ico Pre - Front (click here to download)]===&lt;br /&gt;
Preview: [[Image:Pre-front.png]]&lt;br /&gt;
&lt;br /&gt;
=== [http://g.imagehost.org/dl/eb3d52053bd34963c530fbe7e331fc07/0004/pre2.ico Pre - Side/Tilt (click here to download)]===&lt;br /&gt;
Preview: [[Image:Pre-sidetilt.png]]&lt;br /&gt;
&lt;br /&gt;
=== [http://g.imagehost.org/dl/eaf15ffaf7e1fa9c87a2cbda79e5e2a1/0994/Touchstone.ico Touchstone (click here to download)]===&lt;br /&gt;
Preview: [[Image:Pre-touchstone.png]]&lt;br /&gt;
&lt;br /&gt;
= [[User:JackieRipper|JackieRipper]]'s Submissions=&lt;br /&gt;
&lt;br /&gt;
== Tux - got root?==&lt;br /&gt;
&lt;br /&gt;
'''Info:''' To use these for a boot screen, see [[Patch webOS Boot Themes | Boot Themes]].&lt;br /&gt;
&lt;br /&gt;
[[Image:Jackieripper-palm-logo.png]] &lt;br /&gt;
[[Image:Jackieripper-palm-logo-bright.png]]&lt;br /&gt;
&lt;br /&gt;
= [[User:pEEf|pEEf]]'s Submissions=&lt;br /&gt;
&lt;br /&gt;
== Tux and Blue Glow ==&lt;br /&gt;
&lt;br /&gt;
'''Info:''' To use these for a boot screen, see [[Patch webOS Boot Themes | Boot Themes]].&lt;br /&gt;
&lt;br /&gt;
[[Image:PEEf-palm-logo.png]]&lt;br /&gt;
[[Image:PEEf-palm-logo-bright.png]]&lt;br /&gt;
&lt;br /&gt;
= [[User:Templarian|Templarian]]'s Submissions =&lt;br /&gt;
&lt;br /&gt;
== Palm Pre Icons (FamFamFam Silk Style) ==&lt;br /&gt;
[[Image:Pre.png]]&lt;br /&gt;
[[Image:Pre_add.png]]&lt;br /&gt;
[[Image:Pre_cancel.png]]&lt;br /&gt;
[[Image:Pre_delete.png]]&lt;br /&gt;
[[Image:Pre_go.png]]&lt;br /&gt;
&lt;br /&gt;
[[Image:Pre_tux.png]] (Added this one after with Tux)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= [[User:anomoly|anomoly]]'s submissions=&lt;br /&gt;
&lt;br /&gt;
== My New Dialer ==&lt;br /&gt;
&lt;br /&gt;
Preview:&lt;br /&gt;
&lt;br /&gt;
[[Image:Newdialer.jpg]]&lt;/div&gt;</summary>
		<author><name>UltraBlack</name></author>
	</entry>
	<entry>
		<id>http://wiki.webos-internals.org/index.php?title=Patch_webOS_Graphics&amp;diff=3989</id>
		<title>Patch webOS Graphics</title>
		<link rel="alternate" type="text/html" href="http://wiki.webos-internals.org/index.php?title=Patch_webOS_Graphics&amp;diff=3989"/>
		<updated>2009-08-07T09:10:15Z</updated>

		<summary type="html">&lt;p&gt;UltraBlack: /* [http://g.imagehost.org/dl/eaf15ffaf7e1fa9c87a2cbda79e5e2a1/0994/Touchstone.ico Touchstone] */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{template:patch}}&lt;br /&gt;
Post all of your custom/homemade images relating to the Pre here.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= [[User:ultraBlack|ultraBlack]]'s Submissions=&lt;br /&gt;
&lt;br /&gt;
[[Image:Ultrablack-theme.png]]&lt;br /&gt;
&lt;br /&gt;
== Icons==&lt;br /&gt;
&lt;br /&gt;
=== [http://g.imagehost.org/dl/a727b6a00b71c151815b5fe87d6a77ee/0121/Tux.ico Tux]===&lt;br /&gt;
Preview: [[Image:Tux-icons.png]]&lt;br /&gt;
&lt;br /&gt;
=== [http://g.imagehost.org/dl/438f4729bf7116407c920d73c0af767d/0600/pre.ico Pre - Front]===&lt;br /&gt;
Preview: [[Image:Pre-front.png]]&lt;br /&gt;
&lt;br /&gt;
=== [http://g.imagehost.org/dl/eb3d52053bd34963c530fbe7e331fc07/0004/pre2.ico Pre - Side/Tilt]===&lt;br /&gt;
Preview: [[Image:Pre-sidetilt.png]]&lt;br /&gt;
&lt;br /&gt;
=== [http://g.imagehost.org/dl/eaf15ffaf7e1fa9c87a2cbda79e5e2a1/0994/Touchstone.ico Touchstone (click here to download)]===&lt;br /&gt;
Preview: [[Image:Pre-touchstone.png]]&lt;br /&gt;
&lt;br /&gt;
= [[User:JackieRipper|JackieRipper]]'s Submissions=&lt;br /&gt;
&lt;br /&gt;
== Tux - got root?==&lt;br /&gt;
&lt;br /&gt;
'''Info:''' To use these for a boot screen, see [[Patch webOS Boot Themes | Boot Themes]].&lt;br /&gt;
&lt;br /&gt;
[[Image:Jackieripper-palm-logo.png]] &lt;br /&gt;
[[Image:Jackieripper-palm-logo-bright.png]]&lt;br /&gt;
&lt;br /&gt;
= [[User:pEEf|pEEf]]'s Submissions=&lt;br /&gt;
&lt;br /&gt;
== Tux and Blue Glow ==&lt;br /&gt;
&lt;br /&gt;
'''Info:''' To use these for a boot screen, see [[Patch webOS Boot Themes | Boot Themes]].&lt;br /&gt;
&lt;br /&gt;
[[Image:PEEf-palm-logo.png]]&lt;br /&gt;
[[Image:PEEf-palm-logo-bright.png]]&lt;br /&gt;
&lt;br /&gt;
= [[User:Templarian|Templarian]]'s Submissions =&lt;br /&gt;
&lt;br /&gt;
== Palm Pre Icons (FamFamFam Silk Style) ==&lt;br /&gt;
[[Image:Pre.png]]&lt;br /&gt;
[[Image:Pre_add.png]]&lt;br /&gt;
[[Image:Pre_cancel.png]]&lt;br /&gt;
[[Image:Pre_delete.png]]&lt;br /&gt;
[[Image:Pre_go.png]]&lt;br /&gt;
&lt;br /&gt;
[[Image:Pre_tux.png]] (Added this one after with Tux)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= [[User:anomoly|anomoly]]'s submissions=&lt;br /&gt;
&lt;br /&gt;
== My New Dialer ==&lt;br /&gt;
&lt;br /&gt;
Preview:&lt;br /&gt;
&lt;br /&gt;
[[Image:Newdialer.jpg]]&lt;/div&gt;</summary>
		<author><name>UltraBlack</name></author>
	</entry>
	<entry>
		<id>http://wiki.webos-internals.org/index.php?title=Patch_webOS_Graphics&amp;diff=3988</id>
		<title>Patch webOS Graphics</title>
		<link rel="alternate" type="text/html" href="http://wiki.webos-internals.org/index.php?title=Patch_webOS_Graphics&amp;diff=3988"/>
		<updated>2009-08-07T09:09:34Z</updated>

		<summary type="html">&lt;p&gt;UltraBlack: /* pEEf's Submissions */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{template:patch}}&lt;br /&gt;
Post all of your custom/homemade images relating to the Pre here.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= [[User:ultraBlack|ultraBlack]]'s Submissions=&lt;br /&gt;
&lt;br /&gt;
[[Image:Ultrablack-theme.png]]&lt;br /&gt;
&lt;br /&gt;
== Icons==&lt;br /&gt;
&lt;br /&gt;
=== [http://g.imagehost.org/dl/a727b6a00b71c151815b5fe87d6a77ee/0121/Tux.ico Tux]===&lt;br /&gt;
Preview: [[Image:Tux-icons.png]]&lt;br /&gt;
&lt;br /&gt;
=== [http://g.imagehost.org/dl/438f4729bf7116407c920d73c0af767d/0600/pre.ico Pre - Front]===&lt;br /&gt;
Preview: [[Image:Pre-front.png]]&lt;br /&gt;
&lt;br /&gt;
=== [http://g.imagehost.org/dl/eb3d52053bd34963c530fbe7e331fc07/0004/pre2.ico Pre - Side/Tilt]===&lt;br /&gt;
Preview: [[Image:Pre-sidetilt.png]]&lt;br /&gt;
&lt;br /&gt;
=== [http://g.imagehost.org/dl/eaf15ffaf7e1fa9c87a2cbda79e5e2a1/0994/Touchstone.ico Touchstone]===&lt;br /&gt;
Preview: [[Image:Pre-touchstone.png]]&lt;br /&gt;
&lt;br /&gt;
= [[User:JackieRipper|JackieRipper]]'s Submissions=&lt;br /&gt;
&lt;br /&gt;
== Tux - got root?==&lt;br /&gt;
&lt;br /&gt;
'''Info:''' To use these for a boot screen, see [[Patch webOS Boot Themes | Boot Themes]].&lt;br /&gt;
&lt;br /&gt;
[[Image:Jackieripper-palm-logo.png]] &lt;br /&gt;
[[Image:Jackieripper-palm-logo-bright.png]]&lt;br /&gt;
&lt;br /&gt;
= [[User:pEEf|pEEf]]'s Submissions=&lt;br /&gt;
&lt;br /&gt;
== Tux and Blue Glow ==&lt;br /&gt;
&lt;br /&gt;
'''Info:''' To use these for a boot screen, see [[Patch webOS Boot Themes | Boot Themes]].&lt;br /&gt;
&lt;br /&gt;
[[Image:PEEf-palm-logo.png]]&lt;br /&gt;
[[Image:PEEf-palm-logo-bright.png]]&lt;br /&gt;
&lt;br /&gt;
= [[User:Templarian|Templarian]]'s Submissions =&lt;br /&gt;
&lt;br /&gt;
== Palm Pre Icons (FamFamFam Silk Style) ==&lt;br /&gt;
[[Image:Pre.png]]&lt;br /&gt;
[[Image:Pre_add.png]]&lt;br /&gt;
[[Image:Pre_cancel.png]]&lt;br /&gt;
[[Image:Pre_delete.png]]&lt;br /&gt;
[[Image:Pre_go.png]]&lt;br /&gt;
&lt;br /&gt;
[[Image:Pre_tux.png]] (Added this one after with Tux)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= [[User:anomoly|anomoly]]'s submissions=&lt;br /&gt;
&lt;br /&gt;
== My New Dialer ==&lt;br /&gt;
&lt;br /&gt;
Preview:&lt;br /&gt;
&lt;br /&gt;
[[Image:Newdialer.jpg]]&lt;/div&gt;</summary>
		<author><name>UltraBlack</name></author>
	</entry>
	<entry>
		<id>http://wiki.webos-internals.org/index.php?title=Patch_webOS_Graphics&amp;diff=3987</id>
		<title>Patch webOS Graphics</title>
		<link rel="alternate" type="text/html" href="http://wiki.webos-internals.org/index.php?title=Patch_webOS_Graphics&amp;diff=3987"/>
		<updated>2009-08-07T09:09:11Z</updated>

		<summary type="html">&lt;p&gt;UltraBlack: /* JackieRipper's Submissions */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{template:patch}}&lt;br /&gt;
Post all of your custom/homemade images relating to the Pre here.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= [[User:ultraBlack|ultraBlack]]'s Submissions=&lt;br /&gt;
&lt;br /&gt;
[[Image:Ultrablack-theme.png]]&lt;br /&gt;
&lt;br /&gt;
== Icons==&lt;br /&gt;
&lt;br /&gt;
=== [http://g.imagehost.org/dl/a727b6a00b71c151815b5fe87d6a77ee/0121/Tux.ico Tux]===&lt;br /&gt;
Preview: [[Image:Tux-icons.png]]&lt;br /&gt;
&lt;br /&gt;
=== [http://g.imagehost.org/dl/438f4729bf7116407c920d73c0af767d/0600/pre.ico Pre - Front]===&lt;br /&gt;
Preview: [[Image:Pre-front.png]]&lt;br /&gt;
&lt;br /&gt;
=== [http://g.imagehost.org/dl/eb3d52053bd34963c530fbe7e331fc07/0004/pre2.ico Pre - Side/Tilt]===&lt;br /&gt;
Preview: [[Image:Pre-sidetilt.png]]&lt;br /&gt;
&lt;br /&gt;
=== [http://g.imagehost.org/dl/eaf15ffaf7e1fa9c87a2cbda79e5e2a1/0994/Touchstone.ico Touchstone]===&lt;br /&gt;
Preview: [[Image:Pre-touchstone.png]]&lt;br /&gt;
&lt;br /&gt;
= [[User:JackieRipper|JackieRipper]]'s Submissions=&lt;br /&gt;
&lt;br /&gt;
== Tux - got root?==&lt;br /&gt;
&lt;br /&gt;
'''Info:''' To use these for a boot screen, see [[Patch webOS Boot Themes | Boot Themes]].&lt;br /&gt;
&lt;br /&gt;
[[Image:Jackieripper-palm-logo.png]] &lt;br /&gt;
[[Image:Jackieripper-palm-logo-bright.png]]&lt;br /&gt;
&lt;br /&gt;
= pEEf's Submissions=&lt;br /&gt;
&lt;br /&gt;
== Tux and Blue Glow ==&lt;br /&gt;
&lt;br /&gt;
'''Info:''' To use these for a boot screen, see [[Patch webOS Boot Themes | Boot Themes]].&lt;br /&gt;
&lt;br /&gt;
[[Image:PEEf-palm-logo.png]]&lt;br /&gt;
[[Image:PEEf-palm-logo-bright.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= [[User:Templarian|Templarian]]'s Submissions =&lt;br /&gt;
&lt;br /&gt;
== Palm Pre Icons (FamFamFam Silk Style) ==&lt;br /&gt;
[[Image:Pre.png]]&lt;br /&gt;
[[Image:Pre_add.png]]&lt;br /&gt;
[[Image:Pre_cancel.png]]&lt;br /&gt;
[[Image:Pre_delete.png]]&lt;br /&gt;
[[Image:Pre_go.png]]&lt;br /&gt;
&lt;br /&gt;
[[Image:Pre_tux.png]] (Added this one after with Tux)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= [[User:anomoly|anomoly]]'s submissions=&lt;br /&gt;
&lt;br /&gt;
== My New Dialer ==&lt;br /&gt;
&lt;br /&gt;
Preview:&lt;br /&gt;
&lt;br /&gt;
[[Image:Newdialer.jpg]]&lt;/div&gt;</summary>
		<author><name>UltraBlack</name></author>
	</entry>
	<entry>
		<id>http://wiki.webos-internals.org/index.php?title=Patch_webOS_Graphics&amp;diff=3986</id>
		<title>Patch webOS Graphics</title>
		<link rel="alternate" type="text/html" href="http://wiki.webos-internals.org/index.php?title=Patch_webOS_Graphics&amp;diff=3986"/>
		<updated>2009-08-07T09:08:46Z</updated>

		<summary type="html">&lt;p&gt;UltraBlack: /* ultraBlack's Submissions */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{template:patch}}&lt;br /&gt;
Post all of your custom/homemade images relating to the Pre here.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= [[User:ultraBlack|ultraBlack]]'s Submissions=&lt;br /&gt;
&lt;br /&gt;
[[Image:Ultrablack-theme.png]]&lt;br /&gt;
&lt;br /&gt;
== Icons==&lt;br /&gt;
&lt;br /&gt;
=== [http://g.imagehost.org/dl/a727b6a00b71c151815b5fe87d6a77ee/0121/Tux.ico Tux]===&lt;br /&gt;
Preview: [[Image:Tux-icons.png]]&lt;br /&gt;
&lt;br /&gt;
=== [http://g.imagehost.org/dl/438f4729bf7116407c920d73c0af767d/0600/pre.ico Pre - Front]===&lt;br /&gt;
Preview: [[Image:Pre-front.png]]&lt;br /&gt;
&lt;br /&gt;
=== [http://g.imagehost.org/dl/eb3d52053bd34963c530fbe7e331fc07/0004/pre2.ico Pre - Side/Tilt]===&lt;br /&gt;
Preview: [[Image:Pre-sidetilt.png]]&lt;br /&gt;
&lt;br /&gt;
=== [http://g.imagehost.org/dl/eaf15ffaf7e1fa9c87a2cbda79e5e2a1/0994/Touchstone.ico Touchstone]===&lt;br /&gt;
Preview: [[Image:Pre-touchstone.png]]&lt;br /&gt;
&lt;br /&gt;
= JackieRipper's Submissions=&lt;br /&gt;
&lt;br /&gt;
== Tux - got root?==&lt;br /&gt;
&lt;br /&gt;
'''Info:''' To use these for a boot screen, see [[Patch webOS Boot Themes | Boot Themes]].&lt;br /&gt;
&lt;br /&gt;
[[Image:Jackieripper-palm-logo.png]] &lt;br /&gt;
[[Image:Jackieripper-palm-logo-bright.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= pEEf's Submissions=&lt;br /&gt;
&lt;br /&gt;
== Tux and Blue Glow ==&lt;br /&gt;
&lt;br /&gt;
'''Info:''' To use these for a boot screen, see [[Patch webOS Boot Themes | Boot Themes]].&lt;br /&gt;
&lt;br /&gt;
[[Image:PEEf-palm-logo.png]]&lt;br /&gt;
[[Image:PEEf-palm-logo-bright.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= [[User:Templarian|Templarian]]'s Submissions =&lt;br /&gt;
&lt;br /&gt;
== Palm Pre Icons (FamFamFam Silk Style) ==&lt;br /&gt;
[[Image:Pre.png]]&lt;br /&gt;
[[Image:Pre_add.png]]&lt;br /&gt;
[[Image:Pre_cancel.png]]&lt;br /&gt;
[[Image:Pre_delete.png]]&lt;br /&gt;
[[Image:Pre_go.png]]&lt;br /&gt;
&lt;br /&gt;
[[Image:Pre_tux.png]] (Added this one after with Tux)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= [[User:anomoly|anomoly]]'s submissions=&lt;br /&gt;
&lt;br /&gt;
== My New Dialer ==&lt;br /&gt;
&lt;br /&gt;
Preview:&lt;br /&gt;
&lt;br /&gt;
[[Image:Newdialer.jpg]]&lt;/div&gt;</summary>
		<author><name>UltraBlack</name></author>
	</entry>
	<entry>
		<id>http://wiki.webos-internals.org/index.php?title=Patch_webOS_Graphics&amp;diff=3985</id>
		<title>Patch webOS Graphics</title>
		<link rel="alternate" type="text/html" href="http://wiki.webos-internals.org/index.php?title=Patch_webOS_Graphics&amp;diff=3985"/>
		<updated>2009-08-07T09:08:19Z</updated>

		<summary type="html">&lt;p&gt;UltraBlack: /* User:anomoly's submissions */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{template:patch}}&lt;br /&gt;
Post all of your custom/homemade images relating to the Pre here.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= ultraBlack's Submissions=&lt;br /&gt;
&lt;br /&gt;
[[Image:Ultrablack-theme.png]]&lt;br /&gt;
&lt;br /&gt;
== Icons==&lt;br /&gt;
&lt;br /&gt;
=== [http://g.imagehost.org/dl/a727b6a00b71c151815b5fe87d6a77ee/0121/Tux.ico Tux]===&lt;br /&gt;
Preview: [[Image:Tux-icons.png]]&lt;br /&gt;
&lt;br /&gt;
=== [http://g.imagehost.org/dl/438f4729bf7116407c920d73c0af767d/0600/pre.ico Pre - Front]===&lt;br /&gt;
Preview: [[Image:Pre-front.png]]&lt;br /&gt;
&lt;br /&gt;
=== [http://g.imagehost.org/dl/eb3d52053bd34963c530fbe7e331fc07/0004/pre2.ico Pre - Side/Tilt]===&lt;br /&gt;
Preview: [[Image:Pre-sidetilt.png]]&lt;br /&gt;
&lt;br /&gt;
=== [http://g.imagehost.org/dl/eaf15ffaf7e1fa9c87a2cbda79e5e2a1/0994/Touchstone.ico Touchstone]===&lt;br /&gt;
Preview: [[Image:Pre-touchstone.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= JackieRipper's Submissions=&lt;br /&gt;
&lt;br /&gt;
== Tux - got root?==&lt;br /&gt;
&lt;br /&gt;
'''Info:''' To use these for a boot screen, see [[Patch webOS Boot Themes | Boot Themes]].&lt;br /&gt;
&lt;br /&gt;
[[Image:Jackieripper-palm-logo.png]] &lt;br /&gt;
[[Image:Jackieripper-palm-logo-bright.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= pEEf's Submissions=&lt;br /&gt;
&lt;br /&gt;
== Tux and Blue Glow ==&lt;br /&gt;
&lt;br /&gt;
'''Info:''' To use these for a boot screen, see [[Patch webOS Boot Themes | Boot Themes]].&lt;br /&gt;
&lt;br /&gt;
[[Image:PEEf-palm-logo.png]]&lt;br /&gt;
[[Image:PEEf-palm-logo-bright.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= [[User:Templarian|Templarian]]'s Submissions =&lt;br /&gt;
&lt;br /&gt;
== Palm Pre Icons (FamFamFam Silk Style) ==&lt;br /&gt;
[[Image:Pre.png]]&lt;br /&gt;
[[Image:Pre_add.png]]&lt;br /&gt;
[[Image:Pre_cancel.png]]&lt;br /&gt;
[[Image:Pre_delete.png]]&lt;br /&gt;
[[Image:Pre_go.png]]&lt;br /&gt;
&lt;br /&gt;
[[Image:Pre_tux.png]] (Added this one after with Tux)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= [[User:anomoly|anomoly]]'s submissions=&lt;br /&gt;
&lt;br /&gt;
== My New Dialer ==&lt;br /&gt;
&lt;br /&gt;
Preview:&lt;br /&gt;
&lt;br /&gt;
[[Image:Newdialer.jpg]]&lt;/div&gt;</summary>
		<author><name>UltraBlack</name></author>
	</entry>
	<entry>
		<id>http://wiki.webos-internals.org/index.php?title=Patch_webOS_Graphics&amp;diff=3984</id>
		<title>Patch webOS Graphics</title>
		<link rel="alternate" type="text/html" href="http://wiki.webos-internals.org/index.php?title=Patch_webOS_Graphics&amp;diff=3984"/>
		<updated>2009-08-07T09:08:08Z</updated>

		<summary type="html">&lt;p&gt;UltraBlack: /* my new dialer */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{template:patch}}&lt;br /&gt;
Post all of your custom/homemade images relating to the Pre here.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= ultraBlack's Submissions=&lt;br /&gt;
&lt;br /&gt;
[[Image:Ultrablack-theme.png]]&lt;br /&gt;
&lt;br /&gt;
== Icons==&lt;br /&gt;
&lt;br /&gt;
=== [http://g.imagehost.org/dl/a727b6a00b71c151815b5fe87d6a77ee/0121/Tux.ico Tux]===&lt;br /&gt;
Preview: [[Image:Tux-icons.png]]&lt;br /&gt;
&lt;br /&gt;
=== [http://g.imagehost.org/dl/438f4729bf7116407c920d73c0af767d/0600/pre.ico Pre - Front]===&lt;br /&gt;
Preview: [[Image:Pre-front.png]]&lt;br /&gt;
&lt;br /&gt;
=== [http://g.imagehost.org/dl/eb3d52053bd34963c530fbe7e331fc07/0004/pre2.ico Pre - Side/Tilt]===&lt;br /&gt;
Preview: [[Image:Pre-sidetilt.png]]&lt;br /&gt;
&lt;br /&gt;
=== [http://g.imagehost.org/dl/eaf15ffaf7e1fa9c87a2cbda79e5e2a1/0994/Touchstone.ico Touchstone]===&lt;br /&gt;
Preview: [[Image:Pre-touchstone.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= JackieRipper's Submissions=&lt;br /&gt;
&lt;br /&gt;
== Tux - got root?==&lt;br /&gt;
&lt;br /&gt;
'''Info:''' To use these for a boot screen, see [[Patch webOS Boot Themes | Boot Themes]].&lt;br /&gt;
&lt;br /&gt;
[[Image:Jackieripper-palm-logo.png]] &lt;br /&gt;
[[Image:Jackieripper-palm-logo-bright.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= pEEf's Submissions=&lt;br /&gt;
&lt;br /&gt;
== Tux and Blue Glow ==&lt;br /&gt;
&lt;br /&gt;
'''Info:''' To use these for a boot screen, see [[Patch webOS Boot Themes | Boot Themes]].&lt;br /&gt;
&lt;br /&gt;
[[Image:PEEf-palm-logo.png]]&lt;br /&gt;
[[Image:PEEf-palm-logo-bright.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= [[User:Templarian|Templarian]]'s Submissions =&lt;br /&gt;
&lt;br /&gt;
== Palm Pre Icons (FamFamFam Silk Style) ==&lt;br /&gt;
[[Image:Pre.png]]&lt;br /&gt;
[[Image:Pre_add.png]]&lt;br /&gt;
[[Image:Pre_cancel.png]]&lt;br /&gt;
[[Image:Pre_delete.png]]&lt;br /&gt;
[[Image:Pre_go.png]]&lt;br /&gt;
&lt;br /&gt;
[[Image:Pre_tux.png]] (Added this one after with Tux)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= [[User:anomoly]]'s submissions=&lt;br /&gt;
&lt;br /&gt;
== My New Dialer ==&lt;br /&gt;
&lt;br /&gt;
Preview:&lt;br /&gt;
&lt;br /&gt;
[[Image:Newdialer.jpg]]&lt;/div&gt;</summary>
		<author><name>UltraBlack</name></author>
	</entry>
	<entry>
		<id>http://wiki.webos-internals.org/index.php?title=Patch_webOS_Graphics&amp;diff=3983</id>
		<title>Patch webOS Graphics</title>
		<link rel="alternate" type="text/html" href="http://wiki.webos-internals.org/index.php?title=Patch_webOS_Graphics&amp;diff=3983"/>
		<updated>2009-08-07T09:06:42Z</updated>

		<summary type="html">&lt;p&gt;UltraBlack: /* anomoly's submissions */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{template:patch}}&lt;br /&gt;
Post all of your custom/homemade images relating to the Pre here.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= ultraBlack's Submissions=&lt;br /&gt;
&lt;br /&gt;
[[Image:Ultrablack-theme.png]]&lt;br /&gt;
&lt;br /&gt;
== Icons==&lt;br /&gt;
&lt;br /&gt;
=== [http://g.imagehost.org/dl/a727b6a00b71c151815b5fe87d6a77ee/0121/Tux.ico Tux]===&lt;br /&gt;
Preview: [[Image:Tux-icons.png]]&lt;br /&gt;
&lt;br /&gt;
=== [http://g.imagehost.org/dl/438f4729bf7116407c920d73c0af767d/0600/pre.ico Pre - Front]===&lt;br /&gt;
Preview: [[Image:Pre-front.png]]&lt;br /&gt;
&lt;br /&gt;
=== [http://g.imagehost.org/dl/eb3d52053bd34963c530fbe7e331fc07/0004/pre2.ico Pre - Side/Tilt]===&lt;br /&gt;
Preview: [[Image:Pre-sidetilt.png]]&lt;br /&gt;
&lt;br /&gt;
=== [http://g.imagehost.org/dl/eaf15ffaf7e1fa9c87a2cbda79e5e2a1/0994/Touchstone.ico Touchstone]===&lt;br /&gt;
Preview: [[Image:Pre-touchstone.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= JackieRipper's Submissions=&lt;br /&gt;
&lt;br /&gt;
== Tux - got root?==&lt;br /&gt;
&lt;br /&gt;
'''Info:''' To use these for a boot screen, see [[Patch webOS Boot Themes | Boot Themes]].&lt;br /&gt;
&lt;br /&gt;
[[Image:Jackieripper-palm-logo.png]] &lt;br /&gt;
[[Image:Jackieripper-palm-logo-bright.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= pEEf's Submissions=&lt;br /&gt;
&lt;br /&gt;
== Tux and Blue Glow ==&lt;br /&gt;
&lt;br /&gt;
'''Info:''' To use these for a boot screen, see [[Patch webOS Boot Themes | Boot Themes]].&lt;br /&gt;
&lt;br /&gt;
[[Image:PEEf-palm-logo.png]]&lt;br /&gt;
[[Image:PEEf-palm-logo-bright.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= [[User:Templarian|Templarian]]'s Submissions =&lt;br /&gt;
&lt;br /&gt;
== Palm Pre Icons (FamFamFam Silk Style) ==&lt;br /&gt;
[[Image:Pre.png]]&lt;br /&gt;
[[Image:Pre_add.png]]&lt;br /&gt;
[[Image:Pre_cancel.png]]&lt;br /&gt;
[[Image:Pre_delete.png]]&lt;br /&gt;
[[Image:Pre_go.png]]&lt;br /&gt;
&lt;br /&gt;
[[Image:Pre_tux.png]] (Added this one after with Tux)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= [[User:anomoly]]'s submissions=&lt;br /&gt;
&lt;br /&gt;
== my new dialer ==&lt;br /&gt;
&lt;br /&gt;
=== [http://www.thebigbongtheory.com/palm/dialer.jpg]===&lt;br /&gt;
Preview: [[Image:Newdialer.jpg]]&lt;/div&gt;</summary>
		<author><name>UltraBlack</name></author>
	</entry>
	<entry>
		<id>http://wiki.webos-internals.org/index.php?title=User:Templarian&amp;diff=3982</id>
		<title>User:Templarian</title>
		<link rel="alternate" type="text/html" href="http://wiki.webos-internals.org/index.php?title=User:Templarian&amp;diff=3982"/>
		<updated>2009-08-07T09:05:25Z</updated>

		<summary type="html">&lt;p&gt;UltraBlack: /* Komodo Edit */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Template:Tux|float:right;}}&lt;br /&gt;
I'm very active in the webOS development and with many projects.&lt;br /&gt;
&lt;br /&gt;
I have a fetish for crystal-style Tux icons. They're just sooo Cute!&lt;br /&gt;
&lt;br /&gt;
View my blog at http://webos.templarian.com/&lt;br /&gt;
&lt;br /&gt;
= Komodo Edit =&lt;br /&gt;
&lt;br /&gt;
I will often switch people to use Komodo Edit and strive for it to be one of the top editors when developing for webOS.&lt;br /&gt;
&lt;br /&gt;
The toolbox is available for download on my blog at http://webos.templarian.com/komodo/&lt;br /&gt;
&lt;br /&gt;
Our wiki page for Komodo is [[Komodo|here]].&lt;br /&gt;
&lt;br /&gt;
= FamFamFam Silk Icons =&lt;br /&gt;
&lt;br /&gt;
View them and use them in your projects: [[Patch webOS Graphics#Palm Pre Icons (FamFamFam Silk Style)]]&lt;/div&gt;</summary>
		<author><name>UltraBlack</name></author>
	</entry>
	<entry>
		<id>http://wiki.webos-internals.org/index.php?title=User:Templarian&amp;diff=3981</id>
		<title>User:Templarian</title>
		<link rel="alternate" type="text/html" href="http://wiki.webos-internals.org/index.php?title=User:Templarian&amp;diff=3981"/>
		<updated>2009-08-07T09:05:05Z</updated>

		<summary type="html">&lt;p&gt;UltraBlack: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Template:Tux|float:right;}}&lt;br /&gt;
I'm very active in the webOS development and with many projects.&lt;br /&gt;
&lt;br /&gt;
I have a fetish for crystal-style Tux icons. They're just sooo Cute!&lt;br /&gt;
&lt;br /&gt;
View my blog at http://webos.templarian.com/&lt;br /&gt;
&lt;br /&gt;
= Komodo Edit =&lt;br /&gt;
&lt;br /&gt;
I will often switch people to use Komodo Edit and strive for it to be one of the top editors when developing for webOS.&lt;br /&gt;
&lt;br /&gt;
The toolbox is also on my blog at http://webos.templarian.com/komodo/&lt;br /&gt;
&lt;br /&gt;
Our wiki page for Komodo is [[Komodo|here]].&lt;br /&gt;
&lt;br /&gt;
= FamFamFam Silk Icons =&lt;br /&gt;
&lt;br /&gt;
View them and use them in your projects: [[Patch webOS Graphics#Palm Pre Icons (FamFamFam Silk Style)]]&lt;/div&gt;</summary>
		<author><name>UltraBlack</name></author>
	</entry>
	<entry>
		<id>http://wiki.webos-internals.org/index.php?title=Template:Tux&amp;diff=3980</id>
		<title>Template:Tux</title>
		<link rel="alternate" type="text/html" href="http://wiki.webos-internals.org/index.php?title=Template:Tux&amp;diff=3980"/>
		<updated>2009-08-07T09:04:35Z</updated>

		<summary type="html">&lt;p&gt;UltraBlack: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= Crystal Tux Icons (48x48) =&lt;br /&gt;
&lt;br /&gt;
[[Image:Tux.png]]&lt;br /&gt;
[[Image:Tux_with_Pre.png]]&lt;br /&gt;
[[Image:Tux_with_Broken_Pre.png]]&lt;br /&gt;
[[Image:Tux_with_Pre_and_Screwdriver.png]]&lt;br /&gt;
[[Image:Tux_Thinking.png]]&lt;br /&gt;
[[Image:Tux_Mad.png]]&lt;br /&gt;
[[Image:Tux_Chat.png]]&lt;br /&gt;
[[Image:Tux_with_Docs.png]]&lt;br /&gt;
[[Image:Scientux.png]]&lt;br /&gt;
&lt;br /&gt;
== How to Use ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=&amp;quot;text&amp;quot;&amp;gt;&lt;br /&gt;
{{linux|Linux_With_Pre.png|float:right;}}&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Note: Exclude '|float:right;' if you don't want the icon to float on the right side of the page&lt;br /&gt;
&lt;br /&gt;
== Want To Add Your Own? ==&lt;br /&gt;
&lt;br /&gt;
Just upload an image with the following naming scheme.&lt;br /&gt;
&amp;lt;source lang=&amp;quot;text&amp;quot;&amp;gt;&lt;br /&gt;
Tux_ + Action or Description + .png&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Warning: .png format only please. And make it look good. =)&lt;br /&gt;
&lt;br /&gt;
== Credits ==&lt;br /&gt;
&lt;br /&gt;
 - ultraBlack created the base Tux.png from scratch with aid of a tutorial on CrystalXP.net&lt;br /&gt;
 - Templarian went crazy with little iconic pasties and edited all kinds of %!@ onto him. He's pretty good. Pretty neat.&lt;/div&gt;</summary>
		<author><name>UltraBlack</name></author>
	</entry>
	<entry>
		<id>http://wiki.webos-internals.org/index.php?title=Template:Tux&amp;diff=3978</id>
		<title>Template:Tux</title>
		<link rel="alternate" type="text/html" href="http://wiki.webos-internals.org/index.php?title=Template:Tux&amp;diff=3978"/>
		<updated>2009-08-07T08:57:33Z</updated>

		<summary type="html">&lt;p&gt;UltraBlack: /* Want To add your own */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Image:Tux.png]]&lt;br /&gt;
[[Image:Tux_with_Pre.png]]&lt;br /&gt;
[[Image:Tux_with_Broken_Pre.png]]&lt;br /&gt;
[[Image:Tux_with_Pre_and_Screwdriver.png]]&lt;br /&gt;
[[Image:Tux_Thinking.png]]&lt;br /&gt;
[[Image:Tux_Mad.png]]&lt;br /&gt;
[[Image:Tux_Chat.png]]&lt;br /&gt;
[[Image:Tux_with_Docs.png]]&lt;br /&gt;
[[Image:Scientux.png]]&lt;br /&gt;
== How to Use ==&lt;br /&gt;
&amp;lt;source lang=&amp;quot;text&amp;quot;&amp;gt;&lt;br /&gt;
{{linux|Linux_With_Pre.png|float:right;}}&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Note: Exclude '|float:right;' if you don't want the icon to float on the right side of the page&lt;br /&gt;
&lt;br /&gt;
== Want To Add Your Own? ==&lt;br /&gt;
Just upload an image with the following naming scheme.&lt;br /&gt;
&amp;lt;source lang=&amp;quot;text&amp;quot;&amp;gt;&lt;br /&gt;
Tux_ + Action or Description + .png&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;&lt;/div&gt;</summary>
		<author><name>UltraBlack</name></author>
	</entry>
	<entry>
		<id>http://wiki.webos-internals.org/index.php?title=Template:Tux&amp;diff=3977</id>
		<title>Template:Tux</title>
		<link rel="alternate" type="text/html" href="http://wiki.webos-internals.org/index.php?title=Template:Tux&amp;diff=3977"/>
		<updated>2009-08-07T08:57:23Z</updated>

		<summary type="html">&lt;p&gt;UltraBlack: /* Want To add your own */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Image:Tux.png]]&lt;br /&gt;
[[Image:Tux_with_Pre.png]]&lt;br /&gt;
[[Image:Tux_with_Broken_Pre.png]]&lt;br /&gt;
[[Image:Tux_with_Pre_and_Screwdriver.png]]&lt;br /&gt;
[[Image:Tux_Thinking.png]]&lt;br /&gt;
[[Image:Tux_Mad.png]]&lt;br /&gt;
[[Image:Tux_Chat.png]]&lt;br /&gt;
[[Image:Tux_with_Docs.png]]&lt;br /&gt;
[[Image:Scientux.png]]&lt;br /&gt;
== How to Use ==&lt;br /&gt;
&amp;lt;source lang=&amp;quot;text&amp;quot;&amp;gt;&lt;br /&gt;
{{linux|Linux_With_Pre.png|float:right;}}&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Note: Exclude '|float:right;' if you don't want the icon to float on the right side of the page&lt;br /&gt;
&lt;br /&gt;
== Want To add your own ==&lt;br /&gt;
Just upload an image with the following naming scheme.&lt;br /&gt;
&amp;lt;source lang=&amp;quot;text&amp;quot;&amp;gt;&lt;br /&gt;
Tux_ + Action or Description + .png&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;&lt;/div&gt;</summary>
		<author><name>UltraBlack</name></author>
	</entry>
	<entry>
		<id>http://wiki.webos-internals.org/index.php?title=Template:Tux&amp;diff=3976</id>
		<title>Template:Tux</title>
		<link rel="alternate" type="text/html" href="http://wiki.webos-internals.org/index.php?title=Template:Tux&amp;diff=3976"/>
		<updated>2009-08-07T08:56:57Z</updated>

		<summary type="html">&lt;p&gt;UltraBlack: /* How to Use */ Added note about float.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Image:Tux.png]]&lt;br /&gt;
[[Image:Tux_with_Pre.png]]&lt;br /&gt;
[[Image:Tux_with_Broken_Pre.png]]&lt;br /&gt;
[[Image:Tux_with_Pre_and_Screwdriver.png]]&lt;br /&gt;
[[Image:Tux_Thinking.png]]&lt;br /&gt;
[[Image:Tux_Mad.png]]&lt;br /&gt;
[[Image:Tux_Chat.png]]&lt;br /&gt;
[[Image:Tux_with_Docs.png]]&lt;br /&gt;
[[Image:Scientux.png]]&lt;br /&gt;
== How to Use ==&lt;br /&gt;
&amp;lt;source lang=&amp;quot;text&amp;quot;&amp;gt;&lt;br /&gt;
{{linux|Linux_With_Pre.png|float:right;}}&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Note: Exclude '|float:right;' if you don't want the icon to float on the right side of the page&lt;br /&gt;
&lt;br /&gt;
== Want To add your own ==&lt;br /&gt;
Just upload the image with the naming scheme.&lt;br /&gt;
&amp;lt;source lang=&amp;quot;text&amp;quot;&amp;gt;&lt;br /&gt;
Tux_ + Action + .png&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;&lt;/div&gt;</summary>
		<author><name>UltraBlack</name></author>
	</entry>
	<entry>
		<id>http://wiki.webos-internals.org/index.php?title=User:Templarian&amp;diff=3975</id>
		<title>User:Templarian</title>
		<link rel="alternate" type="text/html" href="http://wiki.webos-internals.org/index.php?title=User:Templarian&amp;diff=3975"/>
		<updated>2009-08-07T08:56:09Z</updated>

		<summary type="html">&lt;p&gt;UltraBlack: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Template:Tux|float:right;}}&lt;br /&gt;
I'm very active in the webOS development and with many projects.&lt;br /&gt;
&lt;br /&gt;
I have a fetish for crystal-style Tux icons. They're just sooo Cute!&lt;br /&gt;
&lt;br /&gt;
View my blog at http://webos.templarian.com/&lt;br /&gt;
&lt;br /&gt;
== Komodo Edit ==&lt;br /&gt;
&lt;br /&gt;
I will often switch people to use Komodo Edit and strive for it to be one of the top editors when developing for webOS.&lt;br /&gt;
&lt;br /&gt;
The toolbox is also on my blog at http://webos.templarian.com/komodo/&lt;br /&gt;
&lt;br /&gt;
Our wiki page for Komodo is [[Komodo|here]].&lt;br /&gt;
&lt;br /&gt;
== FamFamFam Silk Icons ==&lt;br /&gt;
&lt;br /&gt;
View them and use them in your projects: [[Patch webOS Graphics#Palm Pre Icons (FamFamFam Silk Style)]]&lt;/div&gt;</summary>
		<author><name>UltraBlack</name></author>
	</entry>
	<entry>
		<id>http://wiki.webos-internals.org/index.php?title=User:Templarian&amp;diff=3974</id>
		<title>User:Templarian</title>
		<link rel="alternate" type="text/html" href="http://wiki.webos-internals.org/index.php?title=User:Templarian&amp;diff=3974"/>
		<updated>2009-08-07T08:54:24Z</updated>

		<summary type="html">&lt;p&gt;UltraBlack: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Template:Tux|Tux_Chat.png|float:right;}}&lt;br /&gt;
I'm very active in the webOS development and with many projects.&lt;br /&gt;
&lt;br /&gt;
I have a fetish for crystal-style Tux icons. They're just sooo Cute!&lt;br /&gt;
&lt;br /&gt;
View my blog at http://webos.templarian.com/&lt;br /&gt;
&lt;br /&gt;
== Komodo Edit ==&lt;br /&gt;
&lt;br /&gt;
I will often switch people to use Komodo Edit and strive for it to be one of the top editors when developing for webOS.&lt;br /&gt;
&lt;br /&gt;
The toolbox is also on my blog at http://webos.templarian.com/komodo/&lt;br /&gt;
&lt;br /&gt;
Our wiki page for Komodo is [[Komodo|here]].&lt;br /&gt;
&lt;br /&gt;
== FamFamFam Silk Icons ==&lt;br /&gt;
&lt;br /&gt;
View them and use them in your projects: [[Patch webOS Graphics#Palm Pre Icons (FamFamFam Silk Style)]]&lt;/div&gt;</summary>
		<author><name>UltraBlack</name></author>
	</entry>
	<entry>
		<id>http://wiki.webos-internals.org/index.php?title=User:Templarian&amp;diff=3973</id>
		<title>User:Templarian</title>
		<link rel="alternate" type="text/html" href="http://wiki.webos-internals.org/index.php?title=User:Templarian&amp;diff=3973"/>
		<updated>2009-08-07T08:52:35Z</updated>

		<summary type="html">&lt;p&gt;UltraBlack: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Template:Tux|Tux_Chat.png|float:right;}}&lt;br /&gt;
I'm very active in the webOS development and with many projects.&lt;br /&gt;
I have a fetish for crystal-style Tux icons. They're just sooo Cute!&lt;br /&gt;
&lt;br /&gt;
View my blog at http://webos.templarian.com/&lt;br /&gt;
&lt;br /&gt;
== Komodo Edit ==&lt;br /&gt;
&lt;br /&gt;
I will often switch people to use Komodo Edit and strive for it to be one of the top editors when developing for webOS.&lt;br /&gt;
&lt;br /&gt;
The toolbox is also on my blog at http://webos.templarian.com/komodo/&lt;br /&gt;
&lt;br /&gt;
The wiki page is here [[Komodo]]&lt;br /&gt;
&lt;br /&gt;
== FamFamFam Silk Icons ==&lt;br /&gt;
&lt;br /&gt;
View them and use them in your projects: [[Patch webOS Graphics#Palm Pre Icons (FamFamFam Silk Style)]]&lt;/div&gt;</summary>
		<author><name>UltraBlack</name></author>
	</entry>
	<entry>
		<id>http://wiki.webos-internals.org/index.php?title=Template:Tux&amp;diff=3972</id>
		<title>Template:Tux</title>
		<link rel="alternate" type="text/html" href="http://wiki.webos-internals.org/index.php?title=Template:Tux&amp;diff=3972"/>
		<updated>2009-08-07T08:51:20Z</updated>

		<summary type="html">&lt;p&gt;UltraBlack: Changed Tuxes to new ones. Had to do away with the #icon things because of a PHP error.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Image:Tux.png]]&lt;br /&gt;
[[Image:Tux_with_Pre.png]]&lt;br /&gt;
[[Image:Tux_with_Broken_Pre.png]]&lt;br /&gt;
[[Image:Tux_with_Pre_and_Screwdriver.png]]&lt;br /&gt;
[[Image:Tux_Thinking.png]]&lt;br /&gt;
[[Image:Tux_Mad.png]]&lt;br /&gt;
[[Image:Tux_Chat.png]]&lt;br /&gt;
[[Image:Tux_with_Docs.png]]&lt;br /&gt;
[[Image:Scientux.png]]&lt;br /&gt;
== How to Use ==&lt;br /&gt;
&amp;lt;source lang=&amp;quot;text&amp;quot;&amp;gt;&lt;br /&gt;
{{linux|Linux_With_Pre.png|float:right;}}&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Want To add your own ==&lt;br /&gt;
Just upload the image with the naming scheme.&lt;br /&gt;
&amp;lt;source lang=&amp;quot;text&amp;quot;&amp;gt;&lt;br /&gt;
Tux_ + Action + .png&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;&lt;/div&gt;</summary>
		<author><name>UltraBlack</name></author>
	</entry>
	<entry>
		<id>http://wiki.webos-internals.org/index.php?title=User:Templarian&amp;diff=3971</id>
		<title>User:Templarian</title>
		<link rel="alternate" type="text/html" href="http://wiki.webos-internals.org/index.php?title=User:Templarian&amp;diff=3971"/>
		<updated>2009-08-07T08:45:36Z</updated>

		<summary type="html">&lt;p&gt;UltraBlack: Changed Tux icon to the new one.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Template:Tux|Tux_Chat.png|float:right;}}&lt;br /&gt;
I'm very active in the webOS development and with many projects.&lt;br /&gt;
&lt;br /&gt;
View my blog at http://webos.templarian.com/&lt;br /&gt;
&lt;br /&gt;
== Komodo Edit ==&lt;br /&gt;
&lt;br /&gt;
I will often switch people to use Komodo Edit and strive for it to be one of the top editors when developing for webOS.&lt;br /&gt;
&lt;br /&gt;
The toolbox is also on my blog at http://webos.templarian.com/komodo/&lt;br /&gt;
&lt;br /&gt;
The wiki page is here [[Komodo]]&lt;br /&gt;
&lt;br /&gt;
== FamFamFam Silk Icons ==&lt;br /&gt;
&lt;br /&gt;
View them and use them in your projects: [[Patch webOS Graphics#Palm Pre Icons (FamFamFam Silk Style)]]&lt;/div&gt;</summary>
		<author><name>UltraBlack</name></author>
	</entry>
	<entry>
		<id>http://wiki.webos-internals.org/index.php?title=Portal:Community&amp;diff=3970</id>
		<title>Portal:Community</title>
		<link rel="alternate" type="text/html" href="http://wiki.webos-internals.org/index.php?title=Portal:Community&amp;diff=3970"/>
		<updated>2009-08-07T08:44:59Z</updated>

		<summary type="html">&lt;p&gt;UltraBlack: /* IRC */ Changed Tux icons to the new ones.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;There is a large community of developers around the Palm Pre. &lt;br /&gt;
&lt;br /&gt;
* [[Contact|Contact]] &lt;br /&gt;
* [[Meetups|Meetups]]&lt;br /&gt;
&lt;br /&gt;
== IRC ==&lt;br /&gt;
[[Image:Tux_Chat.png|right]]&lt;br /&gt;
You can join us anytime on our [[wikipedia:Internet Relay Chat|IRC]] channels.&lt;br /&gt;
&lt;br /&gt;
* [irc://chat.freenode.net/webos #webos] for general Palm Pre topics &lt;br /&gt;
* [irc://chat.freenode.net/webos-internals #webos-internals] for discussion of the operating system &lt;br /&gt;
* [irc://chat.freenode.net/webos-watercooler #webos-watercooler] for off-topic discussion&lt;br /&gt;
&lt;br /&gt;
We are located on the freenode network, accessible from chat.freenode.net&lt;br /&gt;
&lt;br /&gt;
Come and join us&lt;br /&gt;
&lt;br /&gt;
=== Guidelines ===&lt;br /&gt;
[[Image:Tux_Mad.png|right]]&lt;br /&gt;
&lt;br /&gt;
See [[WebOS-Internals IRC Channel Policy]].&lt;br /&gt;
&lt;br /&gt;
* For pastes greater than 2 lines, use a pastebin such as [http://webos.pastebin.com/ webos.pastebin.com].&lt;br /&gt;
* Keep the language civilized. Don't try to debate. WebOS is cross platform and the [[Portal:Tools|tools]] supported by webOS-Internals are also.&lt;/div&gt;</summary>
		<author><name>UltraBlack</name></author>
	</entry>
	<entry>
		<id>http://wiki.webos-internals.org/index.php?title=Help:Contents&amp;diff=3969</id>
		<title>Help:Contents</title>
		<link rel="alternate" type="text/html" href="http://wiki.webos-internals.org/index.php?title=Help:Contents&amp;diff=3969"/>
		<updated>2009-08-07T08:44:14Z</updated>

		<summary type="html">&lt;p&gt;UltraBlack: Changed Tux icon to the new one.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== General Help ==&lt;br /&gt;
{{Template:Tux|Tux_Thinking.png|float:right;}}&lt;br /&gt;
If you need help NOW, you might consider joining the discussion at our IRC channel. Come brainstorm with us at #webos-internals on FreeNode (irc.freenode.net) - same appropriateness rules apply - all chat logged. Not all browsers support IRC links, but never-the-less this should take you there: [irc://chat.freenode.net/#webos-internals irc://chat.freenode.net/#webos-internals]&lt;br /&gt;
&lt;br /&gt;
== Palm Pre ==&lt;br /&gt;
&lt;br /&gt;
If you're looking for help about your Palm Pre, hopefully there will be many pages to help you here.&lt;br /&gt;
&lt;br /&gt;
* [[Help:Bottom_Bar|Bottom Bar]] - how to edit the 5 icons in the 'bendy' swipe bar at the bottom of the Pre.&lt;br /&gt;
&lt;br /&gt;
== Wiki Help ==&lt;br /&gt;
&lt;br /&gt;
* [[WebOS Internals:Policies and guidelines|Policies and guidelines]]&lt;br /&gt;
* [[Help:Style Guide|Style Guide]]&lt;br /&gt;
* [[Help:Where_Things_Go|Where Things Go]]&lt;br /&gt;
* [[Help:Questions|Questions]] (We answer them pretty quickly)&lt;br /&gt;
* Need an answer even quicker [[Contact|contact us directly]]&lt;/div&gt;</summary>
		<author><name>UltraBlack</name></author>
	</entry>
	<entry>
		<id>http://wiki.webos-internals.org/index.php?title=WebOS_Doctor_version_1.1.0&amp;diff=3968</id>
		<title>WebOS Doctor version 1.1.0</title>
		<link rel="alternate" type="text/html" href="http://wiki.webos-internals.org/index.php?title=WebOS_Doctor_version_1.1.0&amp;diff=3968"/>
		<updated>2009-08-07T08:43:27Z</updated>

		<summary type="html">&lt;p&gt;UltraBlack: Removed Tux icon due to &amp;quot;Fatal error: Call to a member function exists() on a non-object in /var/lib/mediawiki/extensions/Icon/Icon.php on line 62&amp;quot;.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= Changes:=&lt;br /&gt;
&lt;br /&gt;
Here are the changes (excluding changes in /usr/lib/ipkg) between 1.0.4 and 1.1.0, based on the contents of the webOS Doctor jar file:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
File /com/ice/tar/FastTarStream.class differs&lt;br /&gt;
File /com/ice/tar/InvalidHeaderException.class differs&lt;br /&gt;
File /com/ice/tar/TarBuffer.class differs&lt;br /&gt;
File /com/ice/tar/TarEntry.class differs&lt;br /&gt;
File /com/ice/tar/TarEntryEnumerator.class differs&lt;br /&gt;
File /com/ice/tar/TarGzOutputStream.class differs&lt;br /&gt;
File /com/ice/tar/TarHeader.class differs&lt;br /&gt;
File /com/ice/tar/TarInputStream.class differs&lt;br /&gt;
File /com/ice/tar/TarInputStream$EntryAdapter.class differs&lt;br /&gt;
File /com/ice/tar/TarInputStream$EntryFactory.class differs&lt;br /&gt;
File /com/ice/tar/TarOutputStream.class differs&lt;br /&gt;
File /com/ice/tar/TarProgressDisplay.class differs&lt;br /&gt;
File /com/ice/tar/TarTransFileTyper.class differs&lt;br /&gt;
File /com/palm/nova/installer/core/BootieUtilities.class differs&lt;br /&gt;
File /com/palm/nova/installer/core/DesktopDriversMgr.class differs&lt;br /&gt;
File /com/palm/nova/installer/core/DesktopDriversMgr$InstallTypeNeeded.class differs&lt;br /&gt;
File /com/palm/nova/installer/core/DesktopDriversMgr$OffloadedStreamReader.class differs&lt;br /&gt;
File /com/palm/nova/installer/core/DeviceInfo.class differs&lt;br /&gt;
File /com/palm/nova/installer/core/DirectoryInstallerModel.class differs&lt;br /&gt;
File /com/palm/nova/installer/core/FlasherThread.class differs&lt;br /&gt;
File /com/palm/nova/installer/core/IcssUtilities.class differs&lt;br /&gt;
File /com/palm/nova/installer/core/IFlasherLogger.class differs&lt;br /&gt;
File /com/palm/nova/installer/core/IFlasherLogger$FlashEvents.class differs&lt;br /&gt;
File /com/palm/nova/installer/core/IInstallerStage.class differs&lt;br /&gt;
File /com/palm/nova/installer/core/InstallerModel.class differs&lt;br /&gt;
File /com/palm/nova/installer/core/IStageProgressReporter.class differs&lt;br /&gt;
File /com/palm/nova/installer/core/JobState.class differs&lt;br /&gt;
File /com/palm/nova/installer/core/LoggerUtils.class differs&lt;br /&gt;
Only in 1.0.4: /com/palm/nova/installer/core/ModemUtilities$1.class&lt;br /&gt;
File /com/palm/nova/installer/core/ModemUtilities.class differs&lt;br /&gt;
File /com/palm/nova/installer/core/ModemUtilities$ModemMode.class differs&lt;br /&gt;
Only in 1.0.4: /com/palm/nova/installer/core/MountUtils$1.class&lt;br /&gt;
File /com/palm/nova/installer/core/MountUtils.class differs&lt;br /&gt;
File /com/palm/nova/installer/core/MountUtils$FsType.class differs&lt;br /&gt;
File /com/palm/nova/installer/core/MountUtils$MountParts.class differs&lt;br /&gt;
File /com/palm/nova/installer/core/NullProgressReporter.class differs&lt;br /&gt;
File /com/palm/nova/installer/core/RdxUtils$1.class differs&lt;br /&gt;
File /com/palm/nova/installer/core/RdxUtils$2.class differs&lt;br /&gt;
File /com/palm/nova/installer/core/RdxUtils.class differs&lt;br /&gt;
File /com/palm/nova/installer/core/ScreenPainter.class differs&lt;br /&gt;
File /com/palm/nova/installer/core/stages/BaseStage.class differs&lt;br /&gt;
File /com/palm/nova/installer/core/stages/BaseStage$StreamReaderThread.class differs&lt;br /&gt;
File /com/palm/nova/installer/core/stages/ChargeBatteryStage.class differs&lt;br /&gt;
File /com/palm/nova/installer/core/stages/CustomizationStage.class differs&lt;br /&gt;
File /com/palm/nova/installer/core/stages/EnableNovacomUsbByDefaultStage.class differs&lt;br /&gt;
File /com/palm/nova/installer/core/stages/GoIntoUpdateModeStage.class differs&lt;br /&gt;
File /com/palm/nova/installer/core/stages/ModemUpdateStage.class differs&lt;br /&gt;
File /com/palm/nova/installer/core/stages/RamdiskLoadingStage.class differs&lt;br /&gt;
File /com/palm/nova/installer/core/stages/RdxUploadStage$1.class differs&lt;br /&gt;
File /com/palm/nova/installer/core/stages/RdxUploadStage.class differs&lt;br /&gt;
File /com/palm/nova/installer/core/stages/SoftwareUpdateSiteStage.class differs&lt;br /&gt;
File /com/palm/nova/installer/core/stages/TouchPanelUpdateStage.class differs&lt;br /&gt;
File /com/palm/nova/installer/core/stages/TrenchcoatStage.class differs&lt;br /&gt;
File /com/palm/nova/installer/core/stages/VerifyRomStage.class differs&lt;br /&gt;
File /com/palm/nova/installer/core/StringUtilities.class differs&lt;br /&gt;
File /com/palm/nova/installer/core/SuperToolUtilities.class differs&lt;br /&gt;
File /com/palm/nova/installer/core/TarfileInstallerModel.class differs&lt;br /&gt;
File /com/palm/nova/installer/core/TarInJarInstallerModel.class differs&lt;br /&gt;
File /com/palm/nova/installer/core/TarInTarInstallerModel.class differs&lt;br /&gt;
File /com/palm/nova/installer/core/TarredInstallerModel.class differs&lt;br /&gt;
File /com/palm/nova/installer/core/TokenReader.class differs&lt;br /&gt;
File /com/palm/nova/installer/core/TrenchcoatModel.class differs&lt;br /&gt;
File /com/palm/nova/installer/core/TrenchcoatModel$EnvVar.class differs&lt;br /&gt;
File /com/palm/nova/installer/core/TrenchcoatModel$Token.class differs&lt;br /&gt;
File /com/palm/nova/installer/recoverytool/BareBonesBrowserLaunch.class differs&lt;br /&gt;
File /com/palm/nova/installer/recoverytool/Base64.class differs&lt;br /&gt;
File /com/palm/nova/installer/recoverytool/Base64$InputStream.class differs&lt;br /&gt;
File /com/palm/nova/installer/recoverytool/Base64$OutputStream.class differs&lt;br /&gt;
File /com/palm/nova/installer/recoverytool/BatteryCharger.class differs&lt;br /&gt;
File /com/palm/nova/installer/recoverytool/CardController$1.class differs&lt;br /&gt;
File /com/palm/nova/installer/recoverytool/CardController$2.class differs&lt;br /&gt;
File /com/palm/nova/installer/recoverytool/CardController$3.class differs&lt;br /&gt;
Only in 1.0.4: /com/palm/nova/installer/recoverytool/CardController$4.class&lt;br /&gt;
File /com/palm/nova/installer/recoverytool/CardController.class differs&lt;br /&gt;
File /com/palm/nova/installer/recoverytool/cards/BatteryChargingCard.class differs&lt;br /&gt;
File /com/palm/nova/installer/recoverytool/cards/BeginFlashingCard.class differs&lt;br /&gt;
File /com/palm/nova/installer/recoverytool/cards/BootiefyCard.class differs&lt;br /&gt;
File /com/palm/nova/installer/recoverytool/cards/CardBase.class differs&lt;br /&gt;
Only in 1.0.4: /com/palm/nova/installer/recoverytool/cards/CheckSystemCard$1.class&lt;br /&gt;
File /com/palm/nova/installer/recoverytool/cards/CheckSystemCard$ActivityIndicatorUpdater.class differs&lt;br /&gt;
File /com/palm/nova/installer/recoverytool/cards/CheckSystemCard.class differs&lt;br /&gt;
File /com/palm/nova/installer/recoverytool/cards/ConfirmLanguageCard.class differs&lt;br /&gt;
File /com/palm/nova/installer/recoverytool/cards/ConnectDeviceCard.class differs&lt;br /&gt;
File /com/palm/nova/installer/recoverytool/cards/DeviceUnpluggedCard.class differs&lt;br /&gt;
File /com/palm/nova/installer/recoverytool/cards/EndFlashingCard.class differs&lt;br /&gt;
File /com/palm/nova/installer/recoverytool/cards/EulaCard.class differs&lt;br /&gt;
File /com/palm/nova/installer/recoverytool/cards/FlashingFailedCard.class differs&lt;br /&gt;
File /com/palm/nova/installer/recoverytool/cards/FlashingProgressCard.class differs&lt;br /&gt;
File /com/palm/nova/installer/recoverytool/cards/LanguagePickerCard.class differs&lt;br /&gt;
File /com/palm/nova/installer/recoverytool/cards/Messages.class differs&lt;br /&gt;
File /com/palm/nova/installer/recoverytool/ConfigFileMgr.class differs&lt;br /&gt;
File /com/palm/nova/installer/recoverytool/RecoveryTool$1.class differs&lt;br /&gt;
File /com/palm/nova/installer/recoverytool/RecoveryTool.class differs&lt;br /&gt;
Only in 1.0.4: /com/palm/nova/installer/recoverytool/runner/DeviceDiscoveryRunner$1.class&lt;br /&gt;
File /com/palm/nova/installer/recoverytool/runner/DeviceDiscoveryRunner.class differs&lt;br /&gt;
File /com/palm/nova/installer/recoverytool/runner/DeviceDiscoveryRunner$DeviceDiscoveryThread.class differs&lt;br /&gt;
File /com/palm/nova/installer/recoverytool/runner/RunnerCallback.class differs&lt;br /&gt;
File /com/palm/nova/installer/recoverytool/runner/Runner.class differs&lt;br /&gt;
Only in 1.0.4: /com/palm/nova/installer/recoverytool/runner/SystemCheckRunner$1.class&lt;br /&gt;
File /com/palm/nova/installer/recoverytool/runner/SystemCheckRunner.class differs&lt;br /&gt;
File /com/palm/nova/installer/recoverytool/runner/SystemCheckRunner$SystemCheckThread.class differs&lt;br /&gt;
File /com/palm/novacom/INovacomController.class differs&lt;br /&gt;
File /com/palm/novacom/INovacomDevice.class differs&lt;br /&gt;
File /com/palm/novacom/INovacomStream.class differs&lt;br /&gt;
File /com/palm/novacom/internal/NovacomBaseStream.class differs&lt;br /&gt;
File /com/palm/novacom/internal/NovacomController.class differs&lt;br /&gt;
File /com/palm/novacom/internal/NovacomDevice.class differs&lt;br /&gt;
File /com/palm/novacom/internal/NovacomDeviceList.class differs&lt;br /&gt;
File /com/palm/novacom/internal/NovacomSocketStream.class differs&lt;br /&gt;
File /com/palm/novacom/internal/OOBPacket.class differs&lt;br /&gt;
File /com/palm/novacom/internal/PacketHeader.class differs&lt;br /&gt;
File /com/palm/novacom/internal/PacketReader.class differs&lt;br /&gt;
File /com/palm/novacom/internal/PacketWriter.class differs&lt;br /&gt;
File /com/palm/novacom/Novacom.class differs&lt;br /&gt;
File /com/palm/novacom/Novacom$DeviceState.class differs&lt;br /&gt;
File /com/palm/novacom/Novacom$DiskAreas.class differs&lt;br /&gt;
File /com/palm/novacom/NovacomException.class differs&lt;br /&gt;
File /com/palm/novacom/NovaDeviceInfo.class differs&lt;br /&gt;
File /META-INF/JARKEY.RSA differs&lt;br /&gt;
File /META-INF/JARKEY.SF differs&lt;br /&gt;
File /META-INF/MANIFEST.MF differs&lt;br /&gt;
File /resources/EULA_en_US.html differs&lt;br /&gt;
File /resources/languagePicker.properties differs&lt;br /&gt;
File /resources/messages_de_DE.properties differs&lt;br /&gt;
File /resources/messages_es_ES.properties differs&lt;br /&gt;
File /resources/messages_es_US.properties differs&lt;br /&gt;
File /resources/messages_fr_CA.properties differs&lt;br /&gt;
File /resources/messages_fr_FR.properties differs&lt;br /&gt;
File /resources/recoverytool.config differs&lt;br /&gt;
File /resources/sprint.tar differs&lt;br /&gt;
File /resources/webOS/castlecdma_evt1_fw.tar differs&lt;br /&gt;
File /resources/webOS/castleumtsfw.tar differs&lt;br /&gt;
File /resources/webOS/installer.xml differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/boot/config-2.6.24-palm-joplin-3430 differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/boot/System.map-2.6.24-palm-joplin-3430 differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/boot/uImage differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/boot/uImage-2.6.24-palm-joplin-3430 differs&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/etc/audio/b&lt;br /&gt;
Only in 1.0.4: /resources/webOS/nova-cust-image-castle/etc/audio/default.txt&lt;br /&gt;
Only in 1.0.4: /resources/webOS/nova-cust-image-castle/etc/audio/dtmf.txt&lt;br /&gt;
Only in 1.0.4: /resources/webOS/nova-cust-image-castle/etc/audio/media_a2dp.txt&lt;br /&gt;
Only in 1.0.4: /resources/webOS/nova-cust-image-castle/etc/audio/media_back_speaker.txt&lt;br /&gt;
Only in 1.0.4: /resources/webOS/nova-cust-image-castle/etc/audio/media_front_speaker.txt&lt;br /&gt;
Only in 1.0.4: /resources/webOS/nova-cust-image-castle/etc/audio/media_headset_mic.txt&lt;br /&gt;
Only in 1.0.4: /resources/webOS/nova-cust-image-castle/etc/audio/media_headset.txt&lt;br /&gt;
Only in 1.0.4: /resources/webOS/nova-cust-image-castle/etc/audio/phone_back_speaker.txt&lt;br /&gt;
Only in 1.0.4: /resources/webOS/nova-cust-image-castle/etc/audio/phone_bluetooth_sco.txt&lt;br /&gt;
Only in 1.0.4: /resources/webOS/nova-cust-image-castle/etc/audio/phone_front_speaker.txt&lt;br /&gt;
Only in 1.0.4: /resources/webOS/nova-cust-image-castle/etc/audio/phone_headset_mic.txt&lt;br /&gt;
Only in 1.0.4: /resources/webOS/nova-cust-image-castle/etc/audio/phone_headset.txt&lt;br /&gt;
Only in 1.0.4: /resources/webOS/nova-cust-image-castle/etc/audio/phone_tty_full.txt&lt;br /&gt;
Only in 1.0.4: /resources/webOS/nova-cust-image-castle/etc/audio/phone_tty_hco.txt&lt;br /&gt;
Only in 1.0.4: /resources/webOS/nova-cust-image-castle/etc/audio/phone_tty_vco.txt&lt;br /&gt;
Only in 1.0.4: /resources/webOS/nova-cust-image-castle/etc/audio/scenarios.xml&lt;br /&gt;
Only in 1.0.4: /resources/webOS/nova-cust-image-castle/etc/audio/voice_dialing_back_speaker.txt&lt;br /&gt;
Only in 1.0.4: /resources/webOS/nova-cust-image-castle/etc/audio/voice_dialing_bluetooth_sco.txt&lt;br /&gt;
Only in 1.0.4: /resources/webOS/nova-cust-image-castle/etc/audio/voice_dialing_front_speaker.txt&lt;br /&gt;
Only in 1.0.4: /resources/webOS/nova-cust-image-castle/etc/audio/voice_dialing_headset_mic.txt&lt;br /&gt;
Only in 1.0.4: /resources/webOS/nova-cust-image-castle/etc/audio/voice_dialing_headset.txt&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/etc/event.d/browserserver differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/etc/event.d/extractfs differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/etc/event.d/hidd differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/etc/event.d/mediaserver differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/etc/event.d/novacomd differs&lt;br /&gt;
Only in 1.0.4: /resources/webOS/nova-cust-image-castle/etc/event.d/pmsystemtimeout&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/etc/event.d/PmWiFiService differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/etc/event.d/rdxd differs&lt;br /&gt;
Only in 1.0.4: /resources/webOS/nova-cust-image-castle/etc/hidd/HidPluginsQemu.xml&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/etc/hidd/HidTouchpanel_dvt3t.xml differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/etc/hidd/HidTouchpanel_dvt3w.xml differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/etc/hidd/HidTouchpanel_evt1.xml differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/etc/hidd/HidTouchpanel_evt2.xml differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/etc/init.d/bootmisc.sh differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/etc/issue differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/etc/issue.net differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/etc/logging.properties differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/etc/messagingrouter/waphandlers/updatehandler differs&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/etc/mke2fs.conf&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/etc/palm/autoreplace/de_de&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/etc/palm/autoreplace/en_ca&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/etc/palm/autoreplace/en_gb&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/etc/palm/autoreplace/en_us/text-edit-autoreplace differs&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/etc/palm/autoreplace/es_es&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/etc/palm/autoreplace/fr_ca&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/etc/palm/autoreplace/fr_fr&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/etc/palm/autoreplace/it_it&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/etc/palm/browser-app.conf differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/etc/palm/browser.conf differs&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/etc/palm/emoticon-base-dictionary.txt&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/etc/palm/locale.txt differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/etc/palm/luna.conf differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/etc/palm/notificationPolicy.conf differs&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/etc/palm/region.json&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/etc/palm/text-edit-autoreplace differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/etc/palm-build-info differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/etc/PmLog.conf differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/etc/ppp/options-cdma differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/etc/ppp/options-gsm differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/etc/rdxd.conf differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/etc/ssl/certs/system-bundle.crt.gz differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/etc/ssl/crl/system-crl-bundle.crl.gz differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/etc/timestamp differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/etc/udev/rules.d/local.rules differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/etc/udev/scripts/network.sh differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/etc/version differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/lib/libvolume_id.so.0 differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/lib/libvolume_id.so.0.80.0 differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/lib/modules/2.6.24-palm-joplin-3430/dspbridge/bridgedriver.ko differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/lib/modules/2.6.24-palm-joplin-3430/kernel/drivers/usb/gadget/composite/g_composite.ko differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/lib/modules/2.6.24-palm-joplin-3430/kernel/net/wifi/sd8xxx.ko differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/lib/udev/scsi_id differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/lib/udev/vol_id differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/md5sums differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/sbin/badblocks differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/sbin/blkid differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/sbin/blkid.e2fsprogs differs&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/sbin/debugfs&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/sbin/dumpe2fs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/sbin/e2fsck differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/sbin/e2fsck.e2fsprogs differs&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/sbin/e2image&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/sbin/e2label differs&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/sbin/e2undo&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/sbin/filefrag&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/sbin/findfs differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/sbin/fsck differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/sbin/fsck.e2fsprogs differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/sbin/fsck.ext2 differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/sbin/fsck.ext2.e2fsprogs differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/sbin/fsck.ext3 differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/sbin/fsck.ext3.e2fsprogs differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/sbin/fsck.ext4 differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/sbin/fsck.ext4dev differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/sbin/fsck.ext4dev.e2fsprogs differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/sbin/fsck.ext4.e2fsprogs differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/sbin/logctld_collect_all.sh differs&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/sbin/logsave&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/sbin/mke2fs differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/sbin/mke2fs.e2fsprogs differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/sbin/mkfs.ext2 differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/sbin/mkfs.ext2.e2fsprogs differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/sbin/mkfs.ext3 differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/sbin/mkfs.ext3.e2fsprogs differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/sbin/mkfs.ext4 differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/sbin/mkfs.ext4dev differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/sbin/mkfs.ext4dev.e2fsprogs differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/sbin/mkfs.ext4.e2fsprogs differs&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/sbin/mklost+found&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/sbin/novacomd differs&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/sbin/resize2fs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/sbin/tune2fs differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/sbin/udevcontrol differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/sbin/udevd differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/sbin/udevsettle differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/sbin/udevtrigger differs&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/sbin/uuidd&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/bin/BrowserServer differs&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/usr/bin/chattr&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/bin/contextupload differs&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/usr/bin/d8&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/usr/bin/debug&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/bin/dfbdump differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/bin/dfbg differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/bin/dfbinfo differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/bin/dfbinput differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/bin/dfblayer differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/bin/dfbpenmount differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/bin/dfbscreen differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/bin/directfb-csource differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/bin/exmap differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/bin/exmapd differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/bin/exmapserver differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/bin/extractfs differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/bin/fileindexer differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/bin/hidd differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/bin/javahy differs&lt;br /&gt;
Only in 1.0.4: /resources/webOS/nova-cust-image-castle/usr/bin/jsdb&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/bin/LibpurpleAdapter differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/bin/locationadapter differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/bin/logctld differs&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/usr/bin/lsattr&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/bin/luna-prefs-service differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/bin/lunaprop differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/bin/LunaSysMgr differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/bin/LunaSysService differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/bin/mediaserver differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/bin/mkdfiff differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/bin/mkdgiff differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/bin/OfficeService differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/bin/OmaDm differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/bin/PDFService differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/bin/PmBtEngine differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/bin/PmBtStack differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/bin/PmBtStart differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/bin/PmConnectionManager differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/bin/PmModemInfo differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/bin/PmModemUpdater differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/bin/pmsyslogd differs&lt;br /&gt;
Only in 1.0.4: /resources/webOS/nova-cust-image-castle/usr/bin/PmSystemTimeout&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/bin/PmUpdater differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/bin/PmUpdaterInitGraphics differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/bin/PmWanDaemon differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/bin/PmWiFiService differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/bin/pubsubservice differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/bin/rdxd differs&lt;br /&gt;
Only in 1.0.4: /resources/webOS/nova-cust-image-castle/usr/bin/rdxreporter&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/bin/TelephonyInterfaceLayerCdma differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/bin/TelephonyInterfaceLayerGsm differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/bin/UpdateDaemon differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/bin/uuidgen differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/BrowserPlugins/BrowserAdapter.so differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/BrowserPlugins/LunaMediaAdapter.so differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/BrowserPlugins/OfficeAdapter.so differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/BrowserPlugins/PDFAdapter.so differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/BrowserServerPlugins/GeolocationAdapter.so differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/directfb-1.1-0/inputdrivers/libdirectfb_hidd_input.so differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/DvzPlatformLib.so differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/gstreamer-0.10/libgstalaw.so differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/gstreamer-0.10/libgstavi.so differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/gstreamer-0.10/libgstmulaw.so differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/gstreamer-0.10/libgstqtdemux.so differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/gstreamer-0.10/libgstrtp.so differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/gstreamer-0.10/libgstrtsp.so differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/gstreamer-0.10/libgstudp.so differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/gstreamer-0.10/libgstwavenc.so differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/gstreamer-0.10/libgstwavparse.so differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/gstreamer-0.10/libpalmaudiodecoder.so differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/gstreamer-0.10/libPmMediaGstAdPcmDecLib.so differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/gstreamer-0.10/libPmMediaGstAmrDemuxLib.so differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/gstreamer-0.10/libPmMediaGstHttpSrcLib.so differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/gstreamer-0.10/libPmMediaGstJpegEncSinkLib.so differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/gstreamer-0.10/libPmMediaGstMp3DemuxLib.so differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/jvm/java-1.5-palm/bin/java differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/jvm/java-1.5-palm/jre/bin/libhyarchive.so differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/jvm/java-1.5-palm/jre/bin/libhyauth.so differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/jvm/java-1.5-palm/jre/bin/libhycharset.so differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/jvm/java-1.5-palm/jre/bin/libhyluni.so differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/jvm/java-1.5-palm/jre/bin/libhynio.so differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/jvm/java-1.5-palm/jre/bin/libhyprt.so differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/jvm/java-1.5-palm/jre/bin/libhythr.so differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/jvm/java-1.5-palm/jre/bin/libhyxnet.so differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/jvm/java-1.5-palm/jre/bin/libhyzlib.so differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/jvm/java-1.5-palm/jre/lib/boot/annotation.jar differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/jvm/java-1.5-palm/jre/lib/boot/archive.jar differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/jvm/java-1.5-palm/jre/lib/boot/auth.jar differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/jvm/java-1.5-palm/jre/lib/boot/crypto.jar differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/jvm/java-1.5-palm/jre/lib/boot/icu4j_3.8/icu4j-3_8.jar differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/jvm/java-1.5-palm/jre/lib/boot/icu4j_3.8/icu4j-charsets-3_8.jar differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/jvm/java-1.5-palm/jre/lib/boot/logging.jar differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/jvm/java-1.5-palm/jre/lib/boot/luni.jar differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/jvm/java-1.5-palm/jre/lib/boot/math.jar differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/jvm/java-1.5-palm/jre/lib/boot/nio_char.jar differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/jvm/java-1.5-palm/jre/lib/boot/nio.jar differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/jvm/java-1.5-palm/jre/lib/boot/regex.jar differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/jvm/java-1.5-palm/jre/lib/boot/security.jar differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/jvm/java-1.5-palm/jre/lib/boot/sql.jar differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/jvm/java-1.5-palm/jre/lib/boot/text.jar differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/jvm/java-1.5-palm/jre/lib/boot/x-net.jar differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/jvm/java-1.5-palm/jre/lib/ext/bcprov.jar differs&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/usr/lib/jvm/java-1.5-palm/jre/lib/ext/icu4jni.jar&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/jvm/java-1.5-palm/lib/rt.jar differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/libcypress-multitouch.so differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/libgloox.so differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/libgloox.so.8 differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/libgloox.so.8.0.0 differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/libhidaccelerometer.so differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/libhidavrcp.so differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/libhidkeypad.so differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/libhidlight.so differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/libhidproximity.so differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/libhidqemukeypad.so differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/libhidqemutouchpanel.so differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/libhid.so differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/libhidtouchpanel.so differs&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/usr/lib/libICUInterface36.so&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/libLCML.so differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/libltdl.so.3 differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/libltdl.so.3.1.5 differs&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/usr/lib/libLunaKeymaps.so&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/libluna-prefs.so differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/libluna-prefs.so.0 differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/libOMX_Clock.so differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/libOMX_Core.so differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/libOMX_ResourceManagerProxy.so differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/libOMX.TI.AAC.decode.so differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/libOMX.TI.AAC.encode.so differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/libOMX.TI.AMR.decode.so differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/libOMX.TI.AMR.encode.so differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/libOMX.TI.Camera.so differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/libOMX.TI.G711.decode.so differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/libOMX.TI.G711.encode.so differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/libOMX.TI.G729.decode.so differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/libOMX.TI.G729.encode.so differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/libOMX.TI.JPEG.decode.so differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/libOMX.TI.JPEG.encoder.so differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/libOMX.TI.MP3.decode.so differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/libOMX.TI.PCM.decode.so differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/libOMX.TI.PCM.encode.so differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/libOMX.TI.PostProc.so differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/libOMX.TI.Video.Decoder.so differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/libOMX.TI.Video.encoder.so differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/libOMX.TI.VPP.so differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/libOMX.TI.WBAMR.decode.so differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/libOMX.TI.WBAMR.encode.so differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/libOMX.TI.WMA.decode.so differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/libPERF.so differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/libPiranha.so differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/libpmcasper0.so differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/libpmcasper1.so differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/libpmcasper.so differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/libPmCertificateMgr.so differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/libRAM.so differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/libsaxparse.so differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/libThumbnailExtractorLib.so differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/libv8.so differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/libWebKitLuna.so differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/luna/CarrierNetworkSettings.db3 differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/luna/java/accountservices.jar differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/luna/java/accounts.jar differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/luna/java/activerecord.jar differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/luna/java/Async.jar differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/luna/java/backup.jar differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/luna/java/calendar.jar differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/luna/java/CarrierNetworkSettings.jar differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/luna/java/contacts.jar differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/luna/java/Customization.jar differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/luna/java/dataimport.jar differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/luna/java/datamigration.jar differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/luna/java/DefaultDatabaseBuilder.jar differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/luna/java/deviceprofile.jar differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/luna/java/devicewipe.jar differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/luna/java/findapps.jar differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/luna/java/Fnmbl-ClientApi.jar differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/luna/java/Fnmbl-ClientFramework.jar differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/luna/java/gdata.jar differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/luna/java/InterfaceRegistry.jar differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/luna/java/joda-time-1.5.2.jar differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/luna/java/json.jar differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/luna/java/jWAP.jar differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/luna/java/ksoap2-j2se-full-2.1.1.jar differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/luna/java/libmatthew-java-0.7.jar differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/luna/java/location.jar differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/luna/java/lunaservice.jar differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/luna/java/mail.jar differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/luna/java/MediaEvents.jar differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/luna/java/messaging.jar differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/luna/java/messagingrouter.jar differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/luna/java/minidbus-java-2.4.jar differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/luna/java/notes.jar differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/luna/java/packageinfo.jar differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/luna/java/palmipc.jar differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/luna/java/Photos.jar differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/luna/java/pim.jar differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/luna/java/pimsync.jar differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/luna/java/rfc2445.jar differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/luna/java/scheduler.jar differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/luna/java/serviceboot.jar differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/luna/java/serviceframework.jar differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/luna/java/sqlitejdbc-v053.jar differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/luna/java/superlog.jar differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/luna/java/tasks.jar differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/luna/java/telephony.jar differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/luna/java/Utils.jar differs&lt;br /&gt;
Only in 1.0.4: /resources/webOS/nova-cust-image-castle/usr/lib/luna/luna-media/AudioControls.js&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/luna/luna-media/Audio.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/luna/luna-media/Camera.js differs&lt;br /&gt;
Only in 1.0.4: /resources/webOS/nova-cust-image-castle/usr/lib/luna/luna-media/css/camera.css&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/luna/luna-media/css/media.css differs&lt;br /&gt;
Only in 1.0.4: /resources/webOS/nova-cust-image-castle/usr/lib/luna/luna-media/Exif.js&lt;br /&gt;
Only in 1.0.4: /resources/webOS/nova-cust-image-castle/usr/lib/luna/luna-media/HTMLMediaElement.js&lt;br /&gt;
Only in 1.0.4: /resources/webOS/nova-cust-image-castle/usr/lib/luna/luna-media/LunaMediaAdapter.js&lt;br /&gt;
Only in 1.0.4: /resources/webOS/nova-cust-image-castle/usr/lib/luna/luna-media/MediaAudioClassEventHandler.js&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/luna/luna-media/media.js differs&lt;br /&gt;
Only in 1.0.4: /resources/webOS/nova-cust-image-castle/usr/lib/luna/luna-media/MediaListenerManager.js&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/luna/luna-media/palmInitMedia.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/luna/luna-media/private/MediaController.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/luna/luna-media/private/StreamingPlayEngine.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/luna/luna-media/private/StreamingStates.js differs&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/usr/lib/luna/luna-media/resources/fr_ca&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/luna/luna-media/Video.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/luna/luna-network/app/controllers/connectionhandler.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/luna/luna-network/app/controllers/flightmodealert-assistant.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/luna/luna-network/app/controllers/manualnetworkalert-assistant.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/luna/luna-network/app/controllers/panalert-assistant.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/luna/luna-network/app/controllers/wifialert-assistant.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/luna/luna-network/app/models/SystemService.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/luna/luna-network/app/models/TelephonyService.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/luna/luna-network/app/models/WANService.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/luna/luna-network/app/models/WiFiService.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/luna/luna-network/ConnectionWidget.js differs&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/usr/lib/luna/luna-network/resources/de_de&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/usr/lib/luna/luna-network/resources/en_ca&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/usr/lib/luna/luna-network/resources/en_gb&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/usr/lib/luna/luna-network/resources/es_es&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/luna/luna-network/resources/es_us/strings.json differs&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/usr/lib/luna/luna-network/resources/fr_ca&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/usr/lib/luna/luna-network/resources/fr_fr&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/usr/lib/luna/luna-network/resources/it_it&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/luna/luna-network/stylesheets/system-notification.css differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/luna/luna-pseudocard/javascripts/MenuHandler.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/luna/luna-pseudocard/javascripts/tiny-list.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/luna/luna-pseudocard/javascripts/Utilities.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/luna/luna-pseudocard/pseudocard-assistant.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/luna/luna-pseudocard/resources/de_de/strings.json differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/luna/luna-pseudocard/resources/de_de/views/detail/detail-scene.html differs&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/usr/lib/luna/luna-pseudocard/resources/en_ca&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/usr/lib/luna/luna-pseudocard/resources/en_gb&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/luna/luna-pseudocard/resources/en_pl/stylesheets/pseudocard.css differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/luna/luna-pseudocard/resources/es_es/strings.json differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/luna/luna-pseudocard/resources/es_es/views/detail/detail-scene.html differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/luna/luna-pseudocard/resources/es_us/strings.json differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/luna/luna-pseudocard/resources/es_us/stylesheets/pseudocard.css differs&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/usr/lib/luna/luna-pseudocard/resources/fr_ca&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/luna/luna-pseudocard/resources/fr_fr/strings.json differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/luna/luna-pseudocard/resources/fr_fr/views/detail/add-to-launcher.html differs&lt;br /&gt;
Only in 1.0.4: /resources/webOS/nova-cust-image-castle/usr/lib/luna/luna-pseudocard/resources/fr_fr/views/detail/notes-item.html&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/luna/luna-pseudocard/resources/it_it/strings.json differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/luna/luna-pseudocard/resources/it_it/views/detail/add-to-launcher.html differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/luna/luna-pseudocard/resources/it_it/views/detail/detail-scene.html differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/luna/luna-pseudocard/stylesheets/pseudocard.css differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/luna/luna-pseudocard/templates/common/group_container.html differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/luna/luna-pseudocard/templates/common/group-container-unlabeled.html differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/luna/luna-pseudocard/templates/detail/address-item.html differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/luna/palm-carriernetworksettings-info differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/luna/PalmDatabase.db3 differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/luna/system/luna-applauncher/app/controllers/app-assistant.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/luna/system/luna-applauncher/app/controllers/app-delete-assistant.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/luna/system/luna-applauncher/app/controllers/app-info-assistant.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/luna/system/luna-applauncher/app/controllers/global-search-assistant.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/luna/system/luna-applauncher/app/controllers/launcher-animation.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/luna/system/luna-applauncher/app/controllers/launcher-assistant.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/luna/system/luna-applauncher/app/controllers/reorder-controller.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/luna/system/luna-applauncher/app/models/ApplicationService.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/luna/system/luna-applauncher/app/models/default-page-layout.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/luna/system/luna-applauncher/app/models/launcher-pages.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/luna/system/luna-applauncher/app/views/global-search/contact-div-entry.html differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/luna/system/luna-applauncher/app/views/global-search/dial-div-msg.html differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/luna/system/luna-applauncher/app/views/global-search/expanded-searches-div.html differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/luna/system/luna-applauncher/app/views/global-search/launchericons-div.html differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/luna/system/luna-applauncher/app/views/global-search/listcontainer.html differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/luna/system/luna-applauncher/app/views/global-search/single-first-contactpoint.html differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/luna/system/luna-applauncher/app/views/launcher/launcher-scene.html differs&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/usr/lib/luna/system/luna-applauncher/resources/de_de&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/usr/lib/luna/system/luna-applauncher/resources/en_ca&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/usr/lib/luna/system/luna-applauncher/resources/en_gb&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/luna/system/luna-applauncher/resources/en_pl/strings.json differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/luna/system/luna-applauncher/resources/en_pl/views/global-search/add-number-div.html differs&lt;br /&gt;
Only in 1.0.4: /resources/webOS/nova-cust-image-castle/usr/lib/luna/system/luna-applauncher/resources/en_pl/views/global-search/dial-div.html&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/luna/system/luna-applauncher/resources/en_pl/views/global-search/expanded-searches-div.html differs&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/usr/lib/luna/system/luna-applauncher/resources/es_es&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/luna/system/luna-applauncher/resources/es_us/strings.json differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/luna/system/luna-applauncher/resources/es_us/stylesheets/global-search.css differs&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/usr/lib/luna/system/luna-applauncher/resources/fr_ca&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/usr/lib/luna/system/luna-applauncher/resources/fr_fr&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/usr/lib/luna/system/luna-applauncher/resources/it_it&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/luna/system/luna-applauncher/stylesheets/global-search.css differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/luna/system/luna-applauncher/stylesheets/launcher.css differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/luna/system/luna-systemui/app/controllers/acctservicealert-assistant.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/luna/system/luna-systemui/app/controllers/acctsyncdashboard-assistant.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/luna/system/luna-systemui/app/controllers/app-assistant.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/luna/system/luna-systemui/app/controllers/audio-assistant.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/luna/system/luna-systemui/app/controllers/backupalert-assistant.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/luna/system/luna-systemui/app/controllers/bar-assistant.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/luna/system/luna-systemui/app/controllers/dataimportalert-assistant.js differs&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/usr/lib/luna/system/luna-systemui/app/controllers/datasyncalert-assistant.js&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/luna/system/luna-systemui/app/controllers/devicemenu-assistant.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/luna/system/luna-systemui/app/controllers/enablewifialert-assistant.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/luna/system/luna-systemui/app/controllers/files-assistant.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/luna/system/luna-systemui/app/controllers/imagealbum-assistant.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/luna/system/luna-systemui/app/controllers/imagecapture-assistant.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/luna/system/luna-systemui/app/controllers/imagefull-assistant.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/luna/system/luna-systemui/app/controllers/imagefullcrop-assistant.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/luna/system/luna-systemui/app/controllers/imagethumb-assistant.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/luna/system/luna-systemui/app/controllers/locationalert-assistant.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/luna/system/luna-systemui/app/controllers/lowbatteryalert-assistant.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/luna/system/luna-systemui/app/controllers/pbapalert-assistant.js differs&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/usr/lib/luna/system/luna-systemui/app/controllers/phonenetworkalert-assistant.js&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/luna/system/luna-systemui/app/controllers/picker-assistant.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/luna/system/luna-systemui/app/controllers/poweroffalert-assistant.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/luna/system/luna-systemui/app/controllers/ringtone-assistant.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/luna/system/luna-systemui/app/controllers/storagealert-assistant.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/luna/system/luna-systemui/app/controllers/storageerroralert-assistant.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/luna/system/luna-systemui/app/controllers/storagewarning-assistant.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/luna/system/luna-systemui/app/controllers/texthint-assistant.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/luna/system/luna-systemui/app/controllers/updatealert-assistant.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/luna/system/luna-systemui/app/controllers/updatebanneralert-assistant.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/luna/system/luna-systemui/app/controllers/updatefinalalert-assistant.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/luna/system/luna-systemui/app/controllers/usbdashboard-assistant.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/luna/system/luna-systemui/app/controllers/video-assistant.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/luna/system/luna-systemui/app/controllers/volumealert-assistant.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/luna/system/luna-systemui/app/controllers/wanderror-assistant.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/luna/system/luna-systemui/app/models/btService.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/luna/system/luna-systemui/app/models/fileslist-service.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/luna/system/luna-systemui/app/models/local-flipview-model.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/luna/system/luna-systemui/app/models/mock/mock-fileslist-service.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/luna/system/luna-systemui/app/models/single-flipview-model.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/luna/system/luna-systemui/app/models/syspref-service.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/luna/system/luna-systemui/app/models/systemPreferences.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/luna/system/luna-systemui/app/models/telephonyService.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/luna/system/luna-systemui/app/models/WiFiService.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/luna/system/luna-systemui/app/utils/audio-common.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/luna/system/luna-systemui/app/utils/audio-renderqueue.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/luna/system/luna-systemui/app/utils/files-formatter.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/luna/system/luna-systemui/app/utils/image-loader.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/luna/system/luna-systemui/app/utils/photos-common.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/luna/system/luna-systemui/app/utils/utils.js differs&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/usr/lib/luna/system/luna-systemui/app/views/datasyncalert&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/luna/system/luna-systemui/app/views/devicemenu/devicemenu-scene.html differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/luna/system/luna-systemui/app/views/devicemenu/listitem.html differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/luna/system/luna-systemui/app/views/files/files-scene.html differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/luna/system/luna-systemui/app/views/imagealbum/imagealbum-scene.html differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/luna/system/luna-systemui/app/views/imagethumb/imagethumb-scene.html differs&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/usr/lib/luna/system/luna-systemui/app/views/phonenetworkalert&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/luna/system/luna-systemui/app/views/ringtone/entry.html differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/luna/system/luna-systemui/app/views/storageerroralert/storageerroralert-scene.html differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/luna/system/luna-systemui/app/views/updatealert/updatealert-scene.html differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/luna/system/luna-systemui/app/views/updatefinalalert/updatefinalalert-scene.html differs&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/usr/lib/luna/system/luna-systemui/images/bell_off.png&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/usr/lib/luna/system/luna-systemui/images/bottom-page-fade.png&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/luna/system/luna-systemui/images/castle.icns differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/luna/system/luna-systemui/images/empty-folder-audio.png differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/luna/system/luna-systemui/images/empty-folder-images.png differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/luna/system/luna-systemui/images/empty-folder-other.png differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/luna/system/luna-systemui/images/empty-folder-videos.png differs&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/usr/lib/luna/system/luna-systemui/images/network-roaming-triangle.png&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/usr/lib/luna/system/luna-systemui/images/top-page-fade.png&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/luna/system/luna-systemui/javascripts/DeviceClass.js differs&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/usr/lib/luna/system/luna-systemui/resources/de_de&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/usr/lib/luna/system/luna-systemui/resources/en_ca&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/usr/lib/luna/system/luna-systemui/resources/en_gb&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/luna/system/luna-systemui/resources/en_pl/strings.json differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/luna/system/luna-systemui/resources/en_pl/views/devicemenu/devicemenu-scene.html differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/luna/system/luna-systemui/resources/en_pl/views/files/files-scene.html differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/luna/system/luna-systemui/resources/en_pl/views/imagealbum/imagealbum-scene.html differs&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/usr/lib/luna/system/luna-systemui/resources/en_pl/views/phonenetworkalert&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/luna/system/luna-systemui/resources/en_pl/views/storageerroralert/storageerroralert-scene.html differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/luna/system/luna-systemui/resources/en_pl/views/updatealert/updatealert-scene.html differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/luna/system/luna-systemui/resources/en_pl/views/updatefinalalert/updatefinalalert-scene.html differs&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/usr/lib/luna/system/luna-systemui/resources/es_es&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/luna/system/luna-systemui/resources/es_us/strings.json differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/luna/system/luna-systemui/resources/es_us/views/devicemenu/devicemenu-scene.html differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/luna/system/luna-systemui/resources/es_us/views/files/files-scene.html differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/luna/system/luna-systemui/resources/es_us/views/imagealbum/imagealbum-scene.html differs&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/usr/lib/luna/system/luna-systemui/resources/es_us/views/phonenetworkalert&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/luna/system/luna-systemui/resources/es_us/views/storageerroralert/storageerroralert-scene.html differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/luna/system/luna-systemui/resources/es_us/views/updatealert/updatealert-scene.html differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/luna/system/luna-systemui/resources/es_us/views/updatefinalalert/updatefinalalert-scene.html differs&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/usr/lib/luna/system/luna-systemui/resources/fr_ca&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/usr/lib/luna/system/luna-systemui/resources/fr_fr&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/usr/lib/luna/system/luna-systemui/resources/it_it&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/luna/system/luna-systemui/sources.json differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/luna/system/luna-systemui/stylesheets/devicemenu.css differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/luna/system/luna-systemui/stylesheets/filepicker.css differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/luna/system/luna-systemui/stylesheets/notification.css differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/luna/system/luna-systemui/stylesheets/system-notification.css differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/luna/system/luna-systemui/stylesheets/systemui.css differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/modem/castlecdma_evt1_fw.tar differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/modem/castleumtsfw.tar differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ossinfo/Open Source Information.pdf differs&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/usr/lib/rdxd&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/SheetToGoModule.so differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/SlideshowToGoModule.so differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/sqlite3_palm_extension.so differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/WordToGoModule.so differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.backup/app/controllers/account-assistant.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.backup/app/controllers/app-assistant.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.backup/app/controllers/backup-assistant.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.backup/app/controllers/change-password-assistant.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.backup/app/controllers/forgot-password-assistant.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.backup/app/controllers/password-assistant.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.backup/app/controllers/profile-util.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.backup/app/controllers/reset-email-assistant.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.backup/app/controllers/reset-password-assistant.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.backup/app/models/account-service.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.backup/app/views/backup/backup-scene.html differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.backup/resources/es_us/strings.json differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.backup/resources/es_us/views/account/change-password-dialog.html differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.backup/resources/es_us/views/account/password-dialog.html differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.backup/resources/es_us/views/account/reset-password-dialog.html differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.backup/resources/es_us/views/backup/backup-scene.html differs&lt;br /&gt;
Only in 1.0.4: /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.backup/resources/es_us/views/dialogs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.backup/stylesheets/backup.css differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.bluetooth/app/controllers/app-assistant.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.bluetooth/app/controllers/bluetooth-assistant.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.bluetooth/app/controllers/DeviceClass.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.bluetooth/app/controllers/inquiry-assistant.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.bluetooth/app/views/template/passkey.html differs&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.bluetooth/framework_config.json&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.bluetooth/resources/es_us/strings.json differs&lt;br /&gt;
Only in 1.0.4: /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.bluetooth/resources/es_us/views/bluetooth&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.bluetooth/stylesheets/bluetooth.css differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.browser/app/controllers/addressbar.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.browser/app/controllers/app-assistant.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.browser/app/controllers/bookmark-dialog-assistant.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.browser/app/controllers/bookmarks-assistant.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.browser/app/controllers/chrome.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.browser/app/controllers/customizeicon-assistant.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.browser/app/controllers/date.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.browser/app/controllers/download-controller.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.browser/app/controllers/download-request.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.browser/app/controllers/global_code.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.browser/app/controllers/history-assistant.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.browser/app/controllers/networkdialog-assistant.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.browser/app/controllers/page-applicationmenu.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.browser/app/controllers/page-assistant.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.browser/app/controllers/page-controls.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.browser/app/controllers/page-navigationmenu.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.browser/app/controllers/page-progressanimation.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.browser/app/controllers/page-searchanimation.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.browser/app/controllers/preferences-assistant.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.browser/app/controllers/startpage-assistant.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.browser/app/controllers/urlbar.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.browser/app/controllers/urlsearch-controller.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.browser/app/controllers/url-util.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.browser/app/models/bookmark-data-source.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.browser/app/models/bookmark-folder.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.browser/app/models/bookmark-store.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.browser/app/models/browser-db.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.browser/app/models/browser-prefs.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.browser/app/models/browser-prefs-store.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.browser/app/models/download-item.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.browser/app/models/download-model.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.browser/app/models/history-data-source.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.browser/app/models/history-day.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.browser/app/models/history-list.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.browser/app/models/history-store.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.browser/app/models/keyboardshortcuts.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.browser/app/models/keycoderecorder.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.browser/app/models/networkmonitor.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.browser/app/models/url-reference.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.browser/app/views/bookmarks/bookmarks-container.html differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.browser/app/views/bookmarks/bookmarks-entry.html differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.browser/app/views/customizeicon/customizeicon-scene.html differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.browser/app/views/history/history-container.html differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.browser/app/views/history/history-entry.html differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.browser/app/views/page/start-page.html differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.browser/app/views/startpage/startpage-scene.html differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.browser/app/views/urlsearch/urlsearch-container.html differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.browser/app/views/urlsearch/urlsearch-entry.html differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.browser/resources/es_us/strings.json differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.browser/resources/es_us/views/customizeicon/customizeicon-scene.html differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.browser/resources/es_us/views/startpage/startpage-scene.html differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.browser/sources.json differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.browser/stylesheets/browser.css differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.calculator/app/controllers/app-assistant.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.calculator/app/controllers/calculator-assistant.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.calculator/app/models/calculator.js differs&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.calculator/images/key-comma.png&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.calculator/images/lcd-readout-short.png&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.calculator/stylesheets/calculator.css differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.calendar/app/controllers/accountlogin-assistant.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.calendar/app/controllers/app-assistant.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.calendar/app/controllers/choosetransport-assistant.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.calendar/app/controllers/dashboard-assistant.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.calendar/app/controllers/datetime-assistant.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.calendar/app/controllers/day-assistant.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.calendar/app/controllers/edit-assistant.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.calendar/app/controllers/firstuse-assistant.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.calendar/app/controllers/firstuse-with-accts-assistant.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.calendar/app/controllers/month-assistant.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.calendar/app/controllers/participants-assistant.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.calendar/app/controllers/passwordchanged-assistant.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.calendar/app/controllers/prefs-acct-assistant.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.calendar/app/controllers/prefs-assistant.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.calendar/app/controllers/reminder-assistant.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.calendar/app/controllers/reminder-list-assistant.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.calendar/app/controllers/repeat-assistant.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.calendar/app/controllers/week-assistant.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.calendar/app/models/accounts-luna-service.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.calendar/app/models/appmanager-luna-service.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.calendar/app/models/calendar_event_model.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.calendar/app/models/calendar-luna-service.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.calendar/app/models/calendar-prefs-manager.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.calendar/app/models/calendars-manager.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.calendar/app/models/contacts-luna-service.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.calendar/app/models/firstuse-manager.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.calendar/app/models/pimsync-luna-service.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.calendar/app/models/reminder-manager.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.calendar/app/models/system-luna-service.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.calendar/app/views/accountlogin/accountlogin-error-msg.html differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.calendar/app/views/choosetransport/choosetransport-scene.html differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.calendar/app/views/edit/edit-scene.html differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.calendar/app/views/edit/infoButton.html differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.calendar/app/views/edit/listbutton.html differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.calendar/app/views/edit/popupButton.html differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.calendar/app/views/reminder/reminder-event.html differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.calendar/app/views/reminder/reminder-scene.html differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.calendar/app/views/reminder-list/reminderContainer.html differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.calendar/app/views/shared/group_container.html differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.calendar/images/button-contact.png differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.calendar/images/button-dismiss.png differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.calendar/images/button-snooze.png differs&lt;br /&gt;
Only in 1.0.4: /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.calendar/images/prefs-error.png&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.calendar/javascripts/accountLocalizations.js&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.calendar/javascripts/color-picker.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.calendar/javascripts/confirm-purgeaccount.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.calendar/javascripts/invalid_event.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.calendar/javascripts/jumpto.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.calendar/javascripts/luna_integerpopup.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.calendar/javascripts/luna_widget_date.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.calendar/javascripts/luna_widget_integerpicker.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.calendar/javascripts/luna_widget_time.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.calendar/javascripts/recurrence-rule.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.calendar/javascripts/recurrence-warning.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.calendar/javascripts/tap_handler.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.calendar/resources/es_us/strings.json differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.calendar/resources/es_us/stylesheets/accountlogin.css differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.calendar/resources/es_us/stylesheets/calendar.css differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.calendar/resources/es_us/views/choosetransport/choosetransport-scene.html differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.calendar/resources/es_us/views/reminder/reminder-scene.html differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.calendar/sources.json differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.calendar/stylesheets/accountlogin.css differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.calendar/stylesheets/alarm.css differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.calendar/stylesheets/calendar.css differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.calendar/stylesheets/date-picker.css differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.calendar/stylesheets/datetime.css differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.calendar/stylesheets/day.css differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.calendar/stylesheets/details.css differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.calendar/stylesheets/edit.css differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.calendar/stylesheets/event-colors.css differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.calendar/stylesheets/integer-picker.css differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.calendar/stylesheets/month.css differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.calendar/stylesheets/notification.css differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.calendar/stylesheets/participants.css differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.calendar/stylesheets/preferences.css differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.calendar/stylesheets/prefs-acct.css differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.calendar/stylesheets/repeat.css differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.calendar/stylesheets/time-picker.css differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.calendar/stylesheets/week.css differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.camera/app/controllers/app-assistant.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.camera/app/controllers/capture-assistant.js differs&lt;br /&gt;
Only in 1.0.4: /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.camera/app/controllers/stage-assistant.js&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.camera/app/models/app-manager-service.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.camera/app/models/camera-prefs.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.camera/app/models/mediadb-image-service.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.camera/app/models/system-sounds-service.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.camera/camera-prefs-defaults.json differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.camera/javascripts/camera-control.js differs&lt;br /&gt;
Only in 1.0.4: /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.camera/javascripts/capture-animation.js&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.camera/javascripts/geo-control.js differs&lt;br /&gt;
Only in 1.0.4: /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.camera/javascripts/MultiStateWidget.js&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.camera/javascripts/powermanager-service.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.camera/resources/es_us/strings.json differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.camera/sources.json differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.camera/stylesheets/camera.css differs&lt;br /&gt;
Only in 1.0.4: /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.camera/stylesheets/camera-splash.css&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.certificate/resources/es_us/strings.json differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.clock/app/controllers/alarm-assistant.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.clock/app/controllers/alarmdash-assistant.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.clock/app/controllers/alarms-assistant.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.clock/app/controllers/app-assistant.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.clock/app/controllers/clock-assistant.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.clock/app/controllers/ring-assistant.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.clock/app/controllers/settings-assistant.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.clock/app/controllers/themes-assistant.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.clock/app/models/alarm.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.clock/app/models/alarms.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.clock/app/models/settings.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.clock/app/models/themes.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.clock/appinfo.json differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.clock/images/notification-alarm-small.png differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.clock/resources/es_us/strings.json differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.clock/resources/es_us/stylesheets/clock.css differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.clock/stylesheets/clock.css differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.clock/themes/analog/analog-clock-functions.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.clock/themes/analog/analog-theme.css differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.clock/themes/digital/digital-clock-functions.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.clock/themes/digital/digital-theme.css differs&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.clock/themes/digital/images/de_de-am-landscape.png&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.clock/themes/digital/images/de_de-am.png&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.clock/themes/digital/images/de_de-pm-landscape.png&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.clock/themes/digital/images/de_de-pm.png&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.clock/themes/digital/images/en_gb-am-landscape.png&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.clock/themes/digital/images/en_gb-am.png&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.clock/themes/digital/images/en_gb-pm-landscape.png&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.clock/themes/digital/images/en_gb-pm.png&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.clock/themes/digital/images/es_es-am-landscape.png&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.clock/themes/digital/images/es_es-am.png&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.clock/themes/digital/images/es_es-pm-landscape.png&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.clock/themes/digital/images/es_es-pm.png&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.clock/themes/digital/images/fr_ca-am-landscape.png&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.clock/themes/digital/images/fr_ca-am.png&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.clock/themes/digital/images/fr_ca-pm-landscape.png&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.clock/themes/digital/images/fr_ca-pm.png&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.clock/themes/digital/images/fr_fr-am-landscape.png&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.clock/themes/digital/images/fr_fr-am.png&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.clock/themes/digital/images/fr_fr-pm-landscape.png&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.clock/themes/digital/images/fr_fr-pm.png&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.clock/themes/digital/images/it_it-am-landscape.png&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.clock/themes/digital/images/it_it-am.png&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.clock/themes/digital/images/it_it-pm-landscape.png&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.clock/themes/digital/images/it_it-pm.png&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.clock/themes/manualanalog/manualanalog-clock-functions.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.clock/themes/manualanalog/manualanalog-theme.css differs&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.collectlogs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.contacts/app/controllers/accountlogin-assistant.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.contacts/app/controllers/addexisting-assistant.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.contacts/app/controllers/address-edit-assistant.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.contacts/app/controllers/addtolauncher-assistant.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.contacts/app/controllers/app-assistant.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.contacts/app/controllers/birthdaypicker-assistant.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.contacts/app/controllers/choosetransport-assistant.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.contacts/app/controllers/detail-assistant.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.contacts/app/controllers/edit-assistant.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.contacts/app/controllers/editbehaviors.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.contacts/app/controllers/filepicker-behaviors.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.contacts/app/controllers/firstuse-assistant.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.contacts/app/controllers/gal-helper.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.contacts/app/controllers/list-assistant.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.contacts/app/controllers/locationwatcher/AccuWeatherService.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.contacts/app/controllers/locationwatcher/airplaneArrival-assistant.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.contacts/app/controllers/locationwatcher/airplane-service.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.contacts/app/controllers/locationwatcher/notification-assistant.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.contacts/app/controllers/name-details-assistant.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.contacts/app/controllers/passwordchanged-assistant.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.contacts/app/controllers/prefs-assistant.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.contacts/app/controllers/reminder-assistant.js differs&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.contacts/app/controllers/simchoice-assistant.js&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.contacts/app/controllers/speeddial-assistant.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.contacts/app/controllers/speeddialchoice-assistant.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.contacts/app/controllers/tiny-list.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.contacts/app/models/accounts-luna-service.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.contacts/app/models/activerecord-list-bridge.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.contacts/app/models/address-model.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.contacts/app/models/app_scene.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.contacts/app/models/contact-point-decorator.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.contacts/app/models/contacts-decorator-model.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.contacts/app/models/contacts_list.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.contacts/app/models/contacts-luna-service.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.contacts/app/models/contacts_mock_service.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.contacts/app/models/contacts_model.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.contacts/app/models/contacts-static-aggregate-mock-service.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.contacts/app/models/contacts-static-mock-service.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.contacts/app/models/edit-rules.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.contacts/app/models/email-model.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.contacts/app/models/im-model.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.contacts/app/models/phone-number-formatter.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.contacts/app/models/phonenumber-model.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.contacts/app/models/pimsync-luna-service.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.contacts/app/models/throttler.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.contacts/app/models/url-model.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.contacts/app/views/accountlogin/accountlogin-error-msg.html differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.contacts/app/views/common/group_container.html differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.contacts/app/views/common/group-container-unlabeled.html differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.contacts/app/views/detail/address-item.html differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.contacts/app/views/detail/detail-scene.html differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.contacts/app/views/detail/notes-item.html differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.contacts/app/views/detail/reminder.html differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.contacts/app/views/edit/address-edit.html differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.contacts/app/views/edit/lists-fake.html differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.contacts/app/views/firstuse/firstuse-scene.html differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.contacts/app/views/list/contact_entry.html differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.contacts/app/views/list/list-scene.html differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.contacts/app/views/list/lookup-entry.html differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.contacts/app/views/reminder/header.html differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.contacts/app/views/reminder/reminder-scene.html differs&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.contacts/app/views/simchoice&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.contacts/images/scroll-fade-bottom.png&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.contacts/javascripts/accountLocalizations.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.contacts/javascripts/CommandSystem.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.contacts/javascripts/MenuHandler.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.contacts/javascripts/perflogger.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.contacts/javascripts/Utilities.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.contacts/resources/es_us/strings.json differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.contacts/resources/es_us/stylesheets/detail-link.css differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.contacts/resources/es_us/stylesheets/firstuse.css differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.contacts/resources/es_us/stylesheets/list.css differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.contacts/resources/es_us/views/detail/detail-scene.html differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.contacts/resources/es_us/views/detail/notes-item.html differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.contacts/resources/es_us/views/detail/reminder.html differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.contacts/resources/es_us/views/edit/lists-fake.html differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.contacts/resources/es_us/views/firstuse/firstuse-scene.html differs&lt;br /&gt;
Only in 1.0.4: /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.contacts/resources/es_us/views/fullAddress&lt;br /&gt;
Only in 1.0.4: /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.contacts/resources/es_us/views/list/header.html&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.contacts/resources/es_us/views/list/list-scene.html differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.contacts/resources/es_us/views/reminder/header.html differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.contacts/resources/es_us/views/reminder/reminder-scene.html differs&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.contacts/resources/es_us/views/simchoice&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.contacts/sources.json differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.contacts/stylesheets/accountlogin.css differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.contacts/stylesheets/common.css differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.contacts/stylesheets/date-picker.css differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.contacts/stylesheets/detail-link.css differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.contacts/stylesheets/firstuse.css differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.contacts/stylesheets/list.css differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.contacts/stylesheets/notifications.css differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.contacts/stylesheets/prefs.css differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.contacts/stylesheets/sandbox-styles.css differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.contacts/stylesheets/speeddial.css differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.dataimport/app/controllers/app-assistant.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.dataimport/app/controllers/confirm-sync-data-assistant.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.dataimport/app/controllers/dataimport-util.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.dataimport/app/controllers/done-import-assistant.js differs&lt;br /&gt;
Only in 1.0.4: /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.dataimport/app/controllers/home-assistant.js&lt;br /&gt;
Only in 1.0.4: /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.dataimport/app/controllers/stage-assistant.js&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.dataimport/app/controllers/status-assistant.js&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.dataimport/app/controllers/sync-data-assistant.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.dataimport/app/models/dataimport_service.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.dataimport/app/views/confirm-sync-data/confirm-sync-data-scene.html differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.dataimport/app/views/confirm-sync-data/confirm-text.html differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.dataimport/app/views/done-import/done-import-scene.html differs&lt;br /&gt;
Only in 1.0.4: /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.dataimport/app/views/home&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.dataimport/app/views/status&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.dataimport/app/views/sync-data/sync-data-scene.html differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.dataimport/app/views/sync-pim/existingAccount.html differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.dataimport/appinfo.json differs&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.dataimport/images/accounts_large.png&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.dataimport/images/accounts_small.png&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.dataimport/images/background.png&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.dataimport/images/computer.png&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.dataimport/images/exchange_large.png&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.dataimport/images/google_large.png&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.dataimport/images/google_small.png&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.dataimport/images/palmprofile_large.png&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.dataimport/images/warning-medium.png&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.dataimport/resources/es_us/strings.json differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.dataimport/resources/es_us/stylesheets/dataimport-app.css differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.dataimport/resources/es_us/views/confirm-sync-data/confirm-sync-data-scene.html differs&lt;br /&gt;
Only in 1.0.4: /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.dataimport/resources/es_us/views/confirm-sync-data/confirm-text.html&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.dataimport/resources/es_us/views/done-import/done-import-scene.html differs&lt;br /&gt;
Only in 1.0.4: /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.dataimport/resources/es_us/views/home&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.dataimport/resources/es_us/views/status&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.dataimport/resources/es_us/views/sync-data/sync-data-scene.html differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.dataimport/sources.json differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.dataimport/stylesheets/dataimport-app.css differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.dateandtime/app/controllers/app-assistant.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.dateandtime/app/controllers/dateandtimeconfig-assistant.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.dateandtime/app/controllers/timezone-assistant.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.dateandtime/app/models/SystemService.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.dateandtime/app/views/dateandtimeconfig/dateandtimeconfig-scene.html differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.dateandtime/app/views/timezone/listcontainer.html differs&lt;br /&gt;
Only in 1.0.4: /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.dateandtime/javascript&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.dateandtime/resources/es_us/strings.json differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.dateandtime/resources/es_us/views/dateandtimeconfig/dateandtimeconfig-scene.html differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.dateandtime/resources/es_us/views/timezone/listcontainer.html differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.dateandtime/stylesheets/dateandtime.css differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.deviceinfo/app/controllers/app-info-assistant.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.deviceinfo/app/controllers/audio-assistant.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.deviceinfo/app/controllers/automatedtests-assistant.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.deviceinfo/app/controllers/erase-assistant.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.deviceinfo/app/controllers/gps-assistant.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.deviceinfo/app/controllers/keyboard-assistant.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.deviceinfo/app/controllers/keyboardSlider-assistant.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.deviceinfo/app/controllers/list-assistant.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.deviceinfo/app/controllers/more-assistant.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.deviceinfo/app/controllers/power-assistant.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.deviceinfo/app/controllers/proximity-assistant.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.deviceinfo/app/controllers/screen-assistant.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.deviceinfo/app/controllers/sliderCount-assistant.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.deviceinfo/app/controllers/touchgrid-assistant.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.deviceinfo/app/controllers/Touchstone-assistant.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.deviceinfo/app/views/audio/audio-scene.html differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.deviceinfo/app/views/erase/erase-scene.html differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.deviceinfo/app/views/keyboardSlider/keyboardSlider-scene.html differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.deviceinfo/app/views/list/item.html differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.deviceinfo/app/views/list/list-scene.html differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.deviceinfo/app/views/more/more-scene.html differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.deviceinfo/app/views/power/power-scene.html differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.deviceinfo/app/views/proximity/proximity-scene.html differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.deviceinfo/app/views/screen/screen-scene.html differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.deviceinfo/app/views/sliderCount/sliderCount-scene.html differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.deviceinfo/images/backgesture.png differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.deviceinfo/resources/es_us/strings.json differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.deviceinfo/resources/es_us/views/audio/audio-scene.html differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.deviceinfo/resources/es_us/views/erase/erase-scene.html differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.deviceinfo/resources/es_us/views/keyboardSlider/keyboardSlider-scene.html differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.deviceinfo/resources/es_us/views/list/list-scene.html differs&lt;br /&gt;
Only in 1.0.4: /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.deviceinfo/resources/es_us/views/more/more-scene.html&lt;br /&gt;
Only in 1.0.4: /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.deviceinfo/resources/es_us/views/more/otherapp-item.html&lt;br /&gt;
Only in 1.0.4: /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.deviceinfo/resources/es_us/views/more/palmapp-item.html&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.deviceinfo/resources/es_us/views/power/power-scene.html differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.deviceinfo/resources/es_us/views/proximity/proximity-scene.html differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.deviceinfo/resources/es_us/views/screen/screen-scene.html differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.deviceinfo/resources/es_us/views/sliderCount/sliderCount-scene.html differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.deviceinfo/stylesheets/crotest.css differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.docviewer/app/controllers/app-assistant.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.docviewer/app/controllers/document-assistant.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.docviewer/app/controllers/error-assistant.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.docviewer/app/controllers/excel.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.docviewer/app/controllers/expired-assistant.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.docviewer/app/controllers/first-assistant.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.docviewer/app/controllers/outline-assistant.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.docviewer/app/controllers/ppt.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.docviewer/app/controllers/recent-assistant.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.docviewer/app/controllers/slidetext-assistant.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.docviewer/app/controllers/trial-assistant.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.docviewer/app/controllers/upgrade-assistant.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.docviewer/app/controllers/word.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.docviewer/app/views/document/command_bar.html differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.docviewer/app/views/document/header_bar.html differs&lt;br /&gt;
Only in 1.0.4: /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.docviewer/app/views/document/xls_header_bar.html&lt;br /&gt;
Only in 1.0.4: /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.docviewer/app/views/recent/listcontainer.html&lt;br /&gt;
Only in 1.0.4: /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.docviewer/app/views/recent/listitem.html&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.docviewer/framework_config.json differs&lt;br /&gt;
Only in 1.0.4: /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.docviewer/images/header-separator.png&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.docviewer/javascripts/widget_find.js differs&lt;br /&gt;
Only in 1.0.4: /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.docviewer/resources/es_us/views/dataviz&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.docviewer/stylesheets/docviewer.css differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.docviewer/stylesheets/find-buttons.css differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.docviewer/stylesheets/find-dev.css differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.email/app/app_scene.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.email/app/controllers/accountmanager-assistant.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.email/app/controllers/accountpreferences-assistant.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.email/app/controllers/accounts-assistant.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.email/app/controllers/app-assistant.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.email/app/controllers/colorpicker-dialog-assistant.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.email/app/controllers/compose-assistant.js differs&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.email/app/controllers/contactreminder-dashboard-assistant.js&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.email/app/controllers/create-assistant.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.email/app/controllers/email-dashboard-assistant.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.email/app/controllers/error-dashboard-assistant.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.email/app/controllers/firstuse-assistant.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.email/app/controllers/imageview-assistant.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.email/app/controllers/list-assistant.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.email/app/controllers/menu-controller.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.email/app/controllers/message-assistant.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.email/app/controllers/moveto-assistant.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.email/app/controllers/notification-assistant.js differs&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.email/app/controllers/securitypolicy-assistant.js&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.email/app/controllers/selectfolder-assistant.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.email/app/controllers/senderror-dashboard-assistant.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.email/app/controllers/wizard-assistant.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.email/app/models/Attachments.js differs&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.email/app/models/ContactReminder.js&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.email/app/models/EmailAccount.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.email/app/models/EmailAppDepot.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.email/app/models/EmailFlags.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.email/app/models/Email.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.email/app/models/emaillist-data-source.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.email/app/models/EmailRecipient.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.email/app/models/FolderFlags.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.email/app/models/Folder.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.email/app/models/im-model.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.email/app/models/Message.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.email/app/models/ServiceStrings.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.email/app/throttler.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.email/app/views/accountpreferences/accountpreferences-scene.html differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.email/app/views/compose/compose_attachments.html differs&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.email/app/views/contactreminder-dashboard&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.email/app/views/create/create-scene.html differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.email/app/views/list/email_entry.html differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.email/app/views/message/message_attachments.html differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.email/app/views/message/message_subject.html differs&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.email/app/views/securitypolicy&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.email/app/views/selectfolder/folder.html differs&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.email/framework_config.json&lt;br /&gt;
Only in 1.0.4: /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.email/images/compose-triangle-blue-close.png&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.email/images/flag-on-white.png differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.email/images/goto-next-message-high.png differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.email/images/goto-next-message.png differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.email/images/goto-prev-message-high.png differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.email/images/goto-prev-message.png differs&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.email/images/list-error.png&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.email/images/personal-reminder-icon-small.png&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.email/images/personal-reminder-notification.png&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.email/resources/es_us/strings.json differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.email/resources/es_us/stylesheets/email.css differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.email/resources/es_us/views/accountpreferences/accountpreferences-scene.html differs&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.email/resources/es_us/views/contactreminder-dashboard&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.email/resources/es_us/views/create/create-scene.html differs&lt;br /&gt;
Only in 1.0.4: /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.email/resources/es_us/views/message/meeting_invitation.html&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.email/resources/es_us/views/securitypolicy&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.email/sources.json differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.email/stylesheets/compose.css differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.email/stylesheets/email.css differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.email/stylesheets/notifications.css differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.findapps/app/controllers/add-comment-assistant.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.findapps/app/controllers/app-assistant.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.findapps/app/controllers/comments-assistant.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.findapps/app/controllers/details-assistant.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.findapps/app/controllers/error-assistant.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.findapps/app/controllers/inappropriate-assistant.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.findapps/app/controllers/main-assistant.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.findapps/app/controllers/picture-assistant.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.findapps/app/controllers/search-assistant.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.findapps/app/controllers/tagcloud-assistant.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.findapps/app/extensions/framework.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.findapps/app/utilities/errors.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.findapps/app/utilities/lazyloadimage.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.findapps/app/utilities/spinner.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.findapps/app/utilities/updater.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.findapps/app/utilities/utcdate.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.findapps/app/utilities/versioncheck.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.findapps/app/views/details/details-all.html differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.findapps/app/views/error/error-scene.html differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.findapps/images/btn-submit-search.png differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.findapps/images/btn-submit-search-press.png differs&lt;br /&gt;
Only in 1.0.4: /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.findapps/images/no-wifi-110x98.png&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.findapps/resources/es_us/appinfo.json differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.findapps/resources/es_us/strings.json differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.findapps/resources/es_us/views/details/details-all.html differs&lt;br /&gt;
Only in 1.0.4: /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.findapps/resources/es_us/views/details/details-linklist.html&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.findapps/resources/es_us/views/error/error-scene.html differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.findapps/resources/es_us/views/main/main-scene.html differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.findapps/stylesheets/appcatalog.css differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.findapps/weave/services/accountservices.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.findapps/weave/services/applicationinstaller.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.findapps/weave/services/applicationmanager.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.findapps/weave/services/applicationserver.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.findapps/weave/services/browser.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.findapps/weave/services/connectionmanager.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.findapps/weave/services/deviceprofile.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.findapps/weave/services/downloadmanager.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.findapps/weave/services/powermanagement.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.findapps/weave/services/serviceobserver.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.findapps/weave/services/services.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.findapps/weave/services/systemmanager.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.findapps/weave/services/systemproperties.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.findapps/weave/system/activator.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.findapps/weave/utilities/appmenu.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.findapps/weave/utilities/regexp.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.findapps/weave/weave.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.findapps/weave.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.firstuse/app/controllers/accountinfo-assistant.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.firstuse/app/controllers/app-assistant.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.firstuse/app/controllers/back-tutorial-assistant.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.firstuse/app/controllers/changepassword-assistant.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.firstuse/app/controllers/changepasswordsuccess-assistant.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.firstuse/app/controllers/confirmlanguage-assistant.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.firstuse/app/controllers/customization-assistant.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.firstuse/app/controllers/email-assistant.js differs&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.firstuse/app/controllers/end-one-assistant.js&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.firstuse/app/controllers/end-three-assistant.js&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.firstuse/app/controllers/end-two-assistant.js&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.firstuse/app/controllers/error-assistant.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.firstuse/app/controllers/firstuse-util.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.firstuse/app/controllers/forgotpassword-assistant.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.firstuse/app/controllers/home-assistant.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.firstuse/app/controllers/intro-assistant.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.firstuse/app/controllers/invalidsim-assistant.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.firstuse/app/controllers/invalid-token-assistant.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.firstuse/app/controllers/language-assistant.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.firstuse/app/controllers/location-auto-enable-assistant.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.firstuse/app/controllers/location-intro-assistant.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.firstuse/app/controllers/location-terms-assistant.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.firstuse/app/controllers/login-assistant.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.firstuse/app/controllers/name-assistant.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.firstuse/app/controllers/nosim-assistant.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.firstuse/app/controllers/password-assistant.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.firstuse/app/controllers/poweroffalert-assistant.js differs&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.firstuse/app/controllers/progress-assistant.js&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.firstuse/app/controllers/provision-assistant.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.firstuse/app/controllers/provision-util.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.firstuse/app/controllers/recover-password-assistant.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.firstuse/app/controllers/registeredemail-assistant.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.firstuse/app/controllers/resetemail-assistant.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.firstuse/app/controllers/restore-assistant.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.firstuse/app/controllers/restorecomplete-assistant.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.firstuse/app/controllers/send-email-assistant.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.firstuse/app/controllers/status-assistant.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.firstuse/app/controllers/terms-assistant.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.firstuse/app/controllers/tutorial-assistant.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.firstuse/app/controllers/unregisteredemail-assistant.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.firstuse/app/controllers/wait-assistant.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.firstuse/app/controllers/welcome-assistant.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.firstuse/app/models/account-model.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.firstuse/app/models/account-service.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.firstuse/app/models/appcatalog-service.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.firstuse/app/models/contact-model.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.firstuse/app/models/firstuse-state.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.firstuse/app/models/location-service.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.firstuse/app/models/restore-complete-service.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.firstuse/app/views/accountinfo/accountinfo.html differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.firstuse/app/views/back-tutorial-main/back-tutorial-main-scene.html differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.firstuse/app/views/changepassword/changepassword-scene.html differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.firstuse/app/views/changepasswordsuccess/changepasswordsuccess-scene.html differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.firstuse/app/views/confirmlanguage/confirmlanguage-scene.html differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.firstuse/app/views/customization/customization-scene.html differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.firstuse/app/views/email/email-scene.html differs&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.firstuse/app/views/end-one&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.firstuse/app/views/end-three&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.firstuse/app/views/end-two&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.firstuse/app/views/error/error-scene.html differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.firstuse/app/views/forgotpassword/forgotpassword-scene.html differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.firstuse/app/views/intro/intro-scene.html differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.firstuse/app/views/invalidsim/invalidsim-scene.html differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.firstuse/app/views/invalid-token/invalid-token-scene.html differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.firstuse/app/views/language/country-container.html differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.firstuse/app/views/language/country-item.html differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.firstuse/app/views/language/language-container.html differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.firstuse/app/views/language/language-item.html differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.firstuse/app/views/language/language-scene.html differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.firstuse/app/views/location-auto-enable/location-auto-enable-scene.html differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.firstuse/app/views/location-intro/location-intro-scene.html differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.firstuse/app/views/location-terms/location-terms-scene.html differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.firstuse/app/views/login/login-scene.html differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.firstuse/app/views/name/name-scene.html differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.firstuse/app/views/nosim/nosim-scene.html differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.firstuse/app/views/password/password-scene.html differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.firstuse/app/views/poweroffalert/poweroffalert.html differs&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.firstuse/app/views/progress&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.firstuse/app/views/provision/provision-scene.html differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.firstuse/app/views/registeredemail/registeredemail-scene.html differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.firstuse/app/views/resetemail/resetemail-scene.html differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.firstuse/app/views/restore/restore-scene.html differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.firstuse/app/views/restorecomplete/restorecomplete-scene.html differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.firstuse/app/views/send-email/send-email-scene.html differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.firstuse/app/views/status/status-scene.html differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.firstuse/app/views/terms/privacy-dialog.html differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.firstuse/app/views/terms/terms-scene.html differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.firstuse/app/views/unregisteredemail/unregisteredemail-scene.html differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.firstuse/app/views/wait/wait-scene.html differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.firstuse/framework_config.json differs&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.firstuse/images/end.png&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.firstuse/images/fade-arrow-down.png&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.firstuse/images/fade-arrow-up.png&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.firstuse/images/glass-fade-bottom-corners.png&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.firstuse/images/glass-fade-top.png&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.firstuse/images/glass-tile-blue-with-fade.png&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.firstuse/images/help-icon.png&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.firstuse/images/list-highlight2.png differs&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.firstuse/images/palm-drawer-background-dark.png&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.firstuse/resources/es_us/strings.json differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.firstuse/resources/es_us/stylesheets/firstuse.css differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.firstuse/resources/es_us/views/accountinfo/accountinfo.html differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.firstuse/resources/es_us/views/back-tutorial-main/back-tutorial-main-scene.html differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.firstuse/resources/es_us/views/changepassword/changepassword-scene.html differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.firstuse/resources/es_us/views/changepasswordsuccess/changepasswordsuccess-scene.html differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.firstuse/resources/es_us/views/customization/customization-scene.html differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.firstuse/resources/es_us/views/email/email-scene.html differs&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.firstuse/resources/es_us/views/end-one&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.firstuse/resources/es_us/views/end-three&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.firstuse/resources/es_us/views/end-two&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.firstuse/resources/es_us/views/error/error-scene.html differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.firstuse/resources/es_us/views/forgotpassword/forgotpassword-scene.html differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.firstuse/resources/es_us/views/intro/intro-scene.html differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.firstuse/resources/es_us/views/invalidsim/invalidsim-scene.html differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.firstuse/resources/es_us/views/invalid-token/invalid-token-scene.html differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.firstuse/resources/es_us/views/location-auto-enable/location-auto-enable-scene.html differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.firstuse/resources/es_us/views/location-intro/location-intro-scene.html differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.firstuse/resources/es_us/views/location-terms/location-terms-scene.html differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.firstuse/resources/es_us/views/login/login-scene.html differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.firstuse/resources/es_us/views/name/name-scene.html differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.firstuse/resources/es_us/views/password/password-scene.html differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.firstuse/resources/es_us/views/poweroffalert/poweroffalert.html differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.firstuse/resources/es_us/views/provision/provision-scene.html differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.firstuse/resources/es_us/views/recover-password/recover-password-scene.html differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.firstuse/resources/es_us/views/registeredemail/registeredemail-scene.html differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.firstuse/resources/es_us/views/resetemail/resetemail-scene.html differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.firstuse/resources/es_us/views/restore/restore-scene.html differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.firstuse/resources/es_us/views/restorecomplete/restorecomplete-scene.html differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.firstuse/resources/es_us/views/send-email/send-email-scene.html differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.firstuse/resources/es_us/views/status/status-scene.html differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.firstuse/resources/es_us/views/terms/terms-scene.html differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.firstuse/resources/es_us/views/unregisteredemail/unregisteredemail-scene.html differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.firstuse/resources/es_us/views/wait/wait-scene.html differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.firstuse/sources.json differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.firstuse/stylesheets/back-tutorial.css differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.firstuse/stylesheets/firstuse.css differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.firstuse/videos/HaveFun.mp4 differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.help/app/assistants/app-assistant.js differs&lt;br /&gt;
Only in 1.0.4: /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.help/app/assistants/featured-assistant.js&lt;br /&gt;
Only in 1.0.4: /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.help/app/assistants/flicks-assistant.js&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.help/app/assistants/help-assistant.js&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.help/app/assistants/home-assistant.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.help/app/assistants/no-network-assistant.js differs&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.help/app/assistants/page-controls.js&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.help/app/assistants/page-navigationmenu.js&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.help/app/assistants/page-progressanimation.js&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.help/app/assistants/page-searchanimation.js&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.help/app/assistants/search-assistant.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.help/app/assistants/stage-assistant.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.help/app/assistants/topics-assistant.js differs&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.help/app/assistants/.vimrc&lt;br /&gt;
Only in 1.0.4: /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.help/app/models/assistant-helper.js&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.help/app/models/networkmonitor.js&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.help/app/models/url-manager.js differs&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.help/app/models/.vimrc&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.help/app/models/webview-helper.js&lt;br /&gt;
Only in 1.0.4: /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.help/app/views/featured&lt;br /&gt;
Only in 1.0.4: /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.help/app/views/flicks&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.help/app/views/help/help-scene.html differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.help/app/views/home/home-scene.html differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.help/app/views/home/item.html differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.help/app/views/home/list.html differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.help/app/views/no-network/no-network-scene.html differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.help/app/views/search/search-scene.html differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.help/app/views/topics/topics-scene.html differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.help/appinfo.json differs&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.help/build.xml&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.help/framework_config.json differs&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.help/images/browser-indeterminate-progress.png&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.help/images/progress-indicator.png&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.help/index.html differs&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.help/jslint.js&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.help/resources/en_us/strings.json differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.help/resources/es_us/appinfo.json differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.help/resources/es_us/strings.json differs&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.help/resources/es_us/views/home&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.help/resources/es_us/views/no-network/no-network-scene.html differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.help/sources.json differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.help/stylesheets/palm-help.css differs&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.help/.vimrc&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.languagepicker/app/controllers/app-assistant.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.languagepicker/app/controllers/languagepicker-assistant.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.languagepicker/app/controllers/progress-assistant.js differs&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.languagepicker/app/controllers/regionalsettings-assistant.js&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.languagepicker/app/controllers/regionpicker-assistant.js&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.languagepicker/app/views/progress/progress-scene.html differs&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.languagepicker/app/views/regionalsettings&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.languagepicker/app/views/regionpicker&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.languagepicker/appinfo.json differs&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.languagepicker/framework_config.json&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.languagepicker/index.html differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.languagepicker/resources/es_us/appinfo.json differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.languagepicker/resources/es_us/strings.json differs&lt;br /&gt;
Only in 1.0.4: /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.languagepicker/resources/es_us/views/progress&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.languagepicker/resources/es_us/views/regionalsettings&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.languagepicker/resources/es_us/views/regionpicker&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.languagepicker/stylesheets/languagepicker.css differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.location/app/controllers/app-assistant.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.location/app/controllers/autolocate-assistant.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.location/app/controllers/main-assistant.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.location/app/controllers/preterms-assistant.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.location/app/controllers/terms-assistant.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.location/app/models/location-service.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.location/resources/es_us/strings.json differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.location/resources/es_us/views/preterms/preterms-scene.html differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.location/resources/es_us/views/terms/terms-scene.html differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.location/stylesheets/location.css differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.maps/app/assistants/app-assistant.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.maps/app/assistants/mapshell-assistant.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.maps/app/views/mapshell/mapshell-scene.html differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.maps/app/views/no-wifi/no-wifi-scene.html differs&lt;br /&gt;
Only in 1.0.4: /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.maps/images/no-internet.png&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.maps/index_de_de.html&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.maps/index_en_ca.html&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.maps/index_en_gb.html&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.maps/index_es_es.html&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.maps/index_es_us.html differs&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.maps/index_fr_ca.html&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.maps/index_fr_fr.html&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.maps/index_it_it.html&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.maps/resources/es_us/strings.json differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.maps/resources/es_us/views/no-wifi/no-wifi-scene.html differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.maps/stylesheets/maps.css differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.messaging/app/controllers/app-assistant.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.messaging/app/controllers/chatview-assistant.js differs&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.messaging/app/controllers/class0Alert-assistant.js&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.messaging/app/controllers/compose-assistant.js differs&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.messaging/app/controllers/dashboardClass0-assistant.js&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.messaging/app/controllers/dashboardError-assistant.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.messaging/app/controllers/dashboardMessage-assistant.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.messaging/app/controllers/dashboardReminder-assistant.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.messaging/app/controllers/dashboardSendError-assistant.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.messaging/app/controllers/debug-assistant.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.messaging/app/controllers/imageview-assistant.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.messaging/app/controllers/listview-assistant.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.messaging/app/controllers/mmsTextAttachment-assistant.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.messaging/app/controllers/notification-assistant.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.messaging/app/controllers/prefsAccountSummary-assistant.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.messaging/app/controllers/prefsAccountTypeList-assistant.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.messaging/app/controllers/prefsFirstLaunch-assistant.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.messaging/app/controllers/prefsSetupAccount-assistant.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.messaging/app/models/chat_flags.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.messaging/app/models/messaging-constants.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.messaging/app/models/messaging-luna-service.js differs&lt;br /&gt;
Only in 1.0.4: /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.messaging/app/models/messaging-static-mock-service.js&lt;br /&gt;
Only in 1.0.4: /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.messaging/app/models/mockData.js&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.messaging/app/utilities/BucketDateFormatter.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.messaging/app/utilities/CharacterCounter.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.messaging/app/utilities/ServiceRequestHelper.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.messaging/app/utilities/utilities.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.messaging/app/utilities/WidgetUtility.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.messaging/app/views/chatview/chatList-container.html differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.messaging/app/views/chatview/chatList-row.html differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.messaging/app/views/chatview/message/callback-number.html differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.messaging/app/views/chatview/message/message-summary.html differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.messaging/app/views/chatview/message/message-text.html differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.messaging/app/views/chatview/message/mms-audio-container.html differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.messaging/app/views/chatview/message/mms-image-container.html differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.messaging/app/views/chatview/message/mms-text.html differs&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.messaging/app/views/class0Alert&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.messaging/app/views/common/listContainer.html differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.messaging/app/views/compose/compose-scene.html differs&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.messaging/app/views/dashboardClass0&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.messaging/app/views/dashboardError/message-info.html differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.messaging/app/views/dashboardMessage/message-info.html differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.messaging/app/views/dashboardReminder/reminder-info.html differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.messaging/app/views/dashboardSendError/message-info.html differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.messaging/app/views/listview/buddyList-row.html differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.messaging/app/views/listview/historyList-row.html differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.messaging/app/views/prefsSetupAccount/prefsSetupAccount-scene.html differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.messaging/images/transports/aim-logo.png differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.messaging/images/transports/aim_transport_splitter.png differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.messaging/images/transports/transport-aol-32x32.png differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.messaging/images/transports/transport-yahoo-32x32.png differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.messaging/images/transports/yahoo-logo.png differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.messaging/javascripts/app_scene.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.messaging/javascripts/perflogger.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.messaging/javascripts/throttler.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.messaging/resources/es_us/strings.json differs&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.messaging/resources/es_us/views/class0Alert&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.messaging/resources/es_us/views/prefsSetupAccount/prefsSetupAccount-scene.html differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.messaging/sources.json differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.messaging/stylesheets/messaging.css differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.musicplayer/app/controllers/albums-assistant.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.musicplayer/app/controllers/albumsongs-assistant.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.musicplayer/app/controllers/allalbums-assistant.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.musicplayer/app/controllers/app-assistant.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.musicplayer/app/controllers/artists-assistant.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.musicplayer/app/controllers/dashboard-assistant.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.musicplayer/app/controllers/genres-assistant.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.musicplayer/app/controllers/localnowplaying-assistant.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.musicplayer/app/controllers/mainmenu-assistant.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.musicplayer/app/controllers/playlists-assistant.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.musicplayer/app/controllers/songs-assistant.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.musicplayer/app/models/app-manager-service.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.musicplayer/app/models/mediadb-audio-service.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.musicplayer/app/models/mediaevents-service.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.musicplayer/app/models/powermanager-service.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.musicplayer/index_de_de.html differs&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.musicplayer/index_en_ca.html&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.musicplayer/index_en_gb.html&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.musicplayer/index_fr_ca.html&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.musicplayer/resources/es_us/strings.json differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.musicplayer/scripts/global.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.musicplayer/scripts/MediaKeyControlHandler.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.musicplayer/scripts/MusicController.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.musicplayer/scripts/MusicPlayer.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.musicplayer/scripts/NotificationBroadcaster.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.musicplayer/scripts/RenderQueue.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.musicplayer/scripts/ReorderablePlaylist.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.musicplayer/scripts/StaticPlaylist.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.musicplayer/scripts/Utilities.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.musicplayer/stylesheets/dashboard.css differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.musicplayer/stylesheets/deprecated/browser.css differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.musicplayer/stylesheets/deprecated/dashboard.css differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.musicplayer/stylesheets/deprecated/media.css differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.musicplayer/stylesheets/main-menu.css differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.musicplayer/stylesheets/media-music_compressed.css differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.musicplayer/stylesheets/media-music.css differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.musicplayer/stylesheets/music-player_compressed.css differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.musicplayer/stylesheets/music-player.css differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.musicplayer/tests/app/controllers/app-assistant.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.musicplayer/tests/app/controllers/testrunner-assistant.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.musicplayer/tests/mock/MediaListenerManager.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.musicplayer/tests/mock/mock-audio.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.musicplayer/tests/mock/mock-mediadb-audio-service.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.musicplayer/tests/old/._MusicPlayerIntegrationTest.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.musicplayer/tests/old/MusicPlayerIntegrationTest.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.musicplayer/tests/old/ReorderablePlaylistTest.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.musicplayer/tests/suites/MusicPlayerTest.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.musicplayer/tests/suites/ReorderablePlaylistTest.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.notes/app/controllers/app-assistant.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.notes/app/controllers/grid-assistant.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.notes/app/controllers/grid-list.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.notes/app/controllers/note-assistant.js differs&lt;br /&gt;
Only in 1.0.4: /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.notes/app/extensions/framework.js&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.notes/app/models/notes-model.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.notes/app/models/service/note.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.notes/app/models/service/notes-service.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.notes/app/views/grid/entry.html differs&lt;br /&gt;
Only in 1.0.4: /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.notes/app/views/note/delete-warning.html&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.notes/app/views/note/note-scene.html differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.notes/resources/es_us/strings.json differs&lt;br /&gt;
Only in 1.0.4: /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.notes/resources/es_us/views/note&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.notes/sources.json differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.notes/stylesheets/notes-app.css differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.notes/tests/unit/app/controllers/test-assistant.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.notes/tests/unit/tests/notes-db_tests.js differs&lt;br /&gt;
Only in 1.0.4: /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.ondevicedemo/app&lt;br /&gt;
Only in 1.0.4: /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.ondevicedemo/sources.json&lt;br /&gt;
Only in 1.0.4: /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.ondevicedemo/vendor&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.pdfviewer/app/controllers/app-assistant.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.pdfviewer/app/controllers/document-assistant.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.pdfviewer/app/controllers/error-assistant.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.pdfviewer/app/controllers/outline-assistant.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.pdfviewer/app/controllers/pagetext-assistant.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.pdfviewer/app/controllers/password-assistant.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.pdfviewer/app/controllers/recent-assistant.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.pdfviewer/app/views/password/password-scene.html differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.pdfviewer/framework_config.json differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.pdfviewer/javascripts/widget_find.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.pdfviewer/resources/es_us/strings.json differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.pdfviewer/resources/es_us/views/password/password-scene.html differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.pdfviewer/stylesheets/find-buttons.css differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.pdfviewer/stylesheets/find-dev.css differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.pdfviewer/stylesheets/pdf-viewer.css differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.phone/app/controllers/activecall-assistant.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.phone/app/controllers/announcer-assistant.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.phone/app/controllers/app-assistant.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.phone/app/controllers/calllog-assistant.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.phone/app/controllers/dashannounce-assistant.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.phone/app/controllers/dialfail-assistant.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.phone/app/controllers/dialpad-assistant.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.phone/app/controllers/droppedcall-assistant.js differs&lt;br /&gt;
Only in 1.0.4: /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.phone/app/controllers/effects.js&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.phone/app/controllers/emergencymode-assistant.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.phone/app/controllers/incomingcall-assistant.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.phone/app/controllers/menu-controller.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.phone/app/controllers/missedcall-assistant.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.phone/app/controllers/mmi-assistant.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.phone/app/controllers/msl-assistant.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.phone/app/controllers/pin-assistant.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.phone/app/controllers/poundDataAdvanced-assistant.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.phone/app/controllers/poundData-assistant.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.phone/app/controllers/poundDataBrowser-assistant.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.phone/app/controllers/poundDebug-assistant.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.phone/app/controllers/poundEvdo-assistant.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.phone/app/controllers/poundGPS-assistant.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.phone/app/controllers/poundMsl-assistant.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.phone/app/controllers/poundRtn-assistant.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.phone/app/controllers/poundTTY-assistant.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.phone/app/controllers/provisioning-assistant.js differs&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.phone/app/controllers/servicemessage-assistant.js&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.phone/app/controllers/smallcall-assistant.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.phone/app/controllers/stk-assistant.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.phone/app/models/CallerDetailsTable.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.phone/app/models/CallLogList.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.phone/app/models/Contact.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.phone/app/models/DateFormatter.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.phone/app/models/DialStringParser.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.phone/app/models/FormattedCall.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.phone/app/models/Messages.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.phone/app/models/MockTelephony.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.phone/app/models/PhoneNumberFormatter.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.phone/app/models/PlatformType.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.phone/app/models/PoundDataModel.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.phone/app/models/PowerdCommands.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.phone/app/models/QDLogger.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.phone/app/models/RegionLookup.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.phone/app/models/TelephonyCallState.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.phone/app/models/TelephonyCommands.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.phone/app/models/TelephonyEventListener.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.phone/app/views/activecall/call.html differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.phone/app/views/activecall/conference-cdma.html differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.phone/app/views/activecall/conference-gsm.html differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.phone/app/views/activecall/conferencelistcontainer.html differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.phone/app/views/calllog/listcontainer.html differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.phone/app/views/calllog/listitem.html differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.phone/app/views/dialfail/dialfail-scene.html differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.phone/app/views/pin/pin-scene.html differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.phone/app/views/poundTTY/poundTTY-scene.html differs&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.phone/app/views/servicemessage&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.phone/app/views/template/mmi-pending.html differs&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.phone/app/views/template/phone-omadm-dialog.html&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.phone/app/views/template/setpassword-dialog.html&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.phone/appinfo.json differs&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.phone/images/backdrop-phone-fade-top.png&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.phone/images/conf-extract.png differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.phone/images/conf-hangup.png differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.phone/resources/es_us/appinfo.json differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.phone/resources/es_us/strings.json differs&lt;br /&gt;
Only in 1.0.4: /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.phone/resources/es_us/stylesheets/notification.css&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.phone/resources/es_us/stylesheets/phone.css&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.phone/resources/es_us/views/activecall/call.html differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.phone/resources/es_us/views/activecall/conference-cdma.html differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.phone/resources/es_us/views/activecall/conference-gsm.html differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.phone/resources/es_us/views/dialfail/dialfail-scene.html differs&lt;br /&gt;
Only in 1.0.4: /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.phone/resources/es_us/views/incomingcall/details-fullscreen.html&lt;br /&gt;
Only in 1.0.4: /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.phone/resources/es_us/views/incomingcall/details-stamp.html&lt;br /&gt;
Only in 1.0.4: /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.phone/resources/es_us/views/incomingcall/details-unknown.html&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.phone/resources/es_us/views/pin/pin-scene.html differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.phone/resources/es_us/views/poundTTY/poundTTY-scene.html differs&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.phone/resources/es_us/views/servicemessage&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.phone/resources/es_us/views/template/mmi-pending.html differs&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.phone/resources/es_us/views/template/phone-omadm-dialog.html&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.phone/sources.json differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.phone/stylesheets/active-call.css differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.phone/stylesheets/call-log.css differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.phone/stylesheets/notification.css differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.phone/stylesheets/picker.css differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.phone/stylesheets/smallcall.css differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.phone/tests/caller_details_tests.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.phone/tests/testDialpadAssistant.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.phone/tests/testDialStringParser.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.phoneprefs/app/controllers/app-assistant.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.phoneprefs/app/controllers/callforwarding-assistant.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.phoneprefs/app/controllers/dialingshortcut-assistant.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.phoneprefs/app/controllers/fdn-assistant.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.phoneprefs/app/controllers/fdnedit-assistant.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.phoneprefs/app/controllers/pincode-assistant.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.phoneprefs/app/controllers/preflist-assistant.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.phoneprefs/app/controllers/wait-assistant.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.phoneprefs/app/models/Messages.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.phoneprefs/app/models/prefsetter.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.phoneprefs/app/models/settings.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.phoneprefs/app/models/SystemService.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.phoneprefs/app/models/TelephonyService.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.phoneprefs/app/views/fdn/fdn-scene.html differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.phoneprefs/app/views/fdn/listcontainer.html differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.phoneprefs/app/views/pincode/pincode-scene.html differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.phoneprefs/app/views/preflist/listcontainer.html differs&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.phoneprefs/app/views/preflist/pinblocked.html&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.phoneprefs/app/views/preflist/preflist-scene.html differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.phoneprefs/appinfo.json differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.phoneprefs/resources/es_us/appinfo.json differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.phoneprefs/resources/es_us/strings.json differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.phoneprefs/resources/es_us/views/fdn/fdn-scene.html differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.phoneprefs/resources/es_us/views/pincode/pincode-scene.html differs&lt;br /&gt;
Only in 1.0.4: /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.phoneprefs/resources/es_us/views/preflist/networkerrorimage.html&lt;br /&gt;
Only in 1.0.4: /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.phoneprefs/resources/es_us/views/preflist/networkrestrictimage.html&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.phoneprefs/resources/es_us/views/preflist/preflist-scene.html differs&lt;br /&gt;
Only in 1.0.4: /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.phoneprefs/resources/es_us/views/provisioning&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.phoneprefs/stylesheets/phoneprefs.css differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.phoneprefs/stylesheets/pincode.css differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.photos/app/controllers/accountlogin-assistant.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.photos/app/controllers/accounts-assistant.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.photos/app/controllers/albums-assistant.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.photos/app/controllers/app-assistant.js differs&lt;br /&gt;
Only in 1.0.4: /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.photos/app/controllers/app-assistant.plugins.js&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.photos/app/controllers/cropscale-assistant.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.photos/app/controllers/fullscreen-assistant.js differs&lt;br /&gt;
Only in 1.0.4: /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.photos/app/controllers/row-requester.js&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.photos/app/controllers/selectaccount-assistant.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.photos/app/controllers/thumbs-assistant.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.photos/app/models/local-flipview-model.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.photos/app/models/mediadb-image-service.js differs&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.photos/app/models/single-flipview-model.js&lt;br /&gt;
Only in 1.0.4: /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.photos/app/templates/photoflip-view.html&lt;br /&gt;
Only in 1.0.4: /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.photos/app/utils/appmenu.js&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.photos/app/utils/basescene.js&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.photos/app/utils/common.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.photos/app/utils/feedback.js differs&lt;br /&gt;
Only in 1.0.4: /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.photos/app/utils/plugins.js&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.photos/app/utils/rowrequester.js&lt;br /&gt;
Only in 1.0.4: /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.photos/app/utils/scroller.js&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.photos/app/utils/scrollscene.js&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.photos/app/views/accountlogin/accountlogin-scene.html differs&lt;br /&gt;
Only in 1.0.4: /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.photos/app/views/fullscreen/accounts-entry.html&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.photos/app/views/fullscreen/feedback.html differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.photos/app/views/fullscreen/fullscreen-scene.html differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.photos/appinfo.json differs&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.photos/images/list-separator-dark-thick.png&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.photos/index_de_de.html&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.photos/index_en_ca.html&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.photos/index_en_gb.html&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.photos/index_es_es.html&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.photos/index_es_us.html differs&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.photos/index_fr_ca.html&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.photos/index_fr_fr.html&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.photos/index.html differs&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.photos/index_it_it.html&lt;br /&gt;
Only in 1.0.4: /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.photos/mock_data&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.photos/resources/es_us/appinfo.json differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.photos/resources/es_us/strings.json differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.photos/resources/es_us/views/accountlogin/accountlogin-scene.html differs&lt;br /&gt;
Only in 1.0.4: /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.photos/resources/es_us/views/fullscreen/fullscreen-scene.html&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.photos/sources.json differs&lt;br /&gt;
Only in 1.0.4: /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.photos/sources.json.plugins&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.photos/stylesheets/framework-light.css differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.photos/stylesheets/photos.css differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.screenlock/app/controllers/app-assistant.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.screenlock/app/controllers/pin-assistant.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.screenlock/app/controllers/securityconfig-assistant.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.screenlock/app/models/SystemService.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.screenlock/app/views/pin/pin-scene.html differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.screenlock/app/views/securityconfig/securityconfig-scene.html differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.screenlock/app/views/template/password-box.html differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.screenlock/app/views/template/security-password-box.html differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.screenlock/images/backdrop-firstuse.png differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.screenlock/resources/es_us/strings.json differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.screenlock/resources/es_us/stylesheets/screenlock.css differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.screenlock/resources/es_us/views/pin/pin-scene.html differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.screenlock/resources/es_us/views/securityconfig/securityconfig-scene.html differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.screenlock/resources/es_us/views/template/password-box.html differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.screenlock/resources/es_us/views/template/security-password-box.html differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.screenlock/stylesheets/screenlock.css differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.soundsandalerts/app/controllers/app-assistant.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.soundsandalerts/app/controllers/soundsalertsconfig-assistant.js differs&lt;br /&gt;
Only in 1.0.4: /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.soundsandalerts/app/controllers/stage-assistant.js&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.soundsandalerts/app/models/audio-luna-service.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.soundsandalerts/app/models/SystemService.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.soundsandalerts/app/views/soundsalertsconfig/soundsalertsconfig-scene.html differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.soundsandalerts/stylesheets/soundsandalerts.css differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.streamingmusicplayer/app/controllers/app-assistant.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.streamingmusicplayer/app/controllers/nowplaying-assistant.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.streamingmusicplayer/app/models/audiopm-service.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.streamingmusicplayer/app/models/mediaevents-service.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.streamingmusicplayer/app/models/mediakeys-service.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.streamingmusicplayer/resources/es_us/appinfo.json differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.streamingmusicplayer/resources/es_us/strings.json differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.streamingmusicplayer/scripts/global.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.streamingmusicplayer/scripts/Utilities.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.streamingmusicplayer/stylesheets/media.css differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.streamingmusicplayer/tests/app/controllers/app-assistant.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.streamingmusicplayer/tests/app/controllers/main-assistant.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.tasks/app/controllers/app-assistant.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.tasks/app/controllers/dashboard-assistant.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.tasks/app/controllers/datepicker-assistant.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.tasks/app/controllers/datepopup-assistant.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.tasks/app/controllers/task-assistant.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.tasks/app/controllers/tasklists-assistant.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.tasks/app/controllers/tasks-assistant.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.tasks/app/extensions/framework.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.tasks/app/models/task.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.tasks/app/models/tasklist.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.tasks/app/views/tasklists/tasklist-entry.html differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.tasks/app/views/tasks/task-entry.html differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.tasks/app/views/tasks/tasks-scene.html differs&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.tasks/images/notification-small-sync.png&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.tasks/images/scrim.png&lt;br /&gt;
Only in 1.0.4: /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.tasks/images/task-details-arrow-right.png&lt;br /&gt;
Only in 1.0.4: /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.tasks/images/task-details-arrow-right-press.png&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.tasks/resources/es_us/strings.json differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.tasks/stylesheets/preload.css differs&lt;br /&gt;
Only in 1.0.4: /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.tasks/stylesheets/tasks.css&lt;br /&gt;
Only in 1.0.4: /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.tasks/stylesheets/tasks-details.css&lt;br /&gt;
Only in 1.0.4: /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.tasks/stylesheets/tasks-groups.css&lt;br /&gt;
Only in 1.0.4: /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.tasks/stylesheets/tasks-list.css&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.tasks/stylesheets/tasks-mole.css differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.tasks/tests/testDateFormatter.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.tasks/weave/models/model.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.tasks/weave/models/modelobserver.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.tasks/weave/services/applicationmanager.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.tasks/weave/services/serviceobserver.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.tasks/weave/services/services.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.tasks/weave/system/activator.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.tasks/weave/utilities/appmenu.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.tasks/weave/utilities/fanout.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.tasks/weave/utilities/regexp.js differs&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.tasks/weave/utilities/scrim.js&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.tasks/weave.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.updates/app/controllers/detail-assistant.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.updates/app/controllers/list-assistant.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.updates/app/models/updatedaemon-service.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.updates/app/views/detail/detail-scene.html differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.updates/app/views/success/success-scene.html differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.updates/resources/es_us/strings.json differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.updates/resources/es_us/views/detail/detail-scene.html differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.updates/resources/es_us/views/success/success-scene.html differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.updates/stylesheets/updates.css differs&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.usbpassthrough&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.videoplayer/app/controllers/app-assistant.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.videoplayer/app/controllers/browser-assistant.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.videoplayer/app/controllers/nowplaying-assistant.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.videoplayer/app/models/mediadb-video-service.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.videoplayer/app/models/medialist-datasource.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.videoplayer/app/models/powermanager-service.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.videoplayer/app/util/util.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.videoplayer/app/views/nowplaying/nowplaying-scene.html differs&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.videoplayer/launcher/resources/de_de&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.videoplayer/launcher/resources/en_ca&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.videoplayer/launcher/resources/en_gb&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.videoplayer/launcher/resources/en_pl/appinfo.json differs&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.videoplayer/launcher/resources/en_pl/strings.json&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.videoplayer/launcher/resources/en_pl/views&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.videoplayer/launcher/resources/es_es&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.videoplayer/launcher/resources/es_us/appinfo.json differs&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.videoplayer/launcher/resources/es_us/strings.json&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.videoplayer/launcher/resources/es_us/views&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.videoplayer/launcher/resources/fr_ca&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.videoplayer/launcher/resources/fr_fr&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.videoplayer/launcher/resources/it_it&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.videoplayer/resources/es_us/strings.json differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.videoplayer/sources.json differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.videoplayer/stylesheets/media-video.css differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.videoplayer.launcher/app/controllers/app-assistant.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.videoplayer.launcher/app/controllers/browser-assistant.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.videoplayer.launcher/app/controllers/nowplaying-assistant.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.videoplayer.launcher/app/models/mediadb-video-service.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.videoplayer.launcher/app/models/medialist-datasource.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.videoplayer.launcher/app/models/powermanager-service.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.videoplayer.launcher/app/util/util.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.videoplayer.launcher/app/views/nowplaying/nowplaying-scene.html differs&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.videoplayer.launcher/launcher/resources/de_de&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.videoplayer.launcher/launcher/resources/en_ca&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.videoplayer.launcher/launcher/resources/en_gb&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.videoplayer.launcher/launcher/resources/en_pl/appinfo.json differs&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.videoplayer.launcher/launcher/resources/en_pl/strings.json&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.videoplayer.launcher/launcher/resources/en_pl/views&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.videoplayer.launcher/launcher/resources/es_es&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.videoplayer.launcher/launcher/resources/es_us/appinfo.json differs&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.videoplayer.launcher/launcher/resources/es_us/strings.json&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.videoplayer.launcher/launcher/resources/es_us/views&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.videoplayer.launcher/launcher/resources/fr_ca&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.videoplayer.launcher/launcher/resources/fr_fr&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.videoplayer.launcher/launcher/resources/it_it&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.videoplayer.launcher/resources/de_de/appinfo.json differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.videoplayer.launcher/resources/de_de/strings.json differs&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.videoplayer.launcher/resources/en_ca&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.videoplayer.launcher/resources/en_gb&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.videoplayer.launcher/resources/en_pl/appinfo.json differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.videoplayer.launcher/resources/en_pl/strings.json differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.videoplayer.launcher/resources/es_es/appinfo.json differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.videoplayer.launcher/resources/es_es/strings.json differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.videoplayer.launcher/resources/es_us/appinfo.json differs&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.videoplayer.launcher/resources/fr_ca&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.videoplayer.launcher/resources/fr_fr/appinfo.json differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.videoplayer.launcher/resources/fr_fr/strings.json differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.videoplayer.launcher/resources/it_it/appinfo.json differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.videoplayer.launcher/resources/it_it/strings.json differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.videoplayer.launcher/sources.json differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.videoplayer.launcher/stylesheets/media-video.css differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.wifi/app/controllers/joincert-assistant.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.wifi/app/controllers/joinother-assistant.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.wifi/app/controllers/joinpassword-assistant.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.wifi/app/controllers/joinuserpassword-assistant.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.wifi/app/controllers/networklist-assistant.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.wifi/app/views/joincert/joincert-scene.html differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.wifi/app/views/joinother/joinother-scene.html differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.wifi/app/views/joinpassword/joinpassword-scene.html differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.wifi/app/views/joinuserpassword/joinuserpassword-scene.html differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.wifi/app/views/networklist/networklist-container.html differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.wifi/app/views/networklist/networklist-item.html differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.wifi/app/views/networklist/networklist-scene.html differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.wifi/resources/es_us/strings.json differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.wifi/resources/es_us/views/joincert/joincert-scene.html differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.wifi/resources/es_us/views/joinother/joinother-scene.html differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.wifi/resources/es_us/views/joinpassword/joinpassword-scene.html differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.wifi/resources/es_us/views/joinuserpassword/joinuserpassword-scene.html differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.wifi/resources/es_us/views/networklist/networklist-container.html differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.wifi/resources/es_us/views/networklist/networklist-item.html differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.wifi/resources/es_us/views/networklist/networklist-scene.html differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.wifi/stylesheets/wifi.css differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.youtube/app/controllers/app-assistant.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.youtube/app/controllers/common.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.youtube/app/controllers/home-assistant.js differs&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.youtube/app/controllers/no-wifi-assistant.js&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.youtube/app/controllers/search-assistant.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.youtube/app/controllers/video-assistant.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.youtube/app/models/history-table.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.youtube/app/models/yt-api.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.youtube/app/models/yt_net.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.youtube/app/views/home/home-scene.html differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.youtube/app/views/home/list-entry.html differs&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.youtube/app/views/no-wifi&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.youtube/app/views/search/search-scene.html differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.youtube/app/views/video/video-info.html differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.youtube/images/bottom-page-fade.png differs&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.youtube/images/btn-submit-search.png&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.youtube/images/btn-submit-search-press.png&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.youtube/images/filter-field-pill-black.png&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.youtube/images/filter-search-dark-focused-bg.png&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.youtube/images/framework&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.youtube/images/search-return-arrow-dark.png&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.youtube/js/crypto/base64.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.youtube/js/crypto/crypto.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.youtube/resources/es_us/strings.json differs&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.youtube/resources/es_us/views&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.youtube/sources.json differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.youtube/stylesheets/youtube.css differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.youtube/stylesheets/youtube-home.css differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/command-resource-handlers.json differs&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/usr/palm/emoticons&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/ext-timezones.json differs&lt;br /&gt;
Only in 1.0.4: /resources/webOS/nova-cust-image-castle/usr/palm/frameworks/media/AudioControls.js&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/frameworks/media/Audio.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/frameworks/media/Camera.js differs&lt;br /&gt;
Only in 1.0.4: /resources/webOS/nova-cust-image-castle/usr/palm/frameworks/media/css/camera.css&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/frameworks/media/css/media.css differs&lt;br /&gt;
Only in 1.0.4: /resources/webOS/nova-cust-image-castle/usr/palm/frameworks/media/Exif.js&lt;br /&gt;
Only in 1.0.4: /resources/webOS/nova-cust-image-castle/usr/palm/frameworks/media/HTMLMediaElement.js&lt;br /&gt;
Only in 1.0.4: /resources/webOS/nova-cust-image-castle/usr/palm/frameworks/media/LunaMediaAdapter.js&lt;br /&gt;
Only in 1.0.4: /resources/webOS/nova-cust-image-castle/usr/palm/frameworks/media/MediaAudioClassEventHandler.js&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/frameworks/media/media.js differs&lt;br /&gt;
Only in 1.0.4: /resources/webOS/nova-cust-image-castle/usr/palm/frameworks/media/MediaListenerManager.js&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/frameworks/media/palmInitMedia.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/frameworks/media/private/MediaController.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/frameworks/media/private/StreamingPlayEngine.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/frameworks/media/private/StreamingStates.js differs&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/usr/palm/frameworks/media/resources/fr_ca&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/frameworks/media/Video.js differs&lt;br /&gt;
Only in 1.0.4: /resources/webOS/nova-cust-image-castle/usr/palm/frameworks/mojo/builtins/palmInitFramework175_7.js&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/usr/palm/frameworks/mojo/builtins/palmInitFramework191_15.js&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/frameworks/mojo/builtins/palmInitMedia.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/frameworks/mojo/mojo.js differs&lt;br /&gt;
Only in 1.0.4: /resources/webOS/nova-cust-image-castle/usr/palm/frameworks/mojo/submissions/175.7&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/usr/palm/frameworks/mojo/submissions/191.15&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/usr/palm/region.json&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/sounds/alert.wav differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/sounds/notification.wav differs&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/usr/palm/sysmgr/localization/de_de&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/usr/palm/sysmgr/localization/en_ca&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/usr/palm/sysmgr/localization/en_gb&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/sysmgr/localization/en_pl/strings.json differs&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/usr/palm/sysmgr/localization/es_es&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/sysmgr/localization/es_us/strings.json differs&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/usr/palm/sysmgr/localization/fr_ca&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/usr/palm/sysmgr/localization/fr_fr&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/usr/palm/sysmgr/localization/it_it&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/sysmgr/low-memory/low-memory-dashboard.html differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/sysmgr/low-memory/low-memory.html differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/sbin/audiod differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/sbin/integcheck differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/sbin/storaged differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/sbin/udevmonitor differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/sbin/wlanconfig differs&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/usr/share/fonts/Prelude-BoldOblique.ttf&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/usr/share/fonts/Prelude-Bold.ttf&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/usr/share/fonts/PreludeCondensed-Bold.ttf&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/usr/share/fonts/PreludeCondensed-Medium.ttf&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/usr/share/fonts/Prelude-MediumOblique.ttf&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/usr/share/fonts/Prelude-Medium.ttf&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/share/omadm/DmTree.xml differs&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/usr/share/pmupdater/strings.de_DE&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/usr/share/pmupdater/strings.en_GB&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/share/pmupdater/strings.en_US differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/share/pmupdater/strings.es_ES differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/share/pmupdater/strings.es_US differs&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/usr/share/pmupdater/strings.fr_FR&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/usr/share/pmupdater/strings.it_IT&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/share/storaged/SysInfoExtended differs&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/usr/share/zoneinfo/Africa/Asmara&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/share/zoneinfo/Africa/Cairo differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/share/zoneinfo/Africa/Casablanca differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/share/zoneinfo/Africa/Tunis differs&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/usr/share/zoneinfo/America/Argentina/Buenos_Aires&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/usr/share/zoneinfo/America/Argentina/Catamarca&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/share/zoneinfo/America/Argentina/ComodRivadavia differs&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/usr/share/zoneinfo/America/Argentina/Cordoba&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/usr/share/zoneinfo/America/Argentina/Jujuy&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/share/zoneinfo/America/Argentina/La_Rioja differs&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/usr/share/zoneinfo/America/Argentina/Mendoza&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/share/zoneinfo/America/Argentina/Rio_Gallegos differs&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/usr/share/zoneinfo/America/Argentina/Salta&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/share/zoneinfo/America/Argentina/San_Juan differs&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/usr/share/zoneinfo/America/Argentina/San_Luis&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/share/zoneinfo/America/Argentina/Tucuman differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/share/zoneinfo/America/Argentina/Ushuaia differs&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/usr/share/zoneinfo/America/Atikokan&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/usr/share/zoneinfo/America/Blanc-Sablon&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/share/zoneinfo/America/Buenos_Aires differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/share/zoneinfo/America/Cambridge_Bay differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/share/zoneinfo/America/Campo_Grande differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/share/zoneinfo/America/Caracas differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/share/zoneinfo/America/Catamarca differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/share/zoneinfo/America/Cordoba differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/share/zoneinfo/America/Cuiaba differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/share/zoneinfo/America/Eirunepe differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/share/zoneinfo/America/Grand_Turk differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/share/zoneinfo/America/Havana differs&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/usr/share/zoneinfo/America/Indiana/Indianapolis&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/share/zoneinfo/America/Indiana/Petersburg differs&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/usr/share/zoneinfo/America/Indiana/Tell_City&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/share/zoneinfo/America/Indiana/Vincennes differs&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/usr/share/zoneinfo/America/Indiana/Winamac&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/share/zoneinfo/America/Inuvik differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/share/zoneinfo/America/Iqaluit differs&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/usr/share/zoneinfo/America/Jamaica&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/share/zoneinfo/America/Jujuy differs&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/usr/share/zoneinfo/America/Kentucky/Louisville&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/share/zoneinfo/America/Managua differs&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/usr/share/zoneinfo/America/Marigot&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/share/zoneinfo/America/Mendoza differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/share/zoneinfo/America/Montevideo differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/share/zoneinfo/America/Nassau differs&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/usr/share/zoneinfo/America/North_Dakota/New_Salem&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/share/zoneinfo/America/Pangnirtung differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/share/zoneinfo/America/Port-au-Prince differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/share/zoneinfo/America/Porto_Acre differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/share/zoneinfo/America/Rankin_Inlet differs&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/usr/share/zoneinfo/America/Resolute&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/share/zoneinfo/America/Rio_Branco differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/share/zoneinfo/America/Rosario differs&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/usr/share/zoneinfo/America/Santarem&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/share/zoneinfo/America/Santiago differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/share/zoneinfo/America/Sao_Paulo differs&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/usr/share/zoneinfo/America/St_Barthelemy&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/share/zoneinfo/America/Tegucigalpa differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/share/zoneinfo/America/Yellowknife differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/share/zoneinfo/Antarctica/McMurdo differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/share/zoneinfo/Antarctica/Palmer differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/share/zoneinfo/Antarctica/South_Pole differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/share/zoneinfo/Asia/Amman differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/share/zoneinfo/Asia/Baghdad differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/share/zoneinfo/Asia/Choibalsan differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/share/zoneinfo/Asia/Damascus differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/share/zoneinfo/Asia/Dili differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/share/zoneinfo/Asia/Gaza differs&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/usr/share/zoneinfo/Asia/Ho_Chi_Minh&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/share/zoneinfo/Asia/Hovd differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/share/zoneinfo/Asia/Istanbul differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/share/zoneinfo/Asia/Jakarta differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/share/zoneinfo/Asia/Jayapura differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/share/zoneinfo/Asia/Karachi differs&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/usr/share/zoneinfo/Asia/Kathmandu&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/usr/share/zoneinfo/Asia/Kolkata&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/share/zoneinfo/Asia/Makassar differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/share/zoneinfo/Asia/Pontianak differs&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/usr/share/zoneinfo/Asia/Riyadh87&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/usr/share/zoneinfo/Asia/Riyadh88&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/usr/share/zoneinfo/Asia/Riyadh89&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/share/zoneinfo/Asia/Tehran differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/share/zoneinfo/Asia/Ujung_Pandang differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/share/zoneinfo/Asia/Ulaanbaatar differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/share/zoneinfo/Asia/Ulan_Bator differs&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/usr/share/zoneinfo/Atlantic/Faroe&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/share/zoneinfo/Australia/ACT differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/share/zoneinfo/Australia/Adelaide differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/share/zoneinfo/Australia/Broken_Hill differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/share/zoneinfo/Australia/Canberra differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/share/zoneinfo/Australia/Currie differs&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/usr/share/zoneinfo/Australia/Eucla&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/share/zoneinfo/Australia/Hobart differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/share/zoneinfo/Australia/LHI differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/share/zoneinfo/Australia/Lord_Howe differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/share/zoneinfo/Australia/Melbourne differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/share/zoneinfo/Australia/NSW differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/share/zoneinfo/Australia/Perth differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/share/zoneinfo/Australia/South differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/share/zoneinfo/Australia/Sydney differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/share/zoneinfo/Australia/Tasmania differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/share/zoneinfo/Australia/Victoria differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/share/zoneinfo/Australia/West differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/share/zoneinfo/Australia/Yancowinna differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/share/zoneinfo/Brazil/Acre differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/share/zoneinfo/Brazil/East differs&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/usr/share/zoneinfo/Brazil/West&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/usr/share/zoneinfo/Canada/Central&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/usr/share/zoneinfo/Canada/Eastern&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/usr/share/zoneinfo/Canada/Mountain&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/usr/share/zoneinfo/Canada/Pacific&lt;br /&gt;
Only in 1.0.4: /resources/webOS/nova-cust-image-castle/usr/share/zoneinfo/CET&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/share/zoneinfo/Chile/Continental differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/share/zoneinfo/Chile/EasterIsland differs&lt;br /&gt;
Only in 1.0.4: /resources/webOS/nova-cust-image-castle/usr/share/zoneinfo/CST6CDT&lt;br /&gt;
Only in 1.0.4: /resources/webOS/nova-cust-image-castle/usr/share/zoneinfo/Cuba&lt;br /&gt;
Only in 1.0.4: /resources/webOS/nova-cust-image-castle/usr/share/zoneinfo/EET&lt;br /&gt;
Only in 1.0.4: /resources/webOS/nova-cust-image-castle/usr/share/zoneinfo/Egypt&lt;br /&gt;
Only in 1.0.4: /resources/webOS/nova-cust-image-castle/usr/share/zoneinfo/Eire&lt;br /&gt;
Only in 1.0.4: /resources/webOS/nova-cust-image-castle/usr/share/zoneinfo/EST&lt;br /&gt;
Only in 1.0.4: /resources/webOS/nova-cust-image-castle/usr/share/zoneinfo/EST5EDT&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/usr/share/zoneinfo/Etc/GMT&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/usr/share/zoneinfo/Etc/GMT0&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/usr/share/zoneinfo/Etc/GMT-0&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/usr/share/zoneinfo/Etc/GMT+0&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/usr/share/zoneinfo/Etc/GMT-1&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/usr/share/zoneinfo/Etc/GMT+1&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/usr/share/zoneinfo/Etc/GMT-10&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/usr/share/zoneinfo/Etc/GMT+10&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/usr/share/zoneinfo/Etc/GMT-11&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/usr/share/zoneinfo/Etc/GMT+11&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/usr/share/zoneinfo/Etc/GMT-12&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/usr/share/zoneinfo/Etc/GMT+12&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/usr/share/zoneinfo/Etc/GMT-13&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/usr/share/zoneinfo/Etc/GMT-14&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/usr/share/zoneinfo/Etc/GMT-2&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/usr/share/zoneinfo/Etc/GMT+2&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/usr/share/zoneinfo/Etc/GMT-3&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/usr/share/zoneinfo/Etc/GMT+3&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/usr/share/zoneinfo/Etc/GMT-4&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/usr/share/zoneinfo/Etc/GMT+4&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/usr/share/zoneinfo/Etc/GMT-5&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/usr/share/zoneinfo/Etc/GMT+5&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/usr/share/zoneinfo/Etc/GMT-6&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/usr/share/zoneinfo/Etc/GMT+6&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/usr/share/zoneinfo/Etc/GMT-7&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/usr/share/zoneinfo/Etc/GMT+7&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/usr/share/zoneinfo/Etc/GMT-8&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/usr/share/zoneinfo/Etc/GMT+8&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/usr/share/zoneinfo/Etc/GMT-9&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/usr/share/zoneinfo/Etc/GMT+9&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/share/zoneinfo/Europe/Belgrade differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/share/zoneinfo/Europe/Berlin differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/share/zoneinfo/Europe/Budapest differs&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/usr/share/zoneinfo/Europe/Guernsey&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/usr/share/zoneinfo/Europe/Isle_of_Man&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/usr/share/zoneinfo/Europe/Istanbul&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/usr/share/zoneinfo/Europe/Jersey&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/share/zoneinfo/Europe/Ljubljana differs&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/usr/share/zoneinfo/Europe/Nicosia&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/usr/share/zoneinfo/Europe/Podgorica&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/share/zoneinfo/Europe/Sarajevo differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/share/zoneinfo/Europe/Skopje differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/share/zoneinfo/Europe/Sofia differs&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/usr/share/zoneinfo/Europe/Volgograd&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/share/zoneinfo/Europe/Zagreb differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/share/zoneinfo/Europe/Zurich differs&lt;br /&gt;
Only in 1.0.4: /resources/webOS/nova-cust-image-castle/usr/share/zoneinfo/Factory&lt;br /&gt;
Only in 1.0.4: /resources/webOS/nova-cust-image-castle/usr/share/zoneinfo/GB&lt;br /&gt;
Only in 1.0.4: /resources/webOS/nova-cust-image-castle/usr/share/zoneinfo/GB-Eire&lt;br /&gt;
Only in 1.0.4: /resources/webOS/nova-cust-image-castle/usr/share/zoneinfo/GMT&lt;br /&gt;
Only in 1.0.4: /resources/webOS/nova-cust-image-castle/usr/share/zoneinfo/HST&lt;br /&gt;
Only in 1.0.4: /resources/webOS/nova-cust-image-castle/usr/share/zoneinfo/Iceland&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/share/zoneinfo/Indian/Mauritius differs&lt;br /&gt;
Only in 1.0.4: /resources/webOS/nova-cust-image-castle/usr/share/zoneinfo/Iran&lt;br /&gt;
Only in 1.0.4: /resources/webOS/nova-cust-image-castle/usr/share/zoneinfo/Israel&lt;br /&gt;
Only in 1.0.4: /resources/webOS/nova-cust-image-castle/usr/share/zoneinfo/Jamaica&lt;br /&gt;
Only in 1.0.4: /resources/webOS/nova-cust-image-castle/usr/share/zoneinfo/Japan&lt;br /&gt;
Only in 1.0.4: /resources/webOS/nova-cust-image-castle/usr/share/zoneinfo/Libya&lt;br /&gt;
Only in 1.0.4: /resources/webOS/nova-cust-image-castle/usr/share/zoneinfo/MET&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/usr/share/zoneinfo/Mideast&lt;br /&gt;
Only in 1.0.4: /resources/webOS/nova-cust-image-castle/usr/share/zoneinfo/MST&lt;br /&gt;
Only in 1.0.4: /resources/webOS/nova-cust-image-castle/usr/share/zoneinfo/MST7MDT&lt;br /&gt;
Only in 1.0.4: /resources/webOS/nova-cust-image-castle/usr/share/zoneinfo/Navajo&lt;br /&gt;
Only in 1.0.4: /resources/webOS/nova-cust-image-castle/usr/share/zoneinfo/NZ&lt;br /&gt;
Only in 1.0.4: /resources/webOS/nova-cust-image-castle/usr/share/zoneinfo/NZ-CHAT&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/share/zoneinfo/Pacific/Auckland differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/share/zoneinfo/Pacific/Chatham differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/share/zoneinfo/Pacific/Easter differs&lt;br /&gt;
Only in 1.0.4: /resources/webOS/nova-cust-image-castle/usr/share/zoneinfo/Poland&lt;br /&gt;
Only in 1.0.4: /resources/webOS/nova-cust-image-castle/usr/share/zoneinfo/Portugal&lt;br /&gt;
Only in 1.0.4: /resources/webOS/nova-cust-image-castle/usr/share/zoneinfo/PRC&lt;br /&gt;
Only in 1.0.4: /resources/webOS/nova-cust-image-castle/usr/share/zoneinfo/PST8PDT&lt;br /&gt;
Only in 1.0.4: /resources/webOS/nova-cust-image-castle/usr/share/zoneinfo/ROC&lt;br /&gt;
Only in 1.0.4: /resources/webOS/nova-cust-image-castle/usr/share/zoneinfo/ROK&lt;br /&gt;
Only in 1.0.4: /resources/webOS/nova-cust-image-castle/usr/share/zoneinfo/Turkey&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/usr/share/zoneinfo/US/Indiana-Starke&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/usr/share/zoneinfo/US/Mountain&lt;br /&gt;
Only in 1.1.0: /resources/webOS/nova-cust-image-castle/usr/share/zoneinfo/US/Samoa&lt;br /&gt;
Only in 1.0.4: /resources/webOS/nova-cust-image-castle/usr/share/zoneinfo/WET&lt;br /&gt;
Only in 1.0.4: /resources/webOS/nova-cust-image-castle/usr/share/zoneinfo/W-SU&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle.rootfs.tar.gz differs&lt;br /&gt;
File /resources/webOS/nova-installer-image-castle.uImage differs&lt;br /&gt;
File /resources/webOS.tar differs&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;/div&gt;</summary>
		<author><name>UltraBlack</name></author>
	</entry>
	<entry>
		<id>http://wiki.webos-internals.org/index.php?title=WebOS_Doctor_Versions&amp;diff=3967</id>
		<title>WebOS Doctor Versions</title>
		<link rel="alternate" type="text/html" href="http://wiki.webos-internals.org/index.php?title=WebOS_Doctor_Versions&amp;diff=3967"/>
		<updated>2009-08-07T08:43:01Z</updated>

		<summary type="html">&lt;p&gt;UltraBlack: Removed Tux icon due to &amp;quot;Fatal error: Call to a member function exists() on a non-object in /var/lib/mediawiki/extensions/Icon/Icon.php on line 62&amp;quot;.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;It seems the webOS Doctor at http://palm.cdnetworks.net/rom/pre_p100eww/webosdoctorp100ewwsprint.jar keeps changing.&lt;br /&gt;
&lt;br /&gt;
Note that the webOS Doctor package comes with the following license:&lt;br /&gt;
&lt;br /&gt;
RESTRICTIONS: The Software is licensed for use only with the single Palm device you originally purchased, and you may not distribute or make the Software available over a network or for use with multiple devices. The Software and supporting documentation may be copied only as necessary for backup or archive purposes in support of your use of the Software.&lt;br /&gt;
&lt;br /&gt;
So we can't host different versions of it anywhere - the best we can do is record the md5sums of the versions we know about so that individuals can match this to the files they have for use with their Palm device.&lt;br /&gt;
&lt;br /&gt;
Here is a list of the versions that we know about (with md5sums for each, and the date they were first spotted and recorded here):&lt;br /&gt;
&lt;br /&gt;
 4b3e396f8b1f1c5d3388e3c298af0484  webosdoctorp100ewwsprint-1.0.2.jar (10 June 2009)&lt;br /&gt;
 0c8027b5a707eb0d02b1997d48021bd5  webosdoctorp100ewwsprint-1.0.3.jar (24 June 2009)  (changes in [[WebOS_Doctor_version_1.0.3]])&lt;br /&gt;
 32852c4b57d938e85f0fc819e57eacb7  webosdoctorp100ewwsprint-1.0.4.jar (9 July 2009) (changes in [[WebOS_Doctor_version_1.0.4]])&lt;br /&gt;
 fc602490fdd7b3be8c5f727349c6195f  webosdoctorp100ewwsprint-1.1.0.jar (24 July 2009) (changes in [[WebOS_Doctor_version_1.1.0]])&lt;/div&gt;</summary>
		<author><name>UltraBlack</name></author>
	</entry>
	<entry>
		<id>http://wiki.webos-internals.org/index.php?title=WebOS_Doctor_version_1.0.4&amp;diff=3966</id>
		<title>WebOS Doctor version 1.0.4</title>
		<link rel="alternate" type="text/html" href="http://wiki.webos-internals.org/index.php?title=WebOS_Doctor_version_1.0.4&amp;diff=3966"/>
		<updated>2009-08-07T08:42:16Z</updated>

		<summary type="html">&lt;p&gt;UltraBlack: Removed Tux icon, as I was going to update it to the new one but could not get the PHP to comply.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= Changes:=&lt;br /&gt;
&lt;br /&gt;
Here are the changes (excluding changes in /usr/lib/ipkg) between 1.0.3 and 1.0.4, based on the contents of the webOS Doctor jar file:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
File /com/palm/nova/installer/core/FlasherThread.class differs&lt;br /&gt;
File /com/palm/nova/installer/core/InstallerModel.class differs&lt;br /&gt;
File /com/palm/nova/installer/core/ModemUtilities.class differs&lt;br /&gt;
File /com/palm/nova/installer/core/ModemUtilities$ModemMode.class differs&lt;br /&gt;
File /com/palm/nova/installer/core/MountUtils$1.class differs&lt;br /&gt;
File /com/palm/nova/installer/core/MountUtils.class differs&lt;br /&gt;
File /com/palm/nova/installer/core/MountUtils$FsType.class differs&lt;br /&gt;
File /com/palm/nova/installer/core/MountUtils$MountParts.class differs&lt;br /&gt;
File /com/palm/nova/installer/core/stages/SoftwareUpdateSiteStage.class differs&lt;br /&gt;
File /com/palm/nova/installer/core/SuperToolUtilities.class differs&lt;br /&gt;
File /com/palm/nova/installer/core/TrenchcoatModel.class differs&lt;br /&gt;
Only in 1.0.4: com/palm/nova/installer/recoverytool/Base64.class&lt;br /&gt;
Only in 1.0.4: com/palm/nova/installer/recoverytool/Base64$InputStream.class&lt;br /&gt;
Only in 1.0.4: com/palm/nova/installer/recoverytool/Base64$OutputStream.class&lt;br /&gt;
File /com/palm/nova/installer/recoverytool/CardController$1.class differs&lt;br /&gt;
File /com/palm/nova/installer/recoverytool/CardController$2.class differs&lt;br /&gt;
File /com/palm/nova/installer/recoverytool/CardController$3.class differs&lt;br /&gt;
File /com/palm/nova/installer/recoverytool/CardController$4.class differs&lt;br /&gt;
File /com/palm/nova/installer/recoverytool/CardController.class differs&lt;br /&gt;
File /com/palm/nova/installer/recoverytool/cards/BatteryChargingCard.class differs&lt;br /&gt;
File /com/palm/nova/installer/recoverytool/cards/BootiefyCard.class differs&lt;br /&gt;
File /com/palm/nova/installer/recoverytool/cards/CardBase.class differs&lt;br /&gt;
File /com/palm/nova/installer/recoverytool/cards/CheckSystemCard.class differs&lt;br /&gt;
Only in 1.0.4: com/palm/nova/installer/recoverytool/cards/ConfirmLanguageCard.class&lt;br /&gt;
File /com/palm/nova/installer/recoverytool/cards/ConnectDeviceCard.class differs&lt;br /&gt;
File /com/palm/nova/installer/recoverytool/cards/EulaCard.class differs&lt;br /&gt;
File /com/palm/nova/installer/recoverytool/cards/FlashingProgressCard.class differs&lt;br /&gt;
File /com/palm/nova/installer/recoverytool/cards/LanguagePickerCard.class differs&lt;br /&gt;
File /com/palm/nova/installer/recoverytool/ConfigFileMgr.class differs&lt;br /&gt;
File /com/palm/nova/installer/recoverytool/runner/SystemCheckRunner.class differs&lt;br /&gt;
File /com/palm/nova/installer/recoverytool/runner/SystemCheckRunner$SystemCheckThread.class differs&lt;br /&gt;
File /META-INF/JARKEY.RSA differs&lt;br /&gt;
File /META-INF/JARKEY.SF differs&lt;br /&gt;
File /META-INF/MANIFEST.MF differs&lt;br /&gt;
File /resources/desktopinstallers.config differs&lt;br /&gt;
Only in 1.0.4: resources/EULA_de_DE.html&lt;br /&gt;
Only in 1.0.4: resources/EULA_fr_CA.html&lt;br /&gt;
Only in 1.0.4: resources/EULA_fr_FR.html&lt;br /&gt;
Only in 1.0.4: resources/EULA_it_IT.html&lt;br /&gt;
Only in 1.0.4: resources/green_down.png&lt;br /&gt;
Only in 1.0.4: resources/green_up.png&lt;br /&gt;
Only in 1.0.4: resources/languagePicker.properties&lt;br /&gt;
Only in 1.0.4: resources/messages_de_DE.properties&lt;br /&gt;
Only in 1.0.4: resources/messages_es_ES.properties&lt;br /&gt;
File /resources/messages_es_US.properties differs&lt;br /&gt;
Only in 1.0.4: resources/messages_fr_CA.properties&lt;br /&gt;
Only in 1.0.4: resources/messages_fr_FR.properties&lt;br /&gt;
Only in 1.0.4: resources/messages_it_IT.properties&lt;br /&gt;
File /resources/messages.properties differs&lt;br /&gt;
File /resources/NovacomInstaller.pkg.tar.gz differs&lt;br /&gt;
File /resources/NovacomInstaller_x64.msi differs&lt;br /&gt;
File /resources/NovacomInstaller_x86.msi differs&lt;br /&gt;
File /resources/recoverytool.config differs&lt;br /&gt;
Only in 1.0.4: resources/red_down.png&lt;br /&gt;
Only in 1.0.4: resources/red_up.png&lt;br /&gt;
File /resources/sprint.tar differs&lt;br /&gt;
File /resources/synthSkin.xml differs&lt;br /&gt;
File /resources/webOS/castlecdma_evt1_fw.tar differs&lt;br /&gt;
File /resources/webOS/installer.xml differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/etc/issue differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/etc/issue.net differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/etc/palm-build-info differs&lt;br /&gt;
Only in 1.0.4: resources/webOS/nova-cust-image-castle/etc/ssl/certs/PalmCACert.pem&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/etc/ssl/certs/system-bundle.crt.gz differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/etc/ssl/crl/system-crl-bundle.crl.gz differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/etc/timestamp differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/etc/version differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/md5sums differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/bin/LunaSysMgr differs&lt;br /&gt;
Only in 1.0.3: resources/webOS/nova-cust-image-castle/usr/bin/PmModemFactory&lt;br /&gt;
Only in 1.0.3: resources/webOS/nova-cust-image-castle/usr/bin/TilIpcTest&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/BrowserPlugins/BrowserAdapter.so differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/agg.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/alsa-conf-base.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/alsa-lib.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/alsa-plugins.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/alsa-utils-amixer.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/alsa-utils-aplay.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/alsa-utils.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/audiod-config.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/audiod.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/base-files.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/base-files.md5sums differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/base-passwd.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/bcprov.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/bcprov.md5sums differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/binutils.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/bootchart.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/bootloader.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/browser-adapter.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/browser-adapter.md5sums differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/browserserver.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/busybox.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/bzip2.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/cairo.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/camd-omap34xx.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/camsrc-omap34xx.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/castlecdmafw.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/castlecdmafw.md5sums differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/castletpfw.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/castleumtsfw.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/cifs.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/cjson.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/codesourcery-arm.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/com.motionapps.rom.classic.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/com.motionapps.rom.classic.md5sums differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/com.motionapps.service.classic.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/com.motionapps.service.classic.md5sums differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/com.palm.app.backup.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/com.palm.app.bluetooth.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/com.palm.app.browser.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/com.palm.app.calculator.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/com.palm.app.calendar.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/com.palm.app.camera.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/com.palm.app.certificate.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/com.palm.app.clock.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/com.palm.app.contacts.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/com.palm.app.dataimport.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/com.palm.app.dateandtime.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/com.palm.app.deviceinfo.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/com.palm.app.devmodeswitcher.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/com.palm.app.docviewer.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/com.palm.app.email.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/com.palm.app.findapps.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/com.palm.app.findapps.md5sums differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/com.palm.app.firstuse.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/com.palm.app.firstuse.md5sums differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/com.palm.app.help.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/com.palm.app.languagepicker.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/com.palm.app.location.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/com.palm.app.maps.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/com.palm.app.messaging.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/com.palm.app.musicplayer.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/com.palm.app.notes.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/com.palm.app.ondevicedemo.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/com.palm.app.pdfviewer.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/com.palm.app.phone.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/com.palm.app.phoneprefs.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/com.palm.app.photos.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/com.palm.app.screenlock.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/com.palm.app.soundsandalerts.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/com.palm.app.streamingmusicplayer.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/com.palm.app.tasks.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/com.palm.app.updates.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/com.palm.app.updates.md5sums differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/com.palm.app.videoplayer.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/com.palm.app.wifi.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/com.palm.app.youtube.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/com.palm.crotest.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/contextupload.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/cryptsetup.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/curl.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/cypress-multitouch.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/dbus.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/dbus-lib.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/dbus-util.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/default-content.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/dhcp-client.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/directfb.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/dnsmasq.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/docadapterbase.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/documentserver.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/domparser.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/dosfstools.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/downloadupdate.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/dspmon-omap34xx.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/e2fsprogs-badblocks.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/e2fsprogs-blkid.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/e2fsprogs-e2fsck.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/e2fsprogs-fsck.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/e2fsprogs-libs.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/e2fsprogs-mke2fs.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/e2fsprogs-tune2fs.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/e2fsprogs-uuidgen.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/exmap-console.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/expat.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/extractfs.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/fbdraw.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/fbset.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/ffmpeg.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/fileindexer.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/firstuse-media.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/fnmbl-clientapi.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/fnmbl-clientapi.md5sums differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/fnmbl-clientframework.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/fnmbl-clientframework.md5sums differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/fontconfig.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/freefont-ttf.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/freetype.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/fuse.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/fuser.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/fuse-utils.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/gdata-java-client.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/gdata-java-client.md5sums differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/gdb.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/gdbm.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/geolocation-adapter.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/giflib.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/glib-2.0.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/gloox.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/gmflag.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/gnutls.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/goodfork.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/google-rfc-2445.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/google-rfc-2445.md5sums differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/gst-ffmpeg.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/gst-plugins-bad.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/gst-plugins-base.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/gst-plugins-good.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/gstreamer.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/harmony.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/harmonykernel.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/harmonykernel.md5sums differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/harmony.md5sums differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/hidaccelerometer.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/hidavrcp.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/hidd.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/hidkeypad.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/hidlib.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/hidlight.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/hidproximity.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/hidqemukeypad.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/hidqemutouchpanel.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/hidtouchpanel.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/icu4j.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/icu4j.md5sums differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/initscripts.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/install-first.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/integcheck.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/ipkg.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/iproute2.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/iptables.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/iputils-arping.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/java-activerecord.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/java-activerecord.md5sums differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/java-async.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/java-async.md5sums differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/java-com.palm.accounts.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/java-com.palm.accountservices.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/java-com.palm.accountservices.md5sums differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/java-com.palm.accounts.md5sums differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/java-com.palm.backup.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/java-com.palm.backup.md5sums differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/java-com.palm.calendar.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/java-com.palm.calendar.md5sums differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/java-com.palm.carriernetworksettings.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/java-com.palm.carriernetworksettings.md5sums differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/java-com.palm.contacts.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/java-com.palm.contacts.md5sums differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/java-com.palm.customization.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/java-com.palm.customization.md5sums differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/java-com.palm.dataimport.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/java-com.palm.dataimport.md5sums differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/java-com.palm.datamigration.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/java-com.palm.datamigration.md5sums differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/java-com.palm.defaultdatabasebuilder.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/java-com.palm.defaultdatabasebuilder.md5sums differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/java-com.palm.deviceprofile.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/java-com.palm.deviceprofile.md5sums differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/java-com.palm.devicewipe.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/java-com.palm.devicewipe.md5sums differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/java-com.palm.findapps.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/java-com.palm.findapps.md5sums differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/java-com.palm.interfaceregistry.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/java-com.palm.interfaceregistry.md5sums differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/java-com.palm.location.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/java-com.palm.location.md5sums differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/java-com.palm.mail.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/java-com.palm.mail.md5sums differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/java-com.palm.mediaevents.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/java-com.palm.mediaevents.md5sums differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/java-com.palm.messaging.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/java-com.palm.messaging.md5sums differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/java-com.palm.messagingrouter.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/java-com.palm.messagingrouter.md5sums differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/java-com.palm.notes.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/java-com.palm.notes.md5sums differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/java-com.palm.packageinfo.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/java-com.palm.packageinfo.md5sums differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/java-com.palm.photos.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/java-com.palm.photos.md5sums differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/java-com.palm.pim.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/java-com.palm.pim.md5sums differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/java-com.palm.pimsync.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/java-com.palm.pimsync.md5sums differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/java-com.palm.scheduler.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/java-com.palm.scheduler.md5sums differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/java-com.palm.serviceboot.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/java-com.palm.serviceboot.md5sums differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/java-com.palm.superlog.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/java-com.palm.superlog.md5sums differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/java-com.palm.tasks.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/java-com.palm.tasks.md5sums differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/java-com.palm.telephony.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/java-com.palm.telephony.md5sums differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/java-service.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/java-service.md5sums differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/java-utils.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/java-utils.md5sums differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/jemalloc.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/joda-time.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/joda-time.md5sums differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/jpeg.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/jpegdecodelib-omap34xx.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/jpegtranscodeclient-omap34xx.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/jpegtranscodeserver-omap34xx.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/jwap.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/jwap.md5sums differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/kernel.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/kernel-dev.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/kernel-image-2.6.24-palm-joplin-3430.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/kernel-module-ecb.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/kernel-module-g-composite.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/kernel-module-oprofile.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/kernel-module-pcbc.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/kernel-modules.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/kernel-module-scsi-wait-scan.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/killall.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/klog.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/ksoap.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/ksoap.md5sums differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/libasound.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/libasound-module-ctl-pulse.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/libasound-module-pcm-pulse.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/libatomic-ops.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/libavcodec.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/libavdevice.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/libavformat.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/libavutil.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/libcrypto.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/libcurl.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/libgcrypt.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/libgdbus.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/libgpg-error.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/libgpod.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/libicudata.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/libicui18n.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/libicuio.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/libicule.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/libiculx.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/libicutu.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/libicuuc.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/libipkg.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/libltdl.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/libltdl.md5sums differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/libmatthew-java.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/libmatthew-java.md5sums differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/liboil.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/libpcap.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/libpng12.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/libpng.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/libpulse.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/libpulsecore.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/libpulse-simple.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/libpurple-adapter.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/libpurple.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/libsamplerate0.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/libsndfile1.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/libspeex.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/libsqlite.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/libssl.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/libsysfs.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/libulockmgr.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/libvolume-id.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/libxml2.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/libxslt.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/locationadapter.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/logctld.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/luna-applauncher.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/luna-fonts.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/luna-init.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/luna-keymap-headers.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/luna-media-adapter.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/luna-media.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/luna-network.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/luna-prefs.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/luna-pseudocard.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/luna-service.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/luna-service.md5sums differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/luna-sysmgr.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/luna-sysmgr.list differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/luna-sysmgr.md5sums differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/luna-sysservice.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/luna-systemui.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/luna-webkit.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/lvm2-config.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/lvm2.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/lvm2-static.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/makedevs.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/masflib.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/mediaadpcmdecodelib.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/mediaregistryapp.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/mediaserver.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/memchute.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/minicore2.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/mjson.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/mkbootfs-tools.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/module-init-tools.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/module-init-tools-depmod.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/modutils-initscripts.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/mojo.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/mtools.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/ncurses.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/netbase.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/netcat.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/net-tools-netstat.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/novacom.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/novacomd.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/npapiinterfacelib.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/ntpdate.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/oasisharmonyvm.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/officeadapter.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/officeserver.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/omadm.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/omxclientlib-omap34xx.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/openssl.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/oprofile.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/org.json.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/org.json.md5sums differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/ossinfo.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/palmaacdemux.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/palmadpcmdecoder.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/palmamrdemux.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/palmaudiodecoder-omap34xx.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/palmbuildinfo.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/palmbuildinfo.md5sums differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/palmdrmlib.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/palmdrmutilslib.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/palmhttpsrc.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/palmipc-java.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/palmipc-java.md5sums differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/palmjpgencsink-omap34xx.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/palmmp3demux.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/palmqcelpdemux.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/palmvideodecoder-omap34xx.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/palmvideoencoder-omap34xx.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/palmvideosink-omap34xx.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/passthrud-castle.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/pdfadapter.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/piranha.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/pmappsigningcerts.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/pmbtcontacts.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/pmbtengine.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/pmbtlib.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/pmbtos.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/pmbtstack.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/pmbtstartup.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/pmbttest.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/pmcasper.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/pmcertificatemgr.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/pmcertificatemgrservice.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/pmcertstore.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/pmcertstore.md5sums differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/pmconnectionmanager.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/pmeloop.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/pmipcdispatch.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/pmipclib.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/pmlinuxmodemcmd.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/pmlogctl.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/pmlogdaemon.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/pmloglib.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/pmmedia.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/pmmedia-omap34xx.control differs&lt;br /&gt;
Only in 1.0.3: resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/pmmodemfactory.control&lt;br /&gt;
Only in 1.0.3: resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/pmmodemfactory.list&lt;br /&gt;
Only in 1.0.3: resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/pmmodemfactory.md5sums&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/pmmodeminfo.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/pmmodempower.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/pmmodemupdater.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/pmnetconfiglib.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/pmnetconfigmanager.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/pmnetworking-castle.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/pmnetworking.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/pmsystemtimeout.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/pmtelephony.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/pmtelephony-msm6xxx.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/pmtpupdater.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/pmupdater.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/pmwandaemon.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/pmwanpppplugin.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/pmwifidriver.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/pmwifiservice.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/popt.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/powerd.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/ppp.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/procps.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/psmisc.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/pstree.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/pubsubservice.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/pulseaudio.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/pulseaudio-lib-alsa-util.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/pulseaudio-lib-auth-cookie.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/pulseaudio-lib-authkey.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/pulseaudio-lib-cli.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/pulseaudio-lib-iochannel.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/pulseaudio-lib-ioline.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/pulseaudio-lib-ipacl.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/pulseaudio-lib-packet.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/pulseaudio-lib-pdispatch.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/pulseaudio-lib-protocol-cli.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/pulseaudio-lib-protocol-native.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/pulseaudio-lib-pstream.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/pulseaudio-lib-pstream-util.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/pulseaudio-lib-socket-server.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/pulseaudio-lib-socket-util.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/pulseaudio-lib-strlist.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/pulseaudio-lib-tagstruct.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/pulseaudio-misc.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/pulseaudio-module-alsa-sink.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/pulseaudio-module-alsa-source.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/pulseaudio-module-cli.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/pulseaudio-module-cli-protocol-unix.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/pulseaudio-module-default-device-restore.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/pulseaudio-module-detect.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/pulseaudio-module-native-protocol-unix.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/pulseaudio-module-null-sink.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/pulseaudio-module-palm-a2dp-provider-sink.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/pulseaudio-module-palm-policy.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/pulseaudio-module-rescue-streams.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/pulseaudio-module-suspend-on-idle.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/pulseaudio-module-volume-restore.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/pulseaudio-server.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/rdxd.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/readline.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/redbend.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/rsync.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/saxparser.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/screen.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/setcharge.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/setserial.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/shutdownscripts.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/sqlite3.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/sqlite3-palm-extension.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/sqlitejdbc.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/sqlitejdbc.md5sums differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/sqlite-service.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/storaged.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/strace.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/sysfsutils.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/sysstat.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/systemsoundsloader.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/sysvinit.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/sysvinit-pidof.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/telephonyinterfacelayer1cdma.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/telephonyinterfacelayer1gsm.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/telephonyinterfacelayercommon.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/tellbootie.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/thumbnailextractorlib-omap34xx.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/tiff.control differs&lt;br /&gt;
Only in 1.0.3: resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/tilipctest.control&lt;br /&gt;
Only in 1.0.3: resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/tilipctest.list&lt;br /&gt;
Only in 1.0.3: resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/tilipctest.md5sums&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/timezone.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/tiopenmax.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/touchpanel-measure.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/trenchcoat.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/udev.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/updatedaemon.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/update-modules.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/update-rc.d.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/uploadd.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/upstart.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/upstart-initscripts.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/upstart-initscripts.md5sums differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/upstart-sysvcompat.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/uriparser.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/usbmon.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/usbnet.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/util-linux-ng-blockdev.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/util-linux-ng-ionice.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/util-linux-ng-losetup.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/util-linux-ng-mkswap.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/util-linux-ng-swaponoff.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/vibetonz-castle.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/vibetonz.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/wireless-tools.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/wpa-supplicant.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/wxwidgets.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/info/zlib.control differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/lists/oe-all differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/lists/oe-armv7 differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/packages.xml differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/ipkg/status differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/jvm/java-1.5-palm/jre/lib/boot/annotation.jar differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/jvm/java-1.5-palm/jre/lib/boot/archive.jar differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/jvm/java-1.5-palm/jre/lib/boot/auth.jar differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/jvm/java-1.5-palm/jre/lib/boot/crypto.jar differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/jvm/java-1.5-palm/jre/lib/boot/icu4j_3.8/icu4j-3_8.jar differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/jvm/java-1.5-palm/jre/lib/boot/icu4j_3.8/icu4j-charsets-3_8.jar differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/jvm/java-1.5-palm/jre/lib/boot/logging.jar differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/jvm/java-1.5-palm/jre/lib/boot/luni.jar differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/jvm/java-1.5-palm/jre/lib/boot/math.jar differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/jvm/java-1.5-palm/jre/lib/boot/nio_char.jar differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/jvm/java-1.5-palm/jre/lib/boot/nio.jar differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/jvm/java-1.5-palm/jre/lib/boot/regex.jar differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/jvm/java-1.5-palm/jre/lib/boot/security.jar differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/jvm/java-1.5-palm/jre/lib/boot/sql.jar differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/jvm/java-1.5-palm/jre/lib/boot/text.jar differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/jvm/java-1.5-palm/jre/lib/boot/x-net.jar differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/jvm/java-1.5-palm/jre/lib/ext/bcprov.jar differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/jvm/java-1.5-palm/lib/rt.jar differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/libltdl.so.3 differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/libltdl.so.3.1.5 differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/luna/java/accountservices.jar differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/luna/java/accounts.jar differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/luna/java/activerecord.jar differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/luna/java/Async.jar differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/luna/java/backup.jar differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/luna/java/calendar.jar differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/luna/java/CarrierNetworkSettings.jar differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/luna/java/contacts.jar differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/luna/java/Customization.jar differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/luna/java/dataimport.jar differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/luna/java/datamigration.jar differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/luna/java/DefaultDatabaseBuilder.jar differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/luna/java/deviceprofile.jar differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/luna/java/devicewipe.jar differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/luna/java/findapps.jar differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/luna/java/Fnmbl-ClientApi.jar differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/luna/java/Fnmbl-ClientFramework.jar differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/luna/java/gdata.jar differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/luna/java/InterfaceRegistry.jar differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/luna/java/joda-time-1.5.2.jar differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/luna/java/json.jar differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/luna/java/jWAP.jar differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/luna/java/ksoap2-j2se-full-2.1.1.jar differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/luna/java/libmatthew-java-0.7.jar differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/luna/java/location.jar differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/luna/java/lunaservice.jar differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/luna/java/mail.jar differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/luna/java/MediaEvents.jar differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/luna/java/messaging.jar differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/luna/java/messagingrouter.jar differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/luna/java/minidbus-java-2.4.jar differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/luna/java/notes.jar differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/luna/java/packageinfo.jar differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/luna/java/palmipc.jar differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/luna/java/Photos.jar differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/luna/java/pim.jar differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/luna/java/pimsync.jar differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/luna/java/rfc2445.jar differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/luna/java/scheduler.jar differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/luna/java/serviceboot.jar differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/luna/java/serviceframework.jar differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/luna/java/sqlitejdbc-v053.jar differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/luna/java/superlog.jar differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/luna/java/tasks.jar differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/luna/java/telephony.jar differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/luna/java/Utils.jar differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/luna/PalmDatabase.db3 differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/modem/castlecdma_evt1_fw.tar differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/palmos/.prepare.sh differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/palmos/rom0/ROM.bin differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/lib/palmos/.uprepare.sh differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.findapps/weave/services/applicationmanager.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.firstuse/app/models/appcatalog-service.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle/usr/palm/applications/com.palm.app.updates/app/models/app-catalog-service.js differs&lt;br /&gt;
File /resources/webOS/nova-cust-image-castle.rootfs.tar.gz differs&lt;br /&gt;
File /resources/webOS/nova-installer-image-castle.uImage differs&lt;br /&gt;
File /resources/webOS.tar differs&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;/div&gt;</summary>
		<author><name>UltraBlack</name></author>
	</entry>
	<entry>
		<id>http://wiki.webos-internals.org/index.php?title=Template:Tux&amp;diff=3965</id>
		<title>Template:Tux</title>
		<link rel="alternate" type="text/html" href="http://wiki.webos-internals.org/index.php?title=Template:Tux&amp;diff=3965"/>
		<updated>2009-08-07T08:40:15Z</updated>

		<summary type="html">&lt;p&gt;UltraBlack: Removed Linux.png.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;div style=&amp;quot;display:inline;{{{2}}}&amp;quot;&amp;gt;{{#icon:{{{1}}}|}}&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;noinclude&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{{#icon:Linux.png|Tux With Pre|48|Image:Tux.png}}&lt;br /&gt;
&lt;br /&gt;
{{#icon:Linux_With_Pre.png|Tux With Pre|48|Image:Linux_With_Pre.png}}&lt;br /&gt;
{{#icon:Linux_With_Broken_Pre.png|Tux With Broken Pre|48|Image:Linux_With_Broken_Pre.png}}&lt;br /&gt;
{{#icon:Linux_With_Pre_Screwdriver.png|Tux With Pre and Screwdriver|48|Image:Linux_With_Pre_Screwdriver.png}}&lt;br /&gt;
{{#icon:Linux_Thinking.png|Tux Thinking|80|Image:Linux_Thinking.png}}&lt;br /&gt;
{{#icon:Linux_Mad.png|Tux Mad|80|Image:Linux_Mad.png}}&lt;br /&gt;
{{#icon:Linux_Chat.png|Tux Chat|93|Image:Linux_Chat.png}}&lt;br /&gt;
{{#icon:Linux_With_Docs.png|Tux with Docs|48|Image:Linux_With_Docs.png}}&lt;br /&gt;
{{#icon:Linux_With_Glasses_and_Coat.png|Tux with Docs|48|Image:Linux_With_Glasses_and_Coat.png}}&lt;br /&gt;
== How to Use ==&lt;br /&gt;
&amp;lt;source lang=&amp;quot;text&amp;quot;&amp;gt;&lt;br /&gt;
{{linux|Linux_With_Pre.png|float:right;}}&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Want To add your own ==&lt;br /&gt;
Just upload the image with the naming scheme.&lt;br /&gt;
&amp;lt;source lang=&amp;quot;text&amp;quot;&amp;gt;&lt;br /&gt;
Linux_ + Action + .png&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;&lt;/div&gt;</summary>
		<author><name>UltraBlack</name></author>
	</entry>
	<entry>
		<id>http://wiki.webos-internals.org/index.php?title=Main_Page_beta&amp;diff=3964</id>
		<title>Main Page beta</title>
		<link rel="alternate" type="text/html" href="http://wiki.webos-internals.org/index.php?title=Main_Page_beta&amp;diff=3964"/>
		<updated>2009-08-07T08:39:53Z</updated>

		<summary type="html">&lt;p&gt;UltraBlack: Tux icon changed to the new one.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__notoc__&lt;br /&gt;
{{page-main-beta&lt;br /&gt;
|cell-1-1=&lt;br /&gt;
 {{nav-block&lt;br /&gt;
 |imageName={{#icon:Favorites.png|Getting Started|48|Portal:Accessing_Linux}}&lt;br /&gt;
 |title=[[Portal:Accessing_Linux|Getting Started]]&lt;br /&gt;
 |description=Access the Linux userland on your Pre to start hacking.&lt;br /&gt;
 }}&lt;br /&gt;
|cell-2-1=&lt;br /&gt;
 {{nav-block&lt;br /&gt;
 |imageName={{#icon:Tux.png|Linux Applications|48|Portal:Linux_Applications}}&lt;br /&gt;
 |title=[[Portal:Linux_Applications|Linux Apps &amp;amp; Tutorials]]&lt;br /&gt;
 |description=The entire catalog of Optware packages is available on the Pre.&lt;br /&gt;
 }}&lt;br /&gt;
|cell-3-1=&lt;br /&gt;
 {{nav-block&lt;br /&gt;
 |imageName={{#icon:Preferences-plugin-script.png|Development Tools|48|Source Patches}}&lt;br /&gt;
 |title=[[Source Patches|Source Patches]]&lt;br /&gt;
 |description=Get patches for Mojo apps to add functionality and expose hidden features.&lt;br /&gt;
 }}&lt;br /&gt;
|cell-1-2=&lt;br /&gt;
 {{nav-block&lt;br /&gt;
 |imageName={{#icon:Applications-development.png|Development Tools|48}}&lt;br /&gt;
 |title=[[Portal:Tools|Development Tools]]&lt;br /&gt;
 |description=Get info on [[Portal:Tools|toolchains]], cross-compiling, etc.&lt;br /&gt;
 }}&lt;br /&gt;
|cell-2-2=&lt;br /&gt;
 {{nav-block&lt;br /&gt;
 |imageName={{#icon:WebOS.png|Webos Applications|48|Portal:webOS_Applications}}&lt;br /&gt;
 |title=[[Portal:webOS_Applications|webOS Apps &amp;amp; Tutorials]]&lt;br /&gt;
 |description=Check out the homebrew apps made by our users and affiliates.&lt;br /&gt;
 }}&lt;br /&gt;
|cell-3-2=&lt;br /&gt;
 {{nav-block&lt;br /&gt;
 |imageName={{#icon:Preferences-plugin.png|Development Tools|48|}}&lt;br /&gt;
 |title=Plugins / Adapters&lt;br /&gt;
 |description=Check out a compilation of plugin-style applications.&lt;br /&gt;
  }}&lt;br /&gt;
|cell-1-3=&lt;br /&gt;
 {{nav-block&lt;br /&gt;
 |imageName={{#icon:Help-browser.png|Development Tools|48|How To Recover}}&lt;br /&gt;
 |title=[[How To Recover|Recovery]]&lt;br /&gt;
 |description=Did you brick your Pre? Find out how to restore the factory image.&lt;br /&gt;
 }}&lt;br /&gt;
|cell-2-3=&lt;br /&gt;
 {{nav-block&lt;br /&gt;
 |imageName={{#icon:System-help.png|Development Tools|48|SDK}}&lt;br /&gt;
 |title=[[Portal:SDK|SDK Documentation]]&lt;br /&gt;
 |description=Need help with something? Looking for a tutorial? Find it here.&lt;br /&gt;
 }}&lt;br /&gt;
|cell-3-3=&lt;br /&gt;
 {{nav-block&lt;br /&gt;
 |imageName={{#icon:System-help.png|Development Tools|48|Help:Contents}}&lt;br /&gt;
 |title=[[Help:Contents|Wiki Help]]&lt;br /&gt;
 |description=Want to help out with the wiki, but don't know where to start.&lt;br /&gt;
 }}&lt;br /&gt;
|coderepositories=&lt;br /&gt;
 {{nav-block&lt;br /&gt;
 |imageName={{#icon:Kompare-icon.png|Development Tools|48|Code Repositories}}&lt;br /&gt;
 |title=[[Code Repositories]]&lt;br /&gt;
 |description=&lt;br /&gt;
* [http://gitorious.org/webos-internals http://gitorious.org/webos-internals]&lt;br /&gt;
* [http://svn.webosinternals.org http://svn.webosinternals.org]&lt;br /&gt;
* [http://github.com/asedeno http://github.com/asedeno]&lt;br /&gt;
 }}&lt;br /&gt;
|resources=&lt;br /&gt;
 {{nav-block&lt;br /&gt;
 |imageName={{#icon:WebOS.png|Development Tools|48|Resources}}&lt;br /&gt;
 |title=[[Resources]]&lt;br /&gt;
 |description=Want to find a community to join or help beyond what the wiki offers, find links here.&lt;br /&gt;
 }}&lt;br /&gt;
|irc=&lt;br /&gt;
 {{nav-block&lt;br /&gt;
 |imageName={{#icon:Icon_irc.png|Development Tools|48|Portal:Community}}&lt;br /&gt;
 |title=[[Portal:Community|IRC]]&lt;br /&gt;
 |description=Join us in [irc://irc.freenode.net/webos-internals #webos-internals] on FreeNode.&lt;br /&gt;
&lt;br /&gt;
The same rules apply as those on the wiki for discussion.&lt;br /&gt;
 }}&lt;br /&gt;
|leftnav=&lt;br /&gt;
[[About|Overview]]&amp;amp;nbsp;'''·''' [[Tutorial|Editing]]&amp;amp;nbsp;'''·''' [[Help:Questions|Questions]]&amp;amp;nbsp;'''·''' [[Admin_Changes|Changes that Require an Admin]]&amp;amp;nbsp;'''·''' [[Help:Style Guide|Style Guide]]&amp;amp;nbsp;'''·''' [[Help:Contents|Help]]&lt;br /&gt;
&lt;br /&gt;
|rightnav=&lt;br /&gt;
[[Help:Where Things Go|Where Things Go]] (The intended structure of this wiki)&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
== Please check with others before moving this ==&lt;br /&gt;
&lt;br /&gt;
It isn't far enough along to be moved to the front page.&lt;br /&gt;
&lt;br /&gt;
== Suggestions ==&lt;br /&gt;
&lt;br /&gt;
☑ Cleared out old suggestions that are now included.&lt;br /&gt;
&lt;br /&gt;
☑ Waiting to get an extension installed.&lt;br /&gt;
: Done&lt;br /&gt;
&lt;br /&gt;
☐ Finish switching out the icons.&lt;br /&gt;
&lt;br /&gt;
☐ Type here for a new suggestion.&lt;br /&gt;
&lt;br /&gt;
== Portals the Main Page Must Have ==&lt;br /&gt;
&lt;br /&gt;
☑ Accessing Linux&lt;br /&gt;
&lt;br /&gt;
☑ webOS Applications [&amp;amp; Tutorials]&lt;br /&gt;
&lt;br /&gt;
☑ Linux Applications [&amp;amp; Tutorials]&lt;br /&gt;
&lt;br /&gt;
☑ The Palm SDK &amp;amp; Docs&lt;br /&gt;
&lt;br /&gt;
☐ Links for editing the wiki (removes all those large boxes on the right)&lt;/div&gt;</summary>
		<author><name>UltraBlack</name></author>
	</entry>
	<entry>
		<id>http://wiki.webos-internals.org/</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="http://wiki.webos-internals.org/"/>
		<updated>2009-08-07T08:39:15Z</updated>

		<summary type="html">&lt;p&gt;UltraBlack: Tux icons changed to the new ones.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__notoc__&lt;br /&gt;
&amp;lt;!--&lt;br /&gt;
Welcome is in the Template&lt;br /&gt;
Disclaimer is in the Template&lt;br /&gt;
--&amp;gt;&lt;br /&gt;
{{page-main&lt;br /&gt;
|cell-1-1=&lt;br /&gt;
 {{nav-block&lt;br /&gt;
 |imageName={{#icon:Favorites.png|Getting Started|48|Portal:Where to Get Started}}&lt;br /&gt;
 |title=[[Portal:Where to Get Started|Getting Started]]&lt;br /&gt;
 |description=Various paths to start enhancing and understanding your Pre.&lt;br /&gt;
 }}&lt;br /&gt;
|cell-2-1=&lt;br /&gt;
 {{nav-block&lt;br /&gt;
 |imageName={{#icon:Tux_with_Pre.png|Linux Applications|48|Portal:Linux_Applications}}&lt;br /&gt;
 |title=[[Portal:Linux_Applications|Linux Apps &amp;amp; Tutorials]]&lt;br /&gt;
 |description=The entire catalog of Optware packages is available on the Pre.&lt;br /&gt;
 }}&lt;br /&gt;
|cell-3-1=&lt;br /&gt;
 {{nav-block&lt;br /&gt;
 |imageName={{#icon:Preferences-plugin-script.png|Development Tools|48|Source Patches}}&lt;br /&gt;
 |title=[[Portal:Patches to webOS|Source Patches]]&lt;br /&gt;
 |description=Get patches for Mojo apps to add functionality and expose hidden features.&lt;br /&gt;
 }}&lt;br /&gt;
|cell-1-2=&lt;br /&gt;
 {{nav-block&lt;br /&gt;
 |imageName={{#icon:Tux_with_Pre_and_Screwdriver.png|Development Tools|48|Portal:Accessing Linux}}&lt;br /&gt;
 |title=[[Portal:Accessing Linux|Accessing Linux]]&lt;br /&gt;
 |description=Get information on Accessing Linux.&lt;br /&gt;
 }}&lt;br /&gt;
|cell-2-2=&lt;br /&gt;
 {{nav-block&lt;br /&gt;
 |imageName={{#icon:WebOS.png|Webos Applications|48|Portal:webOS_Applications}}&lt;br /&gt;
 |title=[[Portal:webOS_Applications|webOS Apps &amp;amp; Tutorials]]&lt;br /&gt;
 |description=Check out the homebrew apps made by our users and affiliates.&lt;br /&gt;
 }}&lt;br /&gt;
|cell-3-2=&lt;br /&gt;
 {{nav-block&lt;br /&gt;
 |imageName={{#icon:Icon-hardware.png|Hardware Information|48|Portal:Hardware}}&lt;br /&gt;
 |title=[[Portal:Hardware|Hardware Information]]&lt;br /&gt;
 |description=Interested in the inner workings of the device? Check it out.&lt;br /&gt;
  }}&lt;br /&gt;
|cell-1-3=&lt;br /&gt;
 {{nav-block&lt;br /&gt;
 |imageName={{#icon:Applications-development.png|Development Tools|48}}&lt;br /&gt;
 |title=[[Portal:Tools|Development Tools]]&lt;br /&gt;
 |description=Get information on toolchains, cross-compiling, kernels and more.&lt;br /&gt;
 }}&lt;br /&gt;
|cell-2-3=&lt;br /&gt;
 {{nav-block&lt;br /&gt;
 |imageName={{#icon:Icon-document.png|Development Tools|48|Portal:SDK}}&lt;br /&gt;
 |title=[[Portal:SDK|SDK Documentation]]&lt;br /&gt;
 |description=Need help with something? Looking for a tutorial? Find it here.&lt;br /&gt;
 }}&lt;br /&gt;
|cell-3-3=&lt;br /&gt;
 {{nav-block&lt;br /&gt;
 |imageName={{#icon:Scientux.png|Research|48|Portal:Research}}&lt;br /&gt;
 |title=[[Portal:Research|Research &amp;amp; Reference]]&lt;br /&gt;
 |description=Bleeding edge research of the device, with reference links.&lt;br /&gt;
 }}&lt;br /&gt;
|cell-1-4=&lt;br /&gt;
 {{nav-block&lt;br /&gt;
 |imageName={{#icon:Help-browser.png|Development Tools|48|How To Recover}}&lt;br /&gt;
 |title=[[How To Recover|Recovery]]&lt;br /&gt;
 |description=Did you brick your Pre? Find out how to restore the factory image.&lt;br /&gt;
 }}&lt;br /&gt;
|cell-2-4=&lt;br /&gt;
 {{nav-block&lt;br /&gt;
 |imageName={{#icon:Icon-email.png|Email Accouncements|48}}&lt;br /&gt;
 |title=[http://groups.google.com/group/webos-internals-announce Subscribe to Announcements]&lt;br /&gt;
 |description=Google groups, where webOS-Internals dispatches announcements on important topics.&lt;br /&gt;
 }}&lt;br /&gt;
|cell-3-4=&lt;br /&gt;
 {{nav-block&lt;br /&gt;
 |imageName={{#icon:System-help.png|Development Tools|48|Help:Contents}}&lt;br /&gt;
 |title=[[Help:Contents|Wiki Help]]&lt;br /&gt;
 |description=Want to help out with the wiki, but don't know where to start.&lt;br /&gt;
 }}&lt;br /&gt;
|coderepositories=&lt;br /&gt;
 {{nav-block&lt;br /&gt;
 |imageName={{#icon:Kompare-icon.png|Development Tools|48|Code Repositories}}&lt;br /&gt;
 |title=[[Code Repositories]]&lt;br /&gt;
 |description=&lt;br /&gt;
* [http://gitorious.org/webos-internals http://gitorious.org/webos-internals]&lt;br /&gt;
* [http://svn.webosinternals.org http://svn.webosinternals.org]&lt;br /&gt;
* [http://github.com/asedeno http://github.com/asedeno]&lt;br /&gt;
 }}&lt;br /&gt;
|resources=&lt;br /&gt;
 {{nav-block&lt;br /&gt;
 |imageName={{#icon:Tux_with_Docs.png|Development Tools|48|Resources}}&lt;br /&gt;
 |title=[[Resources]]&lt;br /&gt;
 |description=Want to find a community to join or help beyond what the wiki offers, find links here.&lt;br /&gt;
 }}&lt;br /&gt;
|irc=&lt;br /&gt;
 {{nav-block&lt;br /&gt;
 |imageName={{#icon:WebOS.png|Development Tools|48|Portal:Community}}&lt;br /&gt;
 |title=[[Portal:Community|IRC]]&lt;br /&gt;
 |description=&lt;br /&gt;
Join us in [irc://irc.freenode.net/webos-internals #webos-internals]&lt;br /&gt;
&lt;br /&gt;
The same rules apply as those on the wiki for discussion.&lt;br /&gt;
 }}&lt;br /&gt;
|leftnav=&lt;br /&gt;
[[About|Overview]]&amp;amp;nbsp;'''·''' [[Tutorial|Editing]]&amp;amp;nbsp;'''·''' [[Help:Questions|Questions]]&amp;amp;nbsp;'''·''' [[Admin_Changes|Changes that Require an Admin]]&amp;amp;nbsp;'''·''' [[Help:Style Guide|Style Guide]]&amp;amp;nbsp;'''·''' [[Help:Contents|Help]]&lt;br /&gt;
&lt;br /&gt;
|rightnav=&lt;br /&gt;
[[Help:Where Things Go|Where Things Go]] (The intended structure of this wiki)&lt;br /&gt;
&lt;br /&gt;
}}&lt;/div&gt;</summary>
		<author><name>UltraBlack</name></author>
	</entry>
</feed>