Questions tagged «init»

2
自定义Raspbian映像无法通过“找不到初始化”启动
我正在使用debootstrap构建Raspbian的自定义SD映像,并且生成的映像无法Kernel panic - not syncing: No init found.在我的Raspberry Pi和qemu下启动。我可以在两者上成功启动2012-07-15-wheezy-raspbian映像(尽管在Pi上使用不同的SD卡)。对于qemu,我正在使用XEC Design中的内核。 % qemu-system-arm -M versatilepb -cpu arm1136 -kernel /usr/local/share/qemu/kernel-qemu -m 256 -drive file=raspbian3.img -serial stdio -append "dwc_otg.lpm_enable=0 console=ttyAMA0,115200 kgdboc=tty1,115200 console=tty1 root=/dev/sda2 elevator=noop" ... EXT3-fs (sda2): error: couldn't mount because of unsupported optional features (240) EXT2-fs (sda2): error: couldn't mount because of …
11 raspbian  boot  setup  image  init 

3
如何从头开始为Raspberry pi构建自定义操作系统?
我是内核和嵌入式Linux的新手。我最近购买了Raspberry Pi,并使用Raspbian启动了它。Pi令我着迷,要了解有关嵌入式的更多信息,我决定制作一个家庭自动化系统。我想使用自己的内核和堆栈。即我不想使用任何操作系统。 为此,我从官方github下载了内核,target_fs,固件和工具链。我已经使用工具链编译了内核。 现在我不知道如何将其放入新的sdcard(格式化为全新的开始)。在启动我的堆栈之前,我需要注意什么?由于我还没有使用ssh或telnet服务器/客户端,所以我怎么知道启动成功。在哪里可以为pi获取ssh / telnet守护进程?我的目标是仅引导Raspberry Pi中的内核(或最低限度)。

3
初始化如何了解电源事件?
我有一个Pi Model B Rev 2.0(我认为),我打算将其用于家庭自动化系统。由于我的电源上有一个预付费电表,因此我偶尔会用尽电子来绕过我家的主电源! 为避免出现问题,我获得了由PiModules制造的UPis Basic形式的UPS 。我已经对其进行了配置,以便可以通过Pi自己的串行端口(不是默认配置,而是手册中记录的受支持的设置)轮询电源电压。 目前,它使用专用的GPIO引脚(我相信插头上的引脚13为GPIO27),内置微控制器使用shutdown -h now该引脚,并从rc.local运行python脚本来告诉Pi 该引脚何时变为低电平-如果按下UPS“关机”按钮,或者在主电源出现故障时电池电源严重不足,就会发生这种情况。作为记录,脚本是: #!/usr/bin/python # import the libraries to use time delays, send os commands and access GPIO pins import PRi.GPIO as GPIO import time import os GPIO.setmode(GPIO.BCM) # Set pin numbering to board numbering GPIO.setup(27, GPIO.IN, pull_up_don=GPIO.PUD_UP) # Setup pin …
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.