我正在尝试为 Raspberry Pi 3 构建 Buildroot 镜像,如页面所示:
https://github.com/buildroot/buildroot/tree/f8ff7ab0be1cd3aa846829dc234d8c67b1bda0dc/board/raspberrypi

我正在使用适用于 Linux 的 Windows 子系统,我已将其升级到 Ubuntu 16.04.02 版本。
Buildroot 版本为 2017.05.2。

但是,在运行 make 时,我在 bash 中观察到以下输出:

/home/rijad/buildroot-2017.05.2/output/host/usr/bin/fakeroot --
/home/rijad/buildroot-2017.05.2/output/build/_fakeroot.fs
fakeroot, while creating message channels: Function not implemented
This may be due to a lack of SYSV IPC support.
fakeroot: error while starting the `faked' daemon.
kill: usage: kill [-s sigspec | -n signum | -sigspec] pid | jobspec ... or kill -l [sigspec]
fs/ext2/ext2.mk:42: recipe for target '/home/rijad/buildroot-2017.05.2/output/images/rootfs.ext2' failed
make[1]: *** [/home/rijad/buildroot-2017.05.2/output/images/rootfs.ext2] Error 1
Makefile:79: recipe for target '_all' failed
make: *** [_all] Error 2

有什么方法可以在 WSL 上启用 SysV IPC 支持,或者在 TCP IPC 支持下运行 fakeroot?

谢谢!

最佳答案

我自己遇到了同样的问题并与之抗争了一段时间,我在构建文件系统之前添加了以下命令以运行

cp -f /usr/bin/fakeroot-tcp /path-to-buildroot/output/host/usr/bin/fakeroot

关于c - 使用 Buildroot 为 Raspberry Pi 3 构建 rootfs 系统时出错 - 缺少 SysV IPC 支持,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/45469650/

10-13 07:20