设置linux kernel 日志打印方法

 1.  先看linux kernel 对于debug 打印等级的定义,进入文件 cam_os_util_string.h


#ifndef KERN_SOH
#define KERN_SOH        "\001"          /* ASCII Start Of Header */
#endif

#ifndef KERN_EMERG
#define KERN_EMERG      KERN_SOH "0"    /* system is unusable */
#endif

#ifndef KERN_ALERT
#define KERN_ALERT      KERN_SOH "1"    /* action must be taken immediately */
#endif

#ifndef KERN_CRIT
#define KERN_CRIT       KERN_SOH "2"    /* critical conditions */
#endif

#ifndef KERN_ERR
#define KERN_ERR        KERN_SOH "3"    /* error conditions */
#endif

#ifndef KERN_WARNING
#define KERN_WARNING    KERN_SOH "4"    /* warning conditions */
#endif

#ifndef KERN_NOTICE
#define KERN_NOTICE     KERN_SOH "5"    /* normal but significant condition */
#endif

#ifndef KERN_INFO
#define KERN_INFO       KERN_SOH "6"    /* informational */
#endif

#ifndef KERN_DEBUG
#define KERN_DEBUG      KERN_SOH "7"    /* debug-level messages */
#endif

#endif //__CAM_OS_UTIL_STRING_H__

2. 设置打印等级

方法一,修改linux 启动参数,在bootargs 后面添加 loglevel=0。 (loglevel 取值范围 0~ 7)

console=ttyS0,115200 ubi.mtd=UBI,2048 root=ubi:rootfs rw rootfstype=ubifs init=/linuxrc loglevel=0 rootwait=1

方法二,系统起来之后,动态修改,进入命令行,输入

# 取值0 ~ 7
echo 0 > /proc/sys/kernel/printk

你可能感兴趣的:(Linux,SSD202,linux)