Raspberry-Pi-config

boot config introduction

  1. raspberrypi.org > configuration

    Configuration

    Some basic guides to configuring your Raspberry Pi.

    Contents

  2. Raspberry-Pi-config
  3. raspberrypi issues in stackexchange
  4. 树莓派 cmdline.txt 内核参数命令
    • console:定义串行控制台,通常有两项:
      • console=serial0,115200
      • console=tty1
    • root:定义根文件系统的位置,例如root=/dev/mmcblk0p2表示多媒体卡块0分区2。
    • rootfstype:定义rootfs使用的文件系统类型,例如rootfstype=ext4
    • elevator:指定要使用的I/O调度程序。elevator=deadline意味着内核对所有I/O操作施加一个截止日期,以防止请求耗尽。
    • quiet:将默认内核日志级别设置为KERN_WARNING,这将在引导期间抑制除非常严重的日志消息之外的所有日志消息。
    • splash:告诉引导程序通过Plymouth模块使用splash screen。
    • plymouth.ignore_serial_console
    • dwc_otg.lpm_enable:在dwc_otg (On the Go)驱动程序中关闭LPM。
    • dwc_otg.speed:设置USB属性的速度。dwc_otg.speed=1将设置为USBv1.0 speed。
    • smsc95xx.turbo_mode:启用/禁用有线网络驱动程序涡轮模式。smsc95xx.turbo_mode=N关闭涡轮模式。
    • usbhid.mousepoll:指定鼠标轮询间隔。如果您遇到无线鼠标速度慢或不稳定的问题,将其设置为0可能会有所帮助:usbhid.mousepoll=0。
  5. RPi cmdline.txt

    This file is for passing arguments to the Linux kernel and it can be found in /boot/

boot config operation/操作