<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Jonny Zone : Copyleft - all rights reversed</title>
	<atom:link href="http://acassis.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://acassis.wordpress.com</link>
	<description>a blog about computers and other funny things</description>
	<lastBuildDate>Thu, 05 Nov 2009 18:20:49 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<cloud domain='acassis.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://www.gravatar.com/blavatar/99799b691f0e64c449ffe068dff64241?s=96&#038;d=http://s.wordpress.com/i/buttonw-com.png</url>
		<title>Jonny Zone : Copyleft - all rights reversed</title>
		<link>http://acassis.wordpress.com</link>
	</image>
			<item>
		<title>Recovering BIOS Password</title>
		<link>http://acassis.wordpress.com/2009/11/05/recovering-bios-password/</link>
		<comments>http://acassis.wordpress.com/2009/11/05/recovering-bios-password/#comments</comments>
		<pubDate>Thu, 05 Nov 2009 18:20:49 +0000</pubDate>
		<dc:creator>acassis</dc:creator>
				<category><![CDATA[Dicas]]></category>

		<guid isPermaLink="false">http://acassis.wordpress.com/2009/11/05/recovering-bios-password/</guid>
		<description><![CDATA[You can recover BIOS password directly from CMOS without reset BIOS.
Just use CmosPwd:
http://www.cgsecurity.org/wiki/CmosPwd
       <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=acassis.wordpress.com&blog=1286908&post=1340&subd=acassis&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>You can recover BIOS password directly from CMOS without reset BIOS.</p>
<p>Just use CmosPwd:</p>
<p><a href="http://www.cgsecurity.org/wiki/CmosPwd">http://www.cgsecurity.org/wiki/CmosPwd</a></p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/acassis.wordpress.com/1340/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/acassis.wordpress.com/1340/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/acassis.wordpress.com/1340/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/acassis.wordpress.com/1340/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/acassis.wordpress.com/1340/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/acassis.wordpress.com/1340/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/acassis.wordpress.com/1340/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/acassis.wordpress.com/1340/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/acassis.wordpress.com/1340/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/acassis.wordpress.com/1340/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=acassis.wordpress.com&blog=1286908&post=1340&subd=acassis&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://acassis.wordpress.com/2009/11/05/recovering-bios-password/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/6658c541fb27e86516f7ed746d1e8ad0?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">acassis</media:title>
		</media:content>
	</item>
		<item>
		<title>Creating an error number table</title>
		<link>http://acassis.wordpress.com/2009/10/29/creating-an-error-number-table/</link>
		<comments>http://acassis.wordpress.com/2009/10/29/creating-an-error-number-table/#comments</comments>
		<pubDate>Thu, 29 Oct 2009 11:28:07 +0000</pubDate>
		<dc:creator>acassis</dc:creator>
				<category><![CDATA[Dicas]]></category>

		<guid isPermaLink="false">http://acassis.wordpress.com/?p=1336</guid>
		<description><![CDATA[I concatenate include/asm-generic/errno-base.h and include/asm-generic/errno.h, printed it the result file and place it at front on my desk.
This is the result file:
/*   Error Name &#124; Error Number &#124; Error Description */
#define	EPERM		 1	/* Operation not permitted */
#define	ENOENT		 2	/* No such file or directory */
#define	ESRCH		 3	/* No such process */
#define	EINTR		 4	/* Interrupted system call */
#define	EIO		 [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=acassis.wordpress.com&blog=1286908&post=1336&subd=acassis&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>I concatenate include/asm-generic/errno-base.h and include/asm-generic/errno.h, printed it the result file and place it at front on my desk.</p>
<p>This is the result file:</p>
<p>/*   Error Name | Error Number | Error Description */</p>
<p>#define	EPERM		 1	/* Operation not permitted */<br />
#define	ENOENT		 2	/* No such file or directory */<br />
#define	ESRCH		 3	/* No such process */<br />
#define	EINTR		 4	/* Interrupted system call */<br />
#define	EIO		 5	/* I/O error */<br />
#define	ENXIO		 6	/* No such device or address */<br />
#define	E2BIG		 7	/* Argument list too long */<br />
#define	ENOEXEC		 8	/* Exec format error */<br />
#define	EBADF		 9	/* Bad file number */<br />
#define	ECHILD		10	/* No child processes */<br />
#define	EAGAIN		11	/* Try again */<br />
#define	ENOMEM		12	/* Out of memory */<br />
#define	EACCES		13	/* Permission denied */<br />
#define	EFAULT		14	/* Bad address */<br />
#define	ENOTBLK		15	/* Block device required */<br />
#define	EBUSY		16	/* Device or resource busy */<br />
#define	EEXIST		17	/* File exists */<br />
#define	EXDEV		18	/* Cross-device link */<br />
#define	ENODEV		19	/* No such device */<br />
#define	ENOTDIR		20	/* Not a directory */<br />
#define	EISDIR		21	/* Is a directory */<br />
#define	EINVAL		22	/* Invalid argument */<br />
#define	ENFILE		23	/* File table overflow */<br />
#define	EMFILE		24	/* Too many open files */<br />
#define	ENOTTY		25	/* Not a typewriter */<br />
#define	ETXTBSY		26	/* Text file busy */<br />
#define	EFBIG		27	/* File too large */<br />
#define	ENOSPC		28	/* No space left on device */<br />
#define	ESPIPE		29	/* Illegal seek */<br />
#define	EROFS		30	/* Read-only file system */<br />
#define	EMLINK		31	/* Too many links */<br />
#define	EPIPE		32	/* Broken pipe */<br />
#define	EDOM		33	/* Math argument out of domain of func */<br />
#define	ERANGE		34	/* Math result not representable */<br />
#define	EDEADLK		35	/* Resource deadlock would occur */<br />
#define	ENAMETOOLONG	36	/* File name too long */<br />
#define	ENOLCK		37	/* No record locks available */<br />
#define	ENOSYS		38	/* Function not implemented */<br />
#define	ENOTEMPTY	39	/* Directory not empty */<br />
#define	ELOOP		40	/* Too many symbolic links encountered */<br />
#define	EWOULDBLOCK	EAGAIN	/* Operation would block */<br />
#define	ENOMSG		42	/* No message of desired type */<br />
#define	EIDRM		43	/* Identifier removed */<br />
#define	ECHRNG		44	/* Channel number out of range */<br />
#define	EL2NSYNC	45	/* Level 2 not synchronized */<br />
#define	EL3HLT		46	/* Level 3 halted */<br />
#define	EL3RST		47	/* Level 3 reset */<br />
#define	ELNRNG		48	/* Link number out of range */<br />
#define	EUNATCH		49	/* Protocol driver not attached */<br />
#define	ENOCSI		50	/* No CSI structure available */<br />
#define	EL2HLT		51	/* Level 2 halted */<br />
#define	EBADE		52	/* Invalid exchange */<br />
#define	EBADR		53	/* Invalid request descriptor */<br />
#define	EXFULL		54	/* Exchange full */<br />
#define	ENOANO		55	/* No anode */<br />
#define	EBADRQC		56	/* Invalid request code */<br />
#define	EBADSLT		57	/* Invalid slot */<br />
#define	EDEADLOCK	EDEADLK<br />
#define	EBFONT		59	/* Bad font file format */<br />
#define	ENOSTR		60	/* Device not a stream */<br />
#define	ENODATA		61	/* No data available */<br />
#define	ETIME		62	/* Timer expired */<br />
#define	ENOSR		63	/* Out of streams resources */<br />
#define	ENONET		64	/* Machine is not on the network */<br />
#define	ENOPKG		65	/* Package not installed */<br />
#define	EREMOTE		66	/* Object is remote */<br />
#define	ENOLINK		67	/* Link has been severed */<br />
#define	EADV		68	/* Advertise error */<br />
#define	ESRMNT		69	/* Srmount error */<br />
#define	ECOMM		70	/* Communication error on send */<br />
#define	EPROTO		71	/* Protocol error */<br />
#define	EMULTIHOP	72	/* Multihop attempted */<br />
#define	EDOTDOT		73	/* RFS specific error */<br />
#define	EBADMSG		74	/* Not a data message */<br />
#define	EOVERFLOW	75	/* Value too large for defined data type */<br />
#define	ENOTUNIQ	76	/* Name not unique on network */<br />
#define	EBADFD		77	/* File descriptor in bad state */<br />
#define	EREMCHG		78	/* Remote address changed */<br />
#define	ELIBACC		79	/* Can not access a needed shared library */<br />
#define	ELIBBAD		80	/* Accessing a corrupted shared library */<br />
#define	ELIBSCN		81	/* .lib section in a.out corrupted */<br />
#define	ELIBMAX		82	/* Attempting to link in too many shared libraries */<br />
#define	ELIBEXEC	83	/* Cannot exec a shared library directly */<br />
#define	EILSEQ		84	/* Illegal byte sequence */<br />
#define	ERESTART	85	/* Interrupted system call should be restarted */<br />
#define	ESTRPIPE	86	/* Streams pipe error */<br />
#define	EUSERS		87	/* Too many users */<br />
#define	ENOTSOCK	88	/* Socket operation on non-socket */<br />
#define	EDESTADDRREQ	89	/* Destination address required */<br />
#define	EMSGSIZE	90	/* Message too long */<br />
#define	EPROTOTYPE	91	/* Protocol wrong type for socket */<br />
#define	ENOPROTOOPT	92	/* Protocol not available */<br />
#define	EPROTONOSUPPORT	93	/* Protocol not supported */<br />
#define	ESOCKTNOSUPPORT	94	/* Socket type not supported */<br />
#define	EOPNOTSUPP	95	/* Operation not supported on transport endpoint */<br />
#define	EPFNOSUPPORT	96	/* Protocol family not supported */<br />
#define	EAFNOSUPPORT	97	/* Address family not supported by protocol */<br />
#define	EADDRINUSE	98	/* Address already in use */<br />
#define	EADDRNOTAVAIL	99	/* Cannot assign requested address */<br />
#define	ENETDOWN	100	/* Network is down */<br />
#define	ENETUNREACH	101	/* Network is unreachable */<br />
#define	ENETRESET	102	/* Network dropped connection because of reset */<br />
#define	ECONNABORTED	103	/* Software caused connection abort */<br />
#define	ECONNRESET	104	/* Connection reset by peer */<br />
#define	ENOBUFS		105	/* No buffer space available */<br />
#define	EISCONN		106	/* Transport endpoint is already connected */<br />
#define	ENOTCONN	107	/* Transport endpoint is not connected */<br />
#define	ESHUTDOWN	108	/* Cannot send after transport endpoint shutdown */<br />
#define	ETOOMANYREFS	109	/* Too many references: cannot splice */<br />
#define	ETIMEDOUT	110	/* Connection timed out */<br />
#define	ECONNREFUSED	111	/* Connection refused */<br />
#define	EHOSTDOWN	112	/* Host is down */<br />
#define	EHOSTUNREACH	113	/* No route to host */<br />
#define	EALREADY	114	/* Operation already in progress */<br />
#define	EINPROGRESS	115	/* Operation now in progress */<br />
#define	ESTALE		116	/* Stale NFS file handle */<br />
#define	EUCLEAN		117	/* Structure needs cleaning */<br />
#define	ENOTNAM		118	/* Not a XENIX named type file */<br />
#define	ENAVAIL		119	/* No XENIX semaphores available */<br />
#define	EISNAM		120	/* Is a named type file */<br />
#define	EREMOTEIO	121	/* Remote I/O error */<br />
#define	EDQUOT		122	/* Quota exceeded */<br />
#define	ENOMEDIUM	123	/* No medium found */<br />
#define	EMEDIUMTYPE	124	/* Wrong medium type */<br />
#define	ECANCELED	125	/* Operation Canceled */<br />
#define	ENOKEY		126	/* Required key not available */<br />
#define	EKEYEXPIRED	127	/* Key has expired */<br />
#define	EKEYREVOKED	128	/* Key has been revoked */<br />
#define	EKEYREJECTED	129	/* Key was rejected by service */<br />
#define	EOWNERDEAD	130	/* Owner died */<br />
#define	ENOTRECOVERABLE	131	/* State not recoverable */</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/acassis.wordpress.com/1336/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/acassis.wordpress.com/1336/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/acassis.wordpress.com/1336/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/acassis.wordpress.com/1336/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/acassis.wordpress.com/1336/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/acassis.wordpress.com/1336/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/acassis.wordpress.com/1336/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/acassis.wordpress.com/1336/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/acassis.wordpress.com/1336/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/acassis.wordpress.com/1336/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=acassis.wordpress.com&blog=1286908&post=1336&subd=acassis&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://acassis.wordpress.com/2009/10/29/creating-an-error-number-table/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/6658c541fb27e86516f7ed746d1e8ad0?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">acassis</media:title>
		</media:content>
	</item>
		<item>
		<title>Soldering BGA chips</title>
		<link>http://acassis.wordpress.com/2009/10/28/soldering-bga-chips/</link>
		<comments>http://acassis.wordpress.com/2009/10/28/soldering-bga-chips/#comments</comments>
		<pubDate>Wed, 28 Oct 2009 16:24:51 +0000</pubDate>
		<dc:creator>acassis</dc:creator>
				<category><![CDATA[Dicas]]></category>

		<guid isPermaLink="false">http://acassis.wordpress.com/?p=1328</guid>
		<description><![CDATA[Here in our company we have a guy who solder BGA chips frequently. First here remove all excess of sold from the board, then he place thermical tape around the component to protect components near it. Then he place pasty flux on the board, place the component over it and use the &#8220;Steinel Type 3483 [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=acassis.wordpress.com&blog=1286908&post=1328&subd=acassis&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Here in our company we have a guy who solder BGA chips frequently. First here remove all excess of sold from the board, then he place thermical tape around the component to protect components near it. Then he place pasty flux on the board, place the component over it and use the &#8220;Steinel Type 3483 Programmable Heat Gun&#8221; to heat and melt the solder.</p>
<p>For lead free solder he uses 490C and to solder with lead he uses 350C.</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/acassis.wordpress.com/1328/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/acassis.wordpress.com/1328/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/acassis.wordpress.com/1328/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/acassis.wordpress.com/1328/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/acassis.wordpress.com/1328/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/acassis.wordpress.com/1328/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/acassis.wordpress.com/1328/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/acassis.wordpress.com/1328/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/acassis.wordpress.com/1328/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/acassis.wordpress.com/1328/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=acassis.wordpress.com&blog=1286908&post=1328&subd=acassis&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://acassis.wordpress.com/2009/10/28/soldering-bga-chips/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/6658c541fb27e86516f7ed746d1e8ad0?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">acassis</media:title>
		</media:content>
	</item>
		<item>
		<title>Hacking linux kernel to bypass platform ID</title>
		<link>http://acassis.wordpress.com/2009/10/25/hacking-linux-kernel-to-bypass-platform-id/</link>
		<comments>http://acassis.wordpress.com/2009/10/25/hacking-linux-kernel-to-bypass-platform-id/#comments</comments>
		<pubDate>Sun, 25 Oct 2009 12:31:18 +0000</pubDate>
		<dc:creator>acassis</dc:creator>
				<category><![CDATA[Dicas]]></category>

		<guid isPermaLink="false">http://acassis.wordpress.com/?p=1325</guid>
		<description><![CDATA[I edited arch/arm/kernel/head.S
ENTRY(stext)
+        mov r0, #0
+        mov r1, #400
+        add r1, r1, #400
+        add r1, r1, #46
+        ldr r2, =0xa0000100
I [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=acassis.wordpress.com&blog=1286908&post=1325&subd=acassis&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>I edited arch/arm/kernel/head.S</p>
<p>ENTRY(stext)<br />
+        mov r0, #0<br />
+        mov r1, #400<br />
+        add r1, r1, #400<br />
+        add r1, r1, #46<br />
+        ldr r2, =0xa0000100</p>
<p>I do this way because I was getting issues when using &#8220;mov r1, #846&#8243; or &#8220;mov r1, #0&#215;34e</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/acassis.wordpress.com/1325/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/acassis.wordpress.com/1325/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/acassis.wordpress.com/1325/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/acassis.wordpress.com/1325/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/acassis.wordpress.com/1325/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/acassis.wordpress.com/1325/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/acassis.wordpress.com/1325/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/acassis.wordpress.com/1325/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/acassis.wordpress.com/1325/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/acassis.wordpress.com/1325/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=acassis.wordpress.com&blog=1286908&post=1325&subd=acassis&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://acassis.wordpress.com/2009/10/25/hacking-linux-kernel-to-bypass-platform-id/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/6658c541fb27e86516f7ed746d1e8ad0?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">acassis</media:title>
		</media:content>
	</item>
		<item>
		<title>Hacking Linux Kernel printk to show early messages</title>
		<link>http://acassis.wordpress.com/2009/10/25/hacking-linux-kernel-printk-to-show-early-messages/</link>
		<comments>http://acassis.wordpress.com/2009/10/25/hacking-linux-kernel-printk-to-show-early-messages/#comments</comments>
		<pubDate>Sun, 25 Oct 2009 12:24:41 +0000</pubDate>
		<dc:creator>acassis</dc:creator>
				<category><![CDATA[Dicas]]></category>

		<guid isPermaLink="false">http://acassis.wordpress.com/?p=1323</guid>
		<description><![CDATA[Use this tip to print early kernel messages (DEBUG_LL needs be selected on kernel):
http://mailman.uclinux.org/pipermail/uclinux-dev/2009-August/001301.html
       <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=acassis.wordpress.com&blog=1286908&post=1323&subd=acassis&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Use this tip to print early kernel messages (DEBUG_LL needs be selected on kernel):<br />
http://mailman.uclinux.org/pipermail/uclinux-dev/2009-August/001301.html</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/acassis.wordpress.com/1323/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/acassis.wordpress.com/1323/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/acassis.wordpress.com/1323/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/acassis.wordpress.com/1323/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/acassis.wordpress.com/1323/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/acassis.wordpress.com/1323/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/acassis.wordpress.com/1323/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/acassis.wordpress.com/1323/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/acassis.wordpress.com/1323/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/acassis.wordpress.com/1323/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=acassis.wordpress.com&blog=1286908&post=1323&subd=acassis&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://acassis.wordpress.com/2009/10/25/hacking-linux-kernel-printk-to-show-early-messages/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/6658c541fb27e86516f7ed746d1e8ad0?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">acassis</media:title>
		</media:content>
	</item>
		<item>
		<title>Debugging The Linux Kernel</title>
		<link>http://acassis.wordpress.com/2009/10/24/debugging-the-linux-kernel/</link>
		<comments>http://acassis.wordpress.com/2009/10/24/debugging-the-linux-kernel/#comments</comments>
		<pubDate>Sat, 24 Oct 2009 21:49:13 +0000</pubDate>
		<dc:creator>acassis</dc:creator>
				<category><![CDATA[Dicas]]></category>

		<guid isPermaLink="false">http://acassis.wordpress.com/?p=1321</guid>
		<description><![CDATA[You can debug Linux kernel using JTAG, this non-intrusive debug mode is explained here:
http://www.elinux.org/DebuggingTheLinuxKernelUsingGdb
I am looking forward to test it in our new device powered by an ARM9!
       <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=acassis.wordpress.com&blog=1286908&post=1321&subd=acassis&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>You can debug Linux kernel using JTAG, this non-intrusive debug mode is explained here:</p>
<p><a href="http://www.elinux.org/DebuggingTheLinuxKernelUsingGdb">http://www.elinux.org/DebuggingTheLinuxKernelUsingGdb</a></p>
<p>I am looking forward to test it in our new device powered by an ARM9!</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/acassis.wordpress.com/1321/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/acassis.wordpress.com/1321/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/acassis.wordpress.com/1321/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/acassis.wordpress.com/1321/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/acassis.wordpress.com/1321/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/acassis.wordpress.com/1321/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/acassis.wordpress.com/1321/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/acassis.wordpress.com/1321/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/acassis.wordpress.com/1321/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/acassis.wordpress.com/1321/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=acassis.wordpress.com&blog=1286908&post=1321&subd=acassis&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://acassis.wordpress.com/2009/10/24/debugging-the-linux-kernel/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/6658c541fb27e86516f7ed746d1e8ad0?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">acassis</media:title>
		</media:content>
	</item>
		<item>
		<title>Transfering file to U-Boot over serial</title>
		<link>http://acassis.wordpress.com/2009/10/23/transfering-file-to-u-boot-over-serial/</link>
		<comments>http://acassis.wordpress.com/2009/10/23/transfering-file-to-u-boot-over-serial/#comments</comments>
		<pubDate>Fri, 23 Oct 2009 22:56:16 +0000</pubDate>
		<dc:creator>acassis</dc:creator>
				<category><![CDATA[Dicas]]></category>

		<guid isPermaLink="false">http://acassis.wordpress.com/?p=1318</guid>
		<description><![CDATA[If you are using &#8220;minicom&#8221; to communicate with U-Boot and want to transfer Linux kernel image over serial you should first install lrzsz package:

$ sudo apt-get install lrzsz

Then on minicom issue this command on U-Boot prompt:

=&#62; loady
## Ready for binary (ymodem) download to 0xA0800000 at 115200 bps...
C

Now press Ctrl + A, then release keyboard and [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=acassis.wordpress.com&blog=1286908&post=1318&subd=acassis&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>If you are using &#8220;minicom&#8221; to communicate with U-Boot and want to transfer Linux kernel image over serial you should first install lrzsz package:</p>
<pre>
$ sudo apt-get install lrzsz
</pre>
<p>Then on minicom issue this command on U-Boot prompt:</p>
<pre>
=&gt; loady
## Ready for binary (ymodem) download to 0xA0800000 at 115200 bps...
C
</pre>
<p>Now press Ctrl + A, then release keyboard and press S. It will show a text window to select what protocol to use, then select ymodem. Now select a file to upload (press Space) and press Enter to confirm.</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/acassis.wordpress.com/1318/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/acassis.wordpress.com/1318/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/acassis.wordpress.com/1318/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/acassis.wordpress.com/1318/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/acassis.wordpress.com/1318/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/acassis.wordpress.com/1318/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/acassis.wordpress.com/1318/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/acassis.wordpress.com/1318/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/acassis.wordpress.com/1318/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/acassis.wordpress.com/1318/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=acassis.wordpress.com&blog=1286908&post=1318&subd=acassis&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://acassis.wordpress.com/2009/10/23/transfering-file-to-u-boot-over-serial/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/6658c541fb27e86516f7ed746d1e8ad0?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">acassis</media:title>
		</media:content>
	</item>
		<item>
		<title>U-Boot Error: undefined reference to `eth_send&#8217;</title>
		<link>http://acassis.wordpress.com/2009/10/23/u-boot-error-undefined-reference-to-eth_send/</link>
		<comments>http://acassis.wordpress.com/2009/10/23/u-boot-error-undefined-reference-to-eth_send/#comments</comments>
		<pubDate>Fri, 23 Oct 2009 21:55:07 +0000</pubDate>
		<dc:creator>acassis</dc:creator>
				<category><![CDATA[Dicas]]></category>

		<guid isPermaLink="false">http://acassis.wordpress.com/?p=1315</guid>
		<description><![CDATA[To solve that error just define:
#define CONFIG_MII
#define CONFIG_NET_MULTI
Obviously you need also to select Ethernet chip used on your board.
       <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=acassis.wordpress.com&blog=1286908&post=1315&subd=acassis&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>To solve that error just define:</p>
<p>#define CONFIG_MII<br />
#define CONFIG_NET_MULTI</p>
<p>Obviously you need also to select Ethernet chip used on your board.</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/acassis.wordpress.com/1315/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/acassis.wordpress.com/1315/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/acassis.wordpress.com/1315/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/acassis.wordpress.com/1315/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/acassis.wordpress.com/1315/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/acassis.wordpress.com/1315/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/acassis.wordpress.com/1315/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/acassis.wordpress.com/1315/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/acassis.wordpress.com/1315/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/acassis.wordpress.com/1315/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=acassis.wordpress.com&blog=1286908&post=1315&subd=acassis&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://acassis.wordpress.com/2009/10/23/u-boot-error-undefined-reference-to-eth_send/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/6658c541fb27e86516f7ed746d1e8ad0?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">acassis</media:title>
		</media:content>
	</item>
		<item>
		<title>Removing password from PDF files</title>
		<link>http://acassis.wordpress.com/2009/10/22/removing-password-from-pdf-files/</link>
		<comments>http://acassis.wordpress.com/2009/10/22/removing-password-from-pdf-files/#comments</comments>
		<pubDate>Thu, 22 Oct 2009 10:49:59 +0000</pubDate>
		<dc:creator>acassis</dc:creator>
				<category><![CDATA[Dicas]]></category>

		<guid isPermaLink="false">http://acassis.wordpress.com/?p=1313</guid>
		<description><![CDATA[http://www.accesspdf.com/pdftk/
       <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=acassis.wordpress.com&blog=1286908&post=1313&subd=acassis&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>http://www.accesspdf.com/pdftk/</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/acassis.wordpress.com/1313/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/acassis.wordpress.com/1313/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/acassis.wordpress.com/1313/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/acassis.wordpress.com/1313/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/acassis.wordpress.com/1313/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/acassis.wordpress.com/1313/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/acassis.wordpress.com/1313/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/acassis.wordpress.com/1313/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/acassis.wordpress.com/1313/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/acassis.wordpress.com/1313/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=acassis.wordpress.com&blog=1286908&post=1313&subd=acassis&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://acassis.wordpress.com/2009/10/22/removing-password-from-pdf-files/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/6658c541fb27e86516f7ed746d1e8ad0?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">acassis</media:title>
		</media:content>
	</item>
		<item>
		<title>Webkit error: webkit/@basename@: No &gt;&gt;&gt;&gt; such file or directory &gt;&gt;&gt;&gt;</title>
		<link>http://acassis.wordpress.com/2009/10/21/webkit-error-webkitbasename-no-such-file-or-directory/</link>
		<comments>http://acassis.wordpress.com/2009/10/21/webkit-error-webkitbasename-no-such-file-or-directory/#comments</comments>
		<pubDate>Wed, 21 Oct 2009 16:44:52 +0000</pubDate>
		<dc:creator>acassis</dc:creator>
				<category><![CDATA[Dicas]]></category>

		<guid isPermaLink="false">http://acassis.wordpress.com/?p=1311</guid>
		<description><![CDATA[To solve this problem just update &#8220;glib-mkenums&#8221; binary to new glib version.
       <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=acassis.wordpress.com&blog=1286908&post=1311&subd=acassis&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>To solve this problem just update &#8220;glib-mkenums&#8221; binary to new glib version.</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/acassis.wordpress.com/1311/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/acassis.wordpress.com/1311/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/acassis.wordpress.com/1311/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/acassis.wordpress.com/1311/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/acassis.wordpress.com/1311/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/acassis.wordpress.com/1311/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/acassis.wordpress.com/1311/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/acassis.wordpress.com/1311/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/acassis.wordpress.com/1311/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/acassis.wordpress.com/1311/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=acassis.wordpress.com&blog=1286908&post=1311&subd=acassis&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://acassis.wordpress.com/2009/10/21/webkit-error-webkitbasename-no-such-file-or-directory/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/6658c541fb27e86516f7ed746d1e8ad0?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">acassis</media:title>
		</media:content>
	</item>
	</channel>
</rss>