The Following 2 Users Say Thank You to int_ua For This Useful Post: | ||
|
2012-06-28
, 01:33
|
|
Posts: 676 |
Thanked: 1,067 times |
Joined on Jul 2010
@ Kyiv, Ukraine
|
#312
|
The Following User Says Thank You to int_ua For This Useful Post: | ||
|
2012-06-28
, 03:00
|
|
Posts: 676 |
Thanked: 1,067 times |
Joined on Jul 2010
@ Kyiv, Ukraine
|
#313
|
The Following 4 Users Say Thank You to int_ua For This Useful Post: | ||
|
2012-06-29
, 14:58
|
Posts: 191 |
Thanked: 415 times |
Joined on Jan 2012
|
#314
|
The Following User Says Thank You to caveman For This Useful Post: | ||
|
2012-06-29
, 19:48
|
Posts: 191 |
Thanked: 415 times |
Joined on Jan 2012
|
#315
|
|
2012-06-30
, 18:56
|
Posts: 9 |
Thanked: 25 times |
Joined on Jun 2012
|
#316
|
6. right mouse button emulation: http://talk.maemo.org/showpost.php?p...&postcount=299
included the following lines in /etc/X11/xorg.conf.d/90-input-n900.conf:
Code:Option "EmulateThirdButton" "1" Option "EmulateThirdButtonTimeout" "750" Option "EmulateThirdButtonThreshold" "30"
Code:iface=$(ip link|grep wlan|awk '{print $2}'|sed 's/://') ether=$(ip link|grep -A 2 wlan|tail -1|awk '{print $2;}')
root@ubuntu:/# ip link Cannot open netlink socket: Address family not supported by protocol
iface=$(ifconfig|grep wlan|awk '{print $1}') ether=$(grep 'address' /etc/udev/rules.d/70-persistent-net.rules | awk '{print $4;}' | cut -d '"' -f 2)
$ diff -bB install.sh ../Downloads/install.sh 264c264 < mkfs.vfat "${dev}p${target_partition_suffix_fat}" || exit 1 --- > mkfs.vfat "${dev}${target_partition_suffix_fat}" || exit 1 267c267 < mkswap "${dev}p${target_partition_suffix_swap}" || exit 1 --- > mkswap "${dev}${target_partition_suffix_swap}" || exit 1 269,271c269,271 < mkfs.ext3 "${dev}p${target_partition_suffix_root}" || exit 1 < tune2fs -O ^huge_file "${dev}p${target_partition_suffix_root}" < e2fsck -pf "${dev}p${target_partition_suffix_root}" || exit 1 --- > mkfs.ext3 "${dev}${target_partition_suffix_root}" || exit 1 > tune2fs -O ^huge_file "${dev}${target_partition_suffix_root}" > e2fsck -pf "${dev}${target_partition_suffix_root}" || exit 1 273c273 < mount "${dev}p${target_partition_suffix_root}" "$mountpoint_target" || exit 1 --- > mount "${dev}${target_partition_suffix_root}" "$mountpoint_target" || exit 1 309c309 < mount -o "loop,offset=${skip}" -t auto "$image_name_raw" "$mountpoint_ubuntu" || exit 1 --- > mount -o "loop,offset=${skip}" -t auto "$image_name_raw $mountpoint_ubuntu" || exit 1 391c391 < mount "${dev}p${target_partition_suffix_fat}" "$mountpoint_mmc_fat" || exit 1 --- > mount "${dev}${target_partition_suffix_fat}" "$mountpoint_mmc_fat" || exit 1 400c400 < e2fsck -pf "${dev}p${target_partition_suffix_root}" --- > e2fsck -pf "${dev}${target_partition_suffix_root}"
The Following 7 Users Say Thank You to lalit For This Useful Post: | ||
|
2012-06-30
, 21:28
|
Posts: 58 |
Thanked: 197 times |
Joined on Apr 2012
|
#317
|
The Following User Says Thank You to unknown.obvious For This Useful Post: | ||
|
2012-07-01
, 02:25
|
Posts: 58 |
Thanked: 197 times |
Joined on Apr 2012
|
#318
|
Something went wrong while installing man-db, see the errors above, ensure that dpkg isn't broken with commands 'apt-get install -f' and 'dpkg --configure -a' and type exit or Ctrl+D to continue.
resolvconf cups linux-image-3.2.0-26-omap acpid linux-image-omap linux-omap printer-driver-gutenprint E: Sub-process /usr/bin/dpkg returned an error code (1)
setenv atagaddr $init_atagaddr setenv bootcmd 'mmc init; fatload mmc 0:1 0x82000000 uImage; bootm 0x82000000' setenv bootargs 'root=/dev/mmcblk0p3 rootwait console=tty0 omapfb.vram=0:2M,1:2M,2:2M mtdoops.mtddev=2 nosplash elevator=noop' boot
setenv bootcmd 'mmc init; fatload mmc 0:1 0x82000000 uImage; bootm 0x82000000' setenv bootargs 'root=/dev/mmcblk0p3 rootwait console=tty0 omapfb.vram=0:2M,1:2M,2:2M mtdoops.mtddev=2 nosplash elevator=noop' boot
|
2012-07-01
, 08:56
|
Posts: 9 |
Thanked: 25 times |
Joined on Jun 2012
|
#319
|
those packages:Code:Something went wrong while installing man-db, see the errors above, ensure that dpkg isn't broken with commands 'apt-get install -f' and 'dpkg --configure -a' and type exit or Ctrl+D to continue.
Code:resolvconf cups linux-image-3.2.0-26-omap acpid linux-image-omap linux-omap printer-driver-gutenprint E: Sub-process /usr/bin/dpkg returned an error code (1)
I get this Error: /dev/sdbp1: No such file or directory
This Patch doesn't work on USB-Cardreader because they are not mmcblkXpX named but sdXX.
Could you rewrite your Patch and make it difference in internal and external cardreader, please?
Loading /lib/udev/ketmaps/nokia-n900-keys.map
The Following 3 Users Say Thank You to lalit For This Useful Post: | ||
|
2012-07-01
, 18:01
|
Posts: 12 |
Thanked: 1 time |
Joined on Jul 2012
|
#320
|
Last edited by int_ua; 2012-06-28 at 02:28.