|
|
2010-05-25
, 21:11
|
|
Posts: 202 |
Thanked: 30 times |
Joined on Mar 2010
@ CZE
|
#92
|
Auto capitalisation text boxes no longer allow me to press shift to get a lower case first character, I have to press any key first then go back and delete, sucks for password boxes and touchsearch (using the case-sensitive site: prefix).
Anyone else experiencing this?
|
|
2010-05-25
, 21:12
|
|
Posts: 515 |
Thanked: 266 times |
Joined on Nov 2009
@ Oelsted, Denmark
|
#93
|
Auto capitalisation text boxes no longer allow me to press shift to get a lower case first character, I have to press any key first then go back and delete, sucks for password boxes and touchsearch (using the case-sensitive site: prefix).
Anyone else experiencing this?

| The Following User Says Thank You to DrWilken For This Useful Post: | ||
|
|
2010-05-25
, 21:13
|
|
Posts: 202 |
Thanked: 30 times |
Joined on Mar 2010
@ CZE
|
#94
|
I'll see your extra-devel not working at raise you an everything but ovi not working. Was working fine briefly, then getting errors resolving urls and now i'm stuck with just ovi.
Think I might try reflashing...
|
|
2010-05-25
, 21:13
|
|
Posts: 52 |
Thanked: 37 times |
Joined on Mar 2010
@ Maidstone, UK
|
#95
|
|
|
2010-05-25
, 21:16
|
|
Posts: 202 |
Thanked: 30 times |
Joined on Mar 2010
@ CZE
|
#96
|
#!/bin/sh
# N900 script to safely free space on rootfs
# (c) 2010 by Thomas Tanner <tanner@maemory.com>
# licensed under GPLv3
# move root stuff to /home
dirs="usr/share/icons usr/share/nokia-maps usr/share/themes usr/share/fonts usr/share/locale usr/lib/locale var/lib/apt"
#optional: var/lib/dpkg
if test -d /home/var/cache/apt; then
# keep existing apt cache
rm -rf /var/cache/apt
ln -s /home/var/cache/apt /var/cache/apt
else
dirs="$dirs var/cache/apt"
fi
(cd / && du -sc $dirs)
for d in $dirs; do
test -L /$d && continue
echo moving /$d
rm -rf /home/$d
mkdir -p /home/$d
cp -a /$d /home/$d/..
rm -rf /$d
ln -s /home/$d /$d
done
| The Following User Says Thank You to michalurban For This Useful Post: | ||
|
|
2010-05-25
, 21:16
|
|
Posts: 159 |
Thanked: 88 times |
Joined on Feb 2010
|
#97
|
|
|
2010-05-25
, 21:16
|
|
Posts: 14 |
Thanked: 6 times |
Joined on May 2010
|
#98
|
|
|
2010-05-25
, 21:28
|
|
Posts: 515 |
Thanked: 266 times |
Joined on Nov 2009
@ Oelsted, Denmark
|
#99
|
With PR 1.1, I used to use a script from Thomas Tanner, moving many files from root outside the rootfs to make some place ...
[...]
Is it still safe to use this, with 1.2?


|
|
2010-05-25
, 21:30
|
|
Posts: 202 |
Thanked: 30 times |
Joined on Mar 2010
@ CZE
|
#100
|
At what stage does it fail, mine was craping out at the download stage, just sat there
Think I might try reflashing...