[oe-commits] org.oe.dev merge of '7d911a2d488420f755862dde3e5c82e43913c991'

rwhitby commit openembedded-commits at lists.openembedded.org
Tue Jun 26 08:35:01 UTC 2007


merge of '7d911a2d488420f755862dde3e5c82e43913c991'
     and '999d34f6a16eb76013607894a0608c627e0279a1'

Author: rwhitby at nslu2-linux.org
Branch: org.openembedded.dev
Revision: e1e86e65a0c34e46313cdf272ba737817878479f
ViewMTN: http://monotone.openembedded.org/revision.psp?id=e1e86e65a0c34e46313cdf272ba737817878479f
Files:
1
packages/slugos-init/files/reflash
packages/slugos-init/files/sysconf
packages/slugos-init/files/turnup
packages/slugos-init/slugos-init_0.10.bb
conf/distro/hentges-2.0.conf
conf/machine/hentges-2.0_common.conf
conf/machine/hentges-2.0_spitz.conf
packages/images/hentges-console-image.bb
packages/images/hentges-x11-image.bb
packages/tasks/task-hentges-base.bb
packages/tasks/task-hentges-x11.bb
packages/altboot/altboot_1.1.1+wip-SVNR59.bb
packages/altboot/altboot_1.1.1+wip-SVNR66.bb
packages/psplash/files/angstrom
packages/fbreader/files/zaurus-VGA.patch
packages/psplash/files/angstrom/angstrom-psplash-qvga-img.h
packages/psplash/files/angstrom/angstrom-psplash-vga-img.h
packages/psplash/files/angstrom/psplash-hand-img.h
conf/machine/palmld.conf
packages/bluez/bluez-utils_3.12.bb
packages/fbreader/fbreader_0.8.2a.bb
packages/keymaps/files/jornada6xx/keymap-uk.map
packages/psplash/psplash_svn.bb
Diffs:

#
# mt diff -r7d911a2d488420f755862dde3e5c82e43913c991 -re1e86e65a0c34e46313cdf272ba737817878479f
#
# 
# 
# patch "packages/slugos-init/files/reflash"
#  from [f886fec2fbc2077f367a336963204a0a813979ea]
#    to [4d22deb46075a5a8645b5f82d5c3a011a211d0d4]
# 
# patch "packages/slugos-init/files/sysconf"
#  from [65dc9f74ca809af17100c94bdd851fd3a6d4dcbd]
#    to [4742342792c7cda553ad6d667b8380ec8bca1121]
# 
# patch "packages/slugos-init/files/turnup"
#  from [2e05239eaf5a32bbf9737fb1febffb5bde474362]
#    to [0c939e1149cd95e3b6553c5766ba09a3a3984ada]
# 
# patch "packages/slugos-init/slugos-init_0.10.bb"
#  from [9415d4ba5a133d97c91c0528720853e763cd539b]
#    to [f468b16b257c688676a2b1bf1ac611bb4452b1a2]
# 
============================================================
--- packages/slugos-init/files/reflash	f886fec2fbc2077f367a336963204a0a813979ea
+++ packages/slugos-init/files/reflash	4d22deb46075a5a8645b5f82d5c3a011a211d0d4
@@ -146,7 +146,7 @@ then
 			then
 				imgksize="$size"
 				imgkoffset="$base"
-			elif test "$name" = "$ffspart"
+			elif test "$name" = "$ffspart" -o "$name" = "rootfs"
 			then
 				imgffssize="$size"
 				imgffsoffset="$base"
@@ -320,6 +320,8 @@ then
 if test -n "$ffsfile"
 then
 	ffsdev="$(mtblockdev $ffspart)"
+	[ -n "$ffsdev" ] || \
+	ffsdev="$(mtblockdev rootfs)"
 	test -n "$ffsdev" -a -b "$ffsdev" || {
 		echo "reflash: $ffspart($ffsdev): cannot find $ffspart mtd partition." >&2
 		echo "  check /proc/mtd, either the partition does not exist or there is no" >&2
============================================================
--- packages/slugos-init/files/sysconf	65dc9f74ca809af17100c94bdd851fd3a6d4dcbd
+++ packages/slugos-init/files/sysconf	4742342792c7cda553ad6d667b8380ec8bca1121
@@ -8,7 +8,6 @@ test "$1" != sysconf && . /etc/default/f
 # to load these functions!)
 test "$1" != sysconf && . /etc/default/functions
 
-# NSLU2 flash layout is non-standard.
 case "$(machine)" in
 nslu2)
 	kpart="Kernel"
@@ -493,6 +492,8 @@ sysconf_save(){
 sysconf_save(){
 	local sysdev ffsdev ffsdir saved list size status
 	ffsdev="$(mtblockdev $ffspart)"
+	[ -n "$ffsdev" ] || \
+	ffsdev="$(mtblockdev rootfs)"
 	sysdev="$(mtblockdev $syspart)"
 	status=1
 	if test -n "$sysdev" -a -b "$sysdev" -a -n "$ffsdev" -a -b "$ffsdev"
@@ -622,6 +623,8 @@ sysconf_restore(){
 	test "$1" = auto && sysconf_noninteractive=1
 
 	ffsdev="$(mtblockdev $ffspart)"
+	[ -n "$ffsdev" ] || \
+	ffsdev="$(mtblockdev rootfs)"
 	sysdev="$(mtblockdev $syspart)"
 	status=1
 	if test -n "$sysdev" -a -b "$sysdev" -a -n "$ffsdev" -a -b "$ffsdev" &&
============================================================
--- packages/slugos-init/files/turnup	2e05239eaf5a32bbf9737fb1febffb5bde474362
+++ packages/slugos-init/files/turnup	0c939e1149cd95e3b6553c5766ba09a3a3984ada
@@ -159,7 +159,7 @@ get_flash() {
 # get_flash <directory> {mount options}
 #  mount the flash device, writeable, on the given directory
 get_flash() {
-	local ffsdir ffsdev
+	local ffsdir ffspart ffsdev
 
 	ffsdir="$1"
 	shift
@@ -169,9 +169,12 @@ get_flash() {
 	}
 
 	case "$(machine)" in
-	nslu2)	ffsdev="$(mtblockdev Flashdisk)";;
-	*)	ffsdev="$(mtblockdev filesystem)";;
+	nslu2)	ffspart="Flashdisk";;
+	*)	ffspart="filesystem";;
 	esac
+	ffsdev="$(mtblockdev $ffspart)"
+	[ -n "$ffsdev" ] || \
+	ffsdev="$(mtblockdev rootfs)"
 	umountflash "$ffsdev" &&
 	mountflash "$ffsdev" "$ffsdir" "$@"
 }
============================================================
--- packages/slugos-init/slugos-init_0.10.bb	9415d4ba5a133d97c91c0528720853e763cd539b
+++ packages/slugos-init/slugos-init_0.10.bb	f468b16b257c688676a2b1bf1ac611bb4452b1a2
@@ -1,10 +1,10 @@ RDEPENDS = "busybox devio"
 DESCRIPTION = "SlugOS initial network config via sysconf"
 SECTION = "base"
 PRIORITY = "required"
 LICENSE = "GPL"
 DEPENDS = "base-files devio"
 RDEPENDS = "busybox devio"
-PR = "r84"
+PR = "r85"
 
 SRC_URI = "file://boot/flash \
 	   file://boot/disk \


#
# mt diff -r999d34f6a16eb76013607894a0608c627e0279a1 -re1e86e65a0c34e46313cdf272ba737817878479f
#
# 
# 
# delete "conf/distro/hentges-2.0.conf"
# 
# delete "conf/machine/hentges-2.0_common.conf"
# 
# delete "conf/machine/hentges-2.0_spitz.conf"
# 
# delete "packages/images/hentges-console-image.bb"
# 
# delete "packages/images/hentges-x11-image.bb"
# 
# delete "packages/tasks/task-hentges-base.bb"
# 
# delete "packages/tasks/task-hentges-x11.bb"
# 
# rename "packages/altboot/altboot_1.1.1+wip-SVNR59.bb"
#     to "packages/altboot/altboot_1.1.1+wip-SVNR66.bb"
# 
# add_dir "packages/psplash/files/angstrom"
# 
# add_file "packages/fbreader/files/zaurus-VGA.patch"
#  content [3993e8eb74f417adf2f1ed86a1db46f5d7a91602]
# 
# add_file "packages/psplash/files/angstrom/angstrom-psplash-qvga-img.h"
#  content [01b8752ff29f7c525a80ea6b1a8d4bad2b5df6b5]
# 
# add_file "packages/psplash/files/angstrom/angstrom-psplash-vga-img.h"
#  content [eeb830ad80ca817eb6b02b74a54fea66ea9bbaf7]
# 
# add_file "packages/psplash/files/angstrom/psplash-hand-img.h"
#  content [01b8752ff29f7c525a80ea6b1a8d4bad2b5df6b5]
# 
# patch "conf/machine/palmld.conf"
#  from [02a77c82c88213e378d77a1ca5290686235ef273]
#    to [35967f1aae7db5a316327dcc9e656a7fd33fb278]
# 
# patch "packages/altboot/altboot_1.1.1+wip-SVNR66.bb"
#  from [72d2d7b4a01f0e47e2adec56d30e908f85830f96]
#    to [7cb617a49e20203b0f89fb39efef91b8ec68009a]
# 
# patch "packages/bluez/bluez-utils_3.12.bb"
#  from [aa68b3366893bffdd6b321059818b96093a30336]
#    to [d055686db47812d24a22cc691636452724043cdd]
# 
# patch "packages/fbreader/fbreader_0.8.2a.bb"
#  from [2281178bcfe616a911377e8d53a105e730186348]
#    to [ecb0b59a9f10624f83793fcfa9429e2f50131a9f]
# 
# patch "packages/keymaps/files/jornada6xx/keymap-uk.map"
#  from [bc5fb8eabd5a38af564d898db656a4cac3956dc7]
#    to [d1c2822f29a65bdd5faddb78981fbb4c573f92f4]
# 
# patch "packages/psplash/psplash_svn.bb"
#  from [d5521d74d11a572d9e91709a632c96da2cfd0e78]
#    to [8d16d46a864427dd7047c62819b842812bb29747]
# 
============================================================
--- packages/fbreader/files/zaurus-VGA.patch	3993e8eb74f417adf2f1ed86a1db46f5d7a91602
+++ packages/fbreader/files/zaurus-VGA.patch	3993e8eb74f417adf2f1ed86a1db46f5d7a91602
@@ -0,0 +1,13 @@
+--- fbreader-0.8.2a/fbreader/data/default/styles.gpe640x480.xml.orig	2007-06-24 23:55:56.000000000 +0000
++++ fbreader-0.8.2a/fbreader/data/default/styles.gpe640x480.xml	2007-06-24 23:56:22.000000000 +0000
+@@ -1,8 +1,8 @@
+ <?xml version="1.0" encoding="UTF-8"?>
+ <DefaultStyles>
+-	<base family="Sans" fontSize="16"/>
++	<base family="Sans" fontSize="8"/>
+ 	<style id="0" name="Regular Paragraph" firstLineIndentDelta="22" allowHyphenations="true"/>
+-	<style id="1" name="Title" fontSizeDelta="10" bold="true" spaceBefore="2" spaceAfter="7" alignment="center" allowHyphenations="false"/>
++	<style id="1" name="Title" fontSizeDelta="5" bold="true" spaceBefore="2" spaceAfter="7" alignment="center" allowHyphenations="false"/>
+ 	<style id="3" name="Poem Title" fontSizeDelta="2" bold="true" spaceBefore="6" spaceAfter="6" leftIndent="40" allowHyphenations="false"/>
+ 	<style id="2" name="Section Title" fontSizeDelta="6" bold="true" spaceAfter="5" alignment="center" allowHyphenations="false"/>
+ 	<style id="31" name="Header 1" fontSizeDelta="6" bold="true" spaceAfter="5" alignment="center" allowHyphenations="false"/>
============================================================
--- packages/psplash/files/angstrom/angstrom-psplash-qvga-img.h	01b8752ff29f7c525a80ea6b1a8d4bad2b5df6b5
+++ packages/psplash/files/angstrom/angstrom-psplash-qvga-img.h	01b8752ff29f7c525a80ea6b1a8d4bad2b5df6b5
@@ -0,0 +1,1336 @@
+/* GdkPixbuf RGBA C-Source image dump 1-byte-run-length-encoded */
+
+#define HAND_IMG_ROWSTRIDE (1016)
+#define HAND_IMG_WIDTH (254)
+#define HAND_IMG_HEIGHT (264)
+#define HAND_IMG_BYTES_PER_PIXEL (4) /* 3:RGB, 4:RGBA */
+#define HAND_IMG_RLE_PIXEL_DATA ((uint8*) \
+  "\377\333\343\342\377\377\333\343\342\377\377\333\343\342\377\377\333\343" \
+  "\342\377\377\333\343\342\377\377\333\343\342\377\377\333\343\342\377" \
+  "\377\333\343\342\377\377\333\343\342\377\377\333\343\342\377\377\333" \
+  "\343\342\377\377\333\343\342\377\377\333\343\342\377\377\333\343\342" \
+  "\377\377\333\343\342\377\377\333\343\342\377\377\333\343\342\377\377" \
+  "\333\343\342\377\377\333\343\342\377\377\333\343\342\377\377\333\343" \
+  "\342\377\377\333\343\342\377\377\333\343\342\377\377\333\343\342\377" \
+  "\377\333\343\342\377\377\333\343\342\377\377\333\343\342\377\377\333" \
+  "\343\342\377\377\333\343\342\377\377\333\343\342\377\377\333\343\342" \
+  "\377\377\333\343\342\377\377\333\343\342\377\377\333\343\342\377\377" \
+  "\333\343\342\377\377\333\343\342\377\377\333\343\342\377\377\333\343" \
+  "\342\377\377\333\343\342\377\377\333\343\342\377\377\333\343\342\377" \
+  "\377\333\343\342\377\377\333\343\342\377\377\333\343\342\377\377\333" \
+  "\343\342\377\377\333\343\342\377\377\333\343\342\377\377\333\343\342" \
+  "\377\377\333\343\342\377\377\333\343\342\377\331\333\343\342\377\5\327" \
+  "\340\337\377\314\327\325\377\306\323\320\377\321\333\331\377\332\342" \
+  "\341\377\377\333\343\342\377\206\333\343\342\377\1\276\311\307\377\202" \
+  "g~y\377\357\333\343\342\377\2\253\276\272\377\233\262\255\377\204\223" \
+  "\254\247\377\3\225\255\250\377\240\266\262\377\303\321\316\377\377\333" \
+  "\343\342\377\204\333\343\342\377\1\270\305\303\377\202Slg\377\357\333" \
+  "\343\342\377\11\231\260\254\377\223\254\247\377\243\271\264\377\267\307" \
+  "\304\377\277\316\313\377\256\301\275\377\232\261\255\377\223\254\247" \
+  "\377\271\311\306\377\377\333\343\342\377\204\333\343\342\377\1\270\305" \
+  "\303\377\202Slg\377\357\333\343\342\377\202\231\260\254\377\204\377\377" \
+  "\377\377\3\326\337\335\377\223\254\247\377\271\311\306\377\364\333\343" \
+  "\342\377\4\332\342\341\377\316\330\326\377\277\312\310\377\260\275\273" \
+  "\377\213\254\271\267\377\1\225\246\243\377\202Slg\377\357\333\343\342" \
+  "\377\202\231\260\254\377\204\377\377\377\377\3\326\337\335\377\223\254" \
+  "\247\377\271\311\306\377\362\333\343\342\377\3\266\302\300\377v\212\206" \
+  "\377Vni\377\221Slg\377\357\333\343\342\377\202\231\260\254\377\204\377" \
+  "\377\377\377\3\326\337\335\377\223\254\247\377\271\311\306\377\360\333" \
+  "\343\342\377\2\320\331\330\377n\204\200\377\224Slg\377\357\333\343\342" \
+  "\377\202\231\260\254\377\204\377\377\377\377\3\326\337\335\377\223\254" \
+  "\247\377\271\311\306\377\357\333\343\342\377\2\332\342\341\377x\215\211" \
+  "\377\225Slg\377\357\333\343\342\377\202\231\260\254\377\204\377\377\377" \
+  "\377\3\326\337\335\377\223\254\247\377\271\311\306\377\357\333\343\342" \
+  "\377\1\240\260\255\377\204Slg\377\4Uni\377s\210\203\377\177\222\217\377" \
+  "\213\235\231\377\213\222\243\240\377\1\202\225\221\377\202Slg\377\357" \
+  "\333\343\342\377\202\231\260\254\377\204\377\377\377\377\3\326\337\335" \
+  "\377\223\254\247\377\271\311\306\377\357\333\343\342\377\1{\217\213\377" \
+  "\203Slg\377\2\230\250\245\377\317\330\327\377\216\333\343\342\377\1\270" \
+  "\305\303\377\202Slg\377\357\333\343\342\377\202\231\260\254\377\204\377" \
+  "\377\377\377\3\326\337\335\377\223\254\247\377\271\311\306\377\357\333" \
+  "\343\342\377\1byt\377\202Slg\377\1\230\250\245\377\220\333\343\342\377" \
+  "\1\270\305\303\377\202Slg\377\357\333\343\342\377\202\231\260\254\377" \
+  "\204\377\377\377\377\3\326\337\335\377\223\254\247\377\271\311\306\377" \
+  "\356\333\343\342\377\1\324\335\334\377\203Slg\377\1\324\334\333\377\220" \
+  "\333\343\342\377\1\274\307\306\377\202_vr\377\357\333\343\342\377\202" \
+  "\231\260\254\377\204\377\377\377\377\3\326\337\335\377\223\254\247\377" \
+  "\271\311\306\377\356\333\343\342\377\4\332\342\341\377Xql\377Slg\377" \
+  "f|x\377\377\333\343\342\377\204\333\343\342\377\202\231\260\254\377\204" \
+  "\377\377\377\377\3\326\337\335\377\223\254\247\377\271\311\306\377\357" \
+  "\333\343\342\377\3n\204\200\377Slg\377_vr\377\377\333\343\342\377\204" \
+  "\333\343\342\377\202\231\260\254\377\204\377\377\377\377\3\326\337\335" \
+  "\377\223\254\247\377\271\311\306\377\357\333\343\342\377\1\243\262\257" \
+  "\377\202Slg\377\1\311\324\322\377\220\333\343\342\377\1\325\336\335\377" \
+  "\202\305\320\316\377\357\333\343\342\377\202\231\260\254\377\204\377" \
+  "\377\377\377\3\326\337\335\377\223\254\247\377\271\311\306\377\357\333" \
+  "\343\342\377\4\327\337\336\377dzv\377Slg\377\220\242\236\377\220\333" \
+  "\343\342\377\1\270\305\303\377\202Slg\377\357\333\343\342\377\202\231" \
+  "\260\254\377\204\377\377\377\377\3\326\337\335\377\223\254\247\377\271" \
+  "\311\306\377\360\333\343\342\377\4\307\321\320\377`ws\377Slg\377\240" \
+  "\260\255\377\217\333\343\342\377\1\270\305\303\377\202Slg\377\357\333" \
+  "\343\342\377\202\231\260\254\377\204\377\377\377\377\3\326\337\335\377" \
+  "\223\254\247\377\271\311\306\377\361\333\343\342\377\6\307\322\320\377" \
+  "u\211\205\377Slg\377m\202~\377\246\265\262\377\321\333\331\377\214\333" \
+  "\343\342\377\1\270\305\303\377\202Slg\377\357\333\343\342\377\202\231" \
+  "\260\254\377\204\377\377\377\377\3\326\337\335\377\223\254\247\377\271" \
+  "\311\306\377\362\333\343\342\377\2\332\342\341\377\213\235\231\377\203" \
+  "Slg\377\3Xpk\377f}x\377s\210\203\377\211t\211\205\377\1l\201}\377\202" \
+  "Slg\377\357\333\343\342\377\202\231\260\254\377\204\377\377\377\377\3" \
+  "\326\337\335\377\223\254\247\377\271\311\306\377\361\333\343\342\377" \
+  "\2\265\302\300\377i\177{\377\223Slg\377\357\333\343\342\377\202\231\260" \
+  "\254\377\204\377\377\377\377\3\326\337\335\377\223\254\247\377\271\311" \
+  "\306\377\360\333\343\342\377\2\255\272\270\377Uni\377\224Slg\377\357" \
+  "\333\343\342\377\202\231\260\254\377\204\377\377\377\377\3\326\337\335" \
+  "\377\223\254\247\377\271\311\306\377\357\333\343\342\377\2\316\327\326" \
+  "\377Wpk\377\225Slg\377\357\333\343\342\377\202\231\260\254\377\204\377" \
+  "\377\377\377\3\326\337\335\377\223\254\247\377\271\311\306\377\357\333" \
+  "\343\342\377\1\220\241\236\377\203Slg\377\5Woj\377\205\227\224\377\254" \
+  "\271\267\377\270\304\302\377\304\316\315\377\213\311\324\322\377\1\254" \
+  "\271\267\377\202Slg\377\357\333\343\342\377\202\231\260\254\377\204\377" \
+  "\377\377\377\3\326\337\335\377\223\254\247\377\271\311\306\377\357\333" \
+  "\343\342\377\1i\177{\377\202Slg\377\2dzv\377\316\327\326\377\217\333" \
+  "\343\342\377\1\270\305\303\377\202Slg\377\357\333\343\342\377\202\231" \
+  "\260\254\377\204\377\377\377\377\3\326\337\335\377\223\254\247\377\271" \
+  "\311\306\377\356\333\343\342\377\2\331\342\341\377Voj\377\202Slg\377" \
+  "\1\273\307\305\377\220\333\343\342\377\1\270\305\303\377\202Slg\377\357" \
+  "\333\343\342\377\3\241\267\262\377\223\254\247\377\363\366\365\377\203" \
+  "\377\377\377\377\3\304\321\317\377\223\254\247\377\301\317\314\377\356" \
+  "\333\343\342\377\1\324\335\334\377\202Slg\377\2Xpk\377\331\342\341\377" \
+  "\220\333\343\342\377\1\311\324\322\377\202\226\247\244\377\357\333\343" \
+  "\342\377\3\264\305\302\377\223\254\247\377\326\337\335\377\203\377\377" \
+  "\377\377\3\246\273\267\377\223\254\247\377\324\335\334\377\357\333\343" \
+  "\342\377\3_vr\377Slg\377i\177{\377\377\333\343\342\377\202\333\343\342" \
+  "\377\5\317\332\331\377\257\301\276\377\217\251\244\377\223\254\247\377" \
+  "\270\310\305\377\202\377\377\377\377\6\365\367\367\377\223\254\247\377" \
+  "\217\251\244\377\234\263\257\377\275\314\312\377\330\341\340\377\355" \
+  "\333\343\342\377\4\177\222\217\377Slg\377Vni\377\327\337\336\377\376" \
+  "\333\343\342\377\2\277\316\313\377\207\243\236\377\203o\221\212\377\7" \
+  "\221\253\246\377\233\262\256\377\376\376\376\377\377\377\377\377\330" \
+  "\341\337\377\223\254\247\377\202\237\231\377\202o\221\212\377\3t\225" \
+  "\216\377\234\263\257\377\322\334\333\377\353\333\343\342\377\1\277\313" \
+  "\311\377\202Slg\377\1\273\307\305\377\220\333\343\342\377\1\307\322\320" \
+  "\377\202\216\237\234\377\351\333\343\342\377\2\310\325\323\377\216\251" \
+  "\243\377\204o\221\212\377\10v\226\220\377\221\252\245\377\223\254\247" \
+  "\377\324\336\334\377\340\347\346\377\262\304\300\377\223\254\247\377" \
+  "\210\244\237\377\204o\221\212\377\3u\225\217\377\250\274\270\377\327" \
+  "\340\337\377\352\333\343\342\377\4\226\246\243\377Slg\377h\177z\377\321" \
+  "\333\331\377\217\333\343\342\377\1\270\305\303\377\202Slg\377\350\333" \
+  "\343\342\377\2\264\305\302\377q\223\214\377\202o\221\212\377\5q\223\214" \
+  "\377\233\263\256\377\300\317\314\377\331\342\340\377\273\312\307\377" \
+  "\204\223\254\247\377\5\225\255\250\377\330\341\337\377\321\333\332\377" \
+  "\261\303\277\377\206\243\235\377\203o\221\212\377\2\205\242\234\377\317" \
+  "\332\331\377\352\333\343\342\377\4\230\250\245\377Tmh\377q\206\202\377" \
+  "\276\311\307\377\216\333\343\342\377\1\270\305\303\377\202Slg\377\346" \
+  "\333\343\342\377\2\332\342\341\377\241\267\263\377\203o\221\212\377\2" \
+  "\227\257\253\377\315\331\327\377\203\333\343\342\377\1\321\333\332\377" \
+  "\204\262\303\300\377\1\272\312\307\377\204\333\343\342\377\2\270\310" \
+  "\306\377\177\235\227\377\202o\221\212\377\2z\231\222\377\304\322\320" \
+  "\377\347\333\343\342\377\1\317\330\327\377\202\301\314\312\377\10\247" \
+  "\266\263\377^vq\377Slg\377o\204\200\377\232\252\247\377\247\266\263\377" \
+  "\264\301\277\377\277\313\311\377\211\301\314\312\377\1\245\264\261\377" \
+  "\202Slg\377\346\333\343\342\377\1\236\265\260\377\202o\221\212\377\2" \
+  "t\225\216\377\273\313\310\377\220\333\343\342\377\2\327\340\337\377\225" \
+  "\256\251\377\202o\221\212\377\2t\225\216\377\310\325\323\377\346\333" \
+  "\343\342\377\1\233\253\250\377\226Slg\377\345\333\343\342\377\1\261\303" \
+  "\277\377\202o\221\212\377\2|\233\225\377\311\325\323\377\223\333\343" \
+  "\342\377\1\247\273\267\377\202o\221\212\377\2|\233\225\377\322\334\333" \
+  "\377\345\333\343\342\377\1\233\253\250\377\226Slg\377\344\333\343\342" \
+  "\377\5\304\321\317\377q\222\213\377o\221\212\377u\226\217\377\312\326" \
+  "\324\377\225\333\343\342\377\1\242\270\264\377\202o\221\212\377\2\211" \
+  "\244\237\377\332\342\341\377\344\333\343\342\377\1\233\253\250\377\226" \
+  "Slg\377\344\333\343\342\377\4\207\243\236\377o\221\212\377p\222\213\377" \
+  "\275\314\312\377\226\333\343\342\377\2\332\342\341\377\220\252\245\377" \
+  "\202o\221\212\377\1\264\305\302\377\344\333\343\342\377\3\233\253\250" \
+  "\377Slg\377\\so\377\221x\215\211\377\1o\204\200\377\202Slg\377\343\333" \
+  "\343\342\377\1\267\310\305\377\202o\221\212\377\1\237\265\261\377\230" \
+  "\333\343\342\377\5\324\336\334\377v\226\220\377o\221\212\377|\233\225" \
+  "\377\330\341\337\377\343\333\343\342\377\3\233\253\250\377Slg\377t\211" \
+  "\205\377\221\333\343\342\377\1\270\305\303\377\202Slg\377\342\333\343" \
+  "\342\377\5\332\342\341\377~\234\226\377o\221\212\377t\225\216\377\322" \
+  "\334\333\377\231\333\343\342\377\1\251\275\271\377\202o\221\212\377\1" \
+  "\255\300\275\377\343\333\343\342\377\3\233\253\250\377Slg\377t\211\205" \
+  "\377\221\333\343\342\377\1\270\305\303\377\202Slg\377\342\333\343\342" \
+  "\377\1\304\321\317\377\202o\221\212\377\1\245\272\266\377\232\333\343" \
+  "\342\377\4\327\340\337\377y\231\222\377o\221\212\377\207\243\236\377" \
+  "\343\333\343\342\377\3\233\253\250\377Slg\377t\211\205\377\221\333\343" \
+  "\342\377\1\270\305\303\377\202Slg\377\342\333\343\342\377\1\243\270\264" \
+  "\377\202o\221\212\377\1\314\327\325\377\233\333\343\342\377\1\234\263" \
+  "\257\377\202o\221\212\377\1\321\333\332\377\342\333\343\342\377\3\277" \
+  "\312\310\377\237\256\253\377\256\273\271\377\221\333\343\342\377\1\323" \
+  "\334\333\377\202\275\310\306\377\342\333\343\342\377\3\202\237\231\377" \
+  "o\221\212\377\201\236\230\377\234\333\343\342\377\1\276\315\312\377\202" \
+  "o\221\212\377\1\261\303\300\377\377\333\343\342\377\333\333\343\342\377" \
+  "\1\330\341\340\377\202o\221\212\377\1\234\263\256\377\234\333\343\342" \
+  "\377\1\330\341\337\377\202o\221\212\377\1\234\263\257\377\377\333\343" \
+  "\342\377\333\333\343\342\377\1\317\332\330\377\202o\221\212\377\1\250" \
+  "\274\270\377\235\333\343\342\377\3y\230\222\377o\221\212\377\222\254" \
+  "\246\377\377\333\343\342\377\333\333\343\342\377\1\304\322\320\377\202" \
+  "o\221\212\377\1\264\306\302\377\235\333\343\342\377\3\205\242\234\377" \
+  "o\221\212\377\207\243\236\377\350\333\343\342\3%s
>>> DIFF TRUNCATED @ 16K






More information about the Openembedded-commits mailing list