逃离

决定不忍备案了,在境外找了服务器,但是。。。

为什么python版本那么老!! 2.3。。。

Read more...

Build Android Splash Screen

累了,搞点轻松的玩意。

convert -depth 8 splash.png rgb:splash.raw rgb2565 < splash.raw > splash.raw565

然后把splash.raw565烧入flash就好

fastboot flash splash1 splash.raw565
Read more...

Android Notes [system view]

android系统是一个典型的嵌入式linux,基础是linux kernel,整个android框架运行于一个称为dalvik的虚拟机之上,因此app是平台无关的,如果没有使用特殊的硬件,在armv6上运行的app可以直接放在android on mips中一致运行。事实上android为常用的硬件(gps,加速度感应等)提供了jni的接口,移植时只要重新把硬件操作包裹成.so供框架调用。

flash分为几个block:

boot存放kernel和ramdisk,dump出来后需要split_bootimg.pl或者unpack-H.pl来把两者分离出来。boot区的结构如下:

header中存放kernel和ramdisk的偏移信息:

unsigned kernel_size;  /* size in bytes / unsigned kernel_addr;  / physical load addr */

unsigned ramdisk_size; /* size in bytes / unsigned ramdisk_addr; / physical load addr */

unsigned second_size;  /* size in bytes / unsigned second_addr;  / physical load addr */

unsigned tags_addr;    /* physical addr for kernel tags / unsigned page_size;    / flash page size we assume / unsigned unused[2];    / future expansion: should be 0 */

Read more...

调通了啊

替换了linux的协议栈,总算跑通了一个数据包,加解密都没问题了,明天开会确定下一步方案。

Read more...

饭局归来

今天同科室聚餐,吃的不错,聊的很好,只是分了两桌所以交流圈小了些。

单板的初步调试也通了,之后就要同另一部分合并,争取赶在月底前完成。

^ω^

Read more...

总结之一

对路由和交换的部分兴趣不大,但还是得好好参与设计,只是苦于之前产品的设计文档不太全,努力寻找中。

linux的内核开发方面没搞啥新东西,只是把原来arm上做的事情移到mips上,好吧,其实还是会很不一样的,但那部分仍未开始。

总之处于很微妙的状态,不知道这个项目会进展到什么程度,会重新设计开发还是接续完善维护。。。

Read more...

ipsec相关的rfc

供方便查询

4301 Security Architecture for the Internet Protocol

4302 IP Authentication Header

4303 IP Encapsulating Security Payload (ESP)

4304 Extended Sequence Number (ESN) Addendum to IPsec Domain of Interpretation (DOI) for Internet Security Association and Key Management Protocol (ISAKMP)

4305 Cryptographic Algorithm Implementation Requirements for Encapsulating Security Payload (ESP) and Authentication Header (AH)

4306 Internet Key Exchange (IKEv2) Protocol

4307 Cryptographic Algorithms for Use in the Internet Key Exchange Version 2 (IKEv2)

Read more...

趁着没啥事换了硬盘

T61p的250G着实有些小了,换了个500G的,能够用一阵子了。 本来打算copy系统的,想着反正机器不慢就重装了。 换用了openrc,比起以前速度提升很多,满意。

Read more...

休整中

可以暂时抛开副业,昨天今天搞了下sam9261的板子。

先是移植了最新的内核,话说15到27的变动真是不少,api change有8、9页。。。不过代码结构清晰了些。

接着是做rootfs,oe有了不少更新,正好重新编译,顺便把目录结构弄得合理些。

qt-embedded 4.4的移植很顺利,gui在lcd上运行良好。只是尝试移植qtopia 4.3的时候不太走运,程序大致可以正常运行,但是lcd花屏,似乎是qtopia用了极低的色彩深度,原因未知。。。

Read more...