From: Peter Korsgaard Date: Sat, 30 Jan 2021 10:19:15 +0000 (+0100) Subject: board/minnowboard: grub.cfg: disable eudev network interface renaming X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=03c817553a2aa710b0c50d0497d78135b0db859e;p=buildroot.git board/minnowboard: grub.cfg: disable eudev network interface renaming So the normal DHCP-on-eth0 logic works for the graphical defconfig where eudev is used. Signed-off-by: Peter Korsgaard Signed-off-by: Thomas Petazzoni --- diff --git a/board/minnowboard/grub.cfg b/board/minnowboard/grub.cfg index 206f734f13..1f75f4d7ca 100644 --- a/board/minnowboard/grub.cfg +++ b/board/minnowboard/grub.cfg @@ -2,5 +2,5 @@ set default="0" set timeout="5" menuentry "Buildroot" { - linux /bzImage root=PARTLABEL=rootfs rootwait console=tty0 console=ttyS0,115200 + linux /bzImage root=PARTLABEL=rootfs rootwait console=tty0 console=ttyS0,115200 net.ifnames=0 }