aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJerome Forissier <jerome.forissier@linaro.org>2024-05-24 18:20:05 +0200
committerTom Rini <trini@konsulko.com>2024-05-25 08:43:15 -0600
commitb3f69d7f003db5c0eb87e629435727337c6e9626 (patch)
tree58066cdbc483f24d5c1ab252960827b2a98d64ab
parent129f1a8c139e2673ea5bf8c982762ea4deeb4f1e (diff)
downloadu-boot-b3f69d7f003db5c0eb87e629435727337c6e9626.zip
u-boot-b3f69d7f003db5c0eb87e629435727337c6e9626.tar.gz
u-boot-b3f69d7f003db5c0eb87e629435727337c6e9626.tar.bz2
configs: add qemu_arm64_lwip_defconfig
Add qemu_arm64_lwip_defconfig based on qemu_arm64_defconfig but with NET_LWIP instead of NET. The new file was obtained by doing: 1. make qemu_arm64_defconfig 2. make menuconfig Select NET_LWIP 3. make savedefconfig 4. diff -u defconfig configs/qemu_arm64_defconfig 5. Create configs/qemu_arm64_lwip_defconfig, use #include <> to inherit from configs/qemu_arm64_defconfig, append 'CONFIG_NET_LWIP=y' and '# CONFIG_DFU_TFTP is not set' to reflect the diff. Signed-off-by: Jerome Forissier <jerome.forissier@linaro.org>
-rw-r--r--configs/qemu_arm64_lwip_defconfig3
1 files changed, 3 insertions, 0 deletions
diff --git a/configs/qemu_arm64_lwip_defconfig b/configs/qemu_arm64_lwip_defconfig
new file mode 100644
index 0000000..050c93f
--- /dev/null
+++ b/configs/qemu_arm64_lwip_defconfig
@@ -0,0 +1,3 @@
+#include <configs/qemu_arm64_defconfig>
+CONFIG_NET_LWIP=y
+# CONFIG_DFU_TFTP is not set