2015年4月7日 星期二

Enable kcs debug for OpenIPMI driver

可以透過下列的方式打開kcs debug...
echo 7 > /sys/module/ipmi_si/parameters/kcs_debug

即可在dmesg看到kcs state, 包含兩個數字

第一個數字為driver定義的kcs state:

2015年3月16日 星期一

[Linux]Change the baudrate while uncompressing Linux.

Edit the below source file  and change the BAUD_RATE.

linux/arch/arm/include/asm/soc-ast2400/lowlevel_serial.h


2015年3月12日 星期四

OpenBMC study

1. 如果遇到下面header file找不到__NR_setns的問題,可以把該header file後半部#if 0掉。

/poky/build/tmp/work/x86_64-linux/util-linux-native/2.24.1-r0/util-linux-2.24.1/include/namespace.h


2. 如果想改掉default root's password ('0penBmc'),可以到下面的路徑去做修改。
poky/build/conf/local.conf

3. OpenBMC沒有支援nfs protocol,但可以使用tftp方式把改好的tool/demand丟到/mnt/data (jffs2 rw)或者/(rootfs rw)下面去執行。

4. ipmid是處理IPMI request的main task,透過UNIX socket,聆聽來自/tmp/ipmi_socket的request。

2014年12月25日 星期四

Add some file into /conf

1. Copy the files into "source/sys_defaultcfg-1.0.0-src/data/defaults/etc/defconfig"

or

2. Copy the files into source/sys_base-2.159.0-src/data/defaults/etc/defconfig/

[Linux]mount the jffs2 image.

modprobe jffs2;modprobe mtdram;modprobe mtdchar;modprobe mtdblock

dd if=conf.bin of=/dev/mtd0
mount -t jffs2 /dev/mtdblock0 /media

2014年10月7日 星期二

[Linux]使用dd清除raid config

 RAID的config通常是放在最後一個cylinder上的

dd if=/dev/zero of=/dev/sdb bs=100MB seek=4990

資訊來源: http://www.pczone.com.tw/vbb3/archive/t-151980.html

2014年9月2日 星期二