From d6b2ee52f92b682a62ba035044dea44d013bf7ec Mon Sep 17 00:00:00 2001 From: Bjoern Doebel Date: Wed, 14 May 2025 11:06:33 +0200 Subject: tools: widen network DHCP configuration for EC2 Root FS The current EC2/AL2023 root file system only works for systems using the Intel e1000 driver. Remove the match clause to support all potential network interfaces and allow fuzzing with other network interfaces (such as virtio-net). Signed-off-by: Bjoern Doebel --- tools/create-ec2-rootfs.sh | 3 --- 1 file changed, 3 deletions(-) (limited to 'tools/create-ec2-rootfs.sh') diff --git a/tools/create-ec2-rootfs.sh b/tools/create-ec2-rootfs.sh index fb5a2062d..1ff138a04 100755 --- a/tools/create-ec2-rootfs.sh +++ b/tools/create-ec2-rootfs.sh @@ -135,9 +135,6 @@ dnf install -y \ systemctl enable systemd-networkd cat << EOF > /etc/systemd/network/ether.network -[Match] -Driver=e1000 - [Network] DHCP=yes EOF -- cgit mrf-deployment