//编辑以下文件
vi target/allwinner/astar-parrot/base-files/etc/inittab //不同系统文件路径注意更改 //文件内容如下,注释::askconsole:/bin/ash --login这条内容 ::sysinit:/etc/init.d/rcS S boot ::shutdown:/etc/init.d/rcS K shutdown #::askconsole:/bin/ash --login //再次编译以下文件: vi package/base-files/files/etc/config/system //内容如下 config system option 'conloglevel' '1' //新加这条语句 option 'kconloglevel' '1' //新加这条语句 option hostname TinaLinux option timezone Asia/Shanghai option timezone CST-8 option log_file /root/.lastlog option log_size 512 option log_buffer_size 64 config timeserver ntp list server ntp5.aliyun.com list server 0.openwrt.pool.ntp.org list server 0.cn.pool.ntp.org option enable 1 option enable_server 0 config 'led' option 'name' 'red' option 'sysfs' 'led1' option 'brightness' '120' option 'trigger' 'timer'相关文章
- 10-10kubernetes云平台管理实战:分布式文件系统glusterfs(二十一)
- 10-10sae-xhprof调试性能
- 10-10树莓派4B—LCD触摸屏和硬件串口配置
- 10-10串口通信协议基本样式
- 10-10蓝桥杯嵌入式第十一届省赛模拟试题
- 10-10C51 (LCD模块调试工具及案例)
- 10-10用 Saleae Logic 16 示波器测量并分析 I2C、SPI、串口的信号
- 10-10rtt 在STM32F767上实现虚拟串口的问题
- 10-10【紫光同创国产FPGA教程】【第二十一章】AD9767双通道三角波产生例程
- 10-10【并发编程】线程池是否需要手动关闭吗?以Hutool中的线程池为例