1

我已经使用他们提供的 raspberrypi_defconfig 为 raspberry pi 设备编译了“buildroot-2014.05”,并使用新内核成功启动,但是无法从新启动的内核连接到互联网连接,也无法访问基本工具,如 shell 和类似的工具。所以,我的问题是,是否可以使用我们指定的配置编译内核,以便我可以选择我感兴趣的包。就我而言,互联网连接对于新内核构建来说是最重要的。

提前致谢...

4

2 回答 2

1

查看此分步教程以使用 Buildroot 为 Raspberry Pi 安装最小的 linux 发行版。

主要步骤是:

  • 使用 Gparted 或 fdisk 格式化 sd 卡。
  • 下载 Buildroot
  • 加载默认配置:raspberrypi_defconfig(这只是一个基本配置)
  • 借助 BusyBox 添加您想要的软件包(<- 选择您需要的)
  • 构建后配置(SSH、ETH0 静态或动态 IP 地址)

最终产品占用 15Mb 的 Ram。

希望能帮助到你

于 2015-01-13T20:43:27.123 回答
1

Some useful links:

  1. BR RPi Tutorial
  2. BusyBox
  3. network setup
  4. iproute2 tutorial

Please check, if you have a network interface (eth0 or usb0), i.e. execute following command and provide its output:

ip addr
于 2014-08-13T07:37:09.840 回答