1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45
|
Description: Populate src/config/local with Debian's configuration files
Author: Sven Geuer <sge@debian.org>, Miao Wang <shankerwangmiao@gmail.com>
Forwarded: not-needed
Last-Update: 2025-02-04
---
This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
--- /dev/null
+++ b/src/config/local/console.h
@@ -0,0 +1 @@
+#define CONSOLE_FRAMEBUFFER
--- /dev/null
+++ b/src/config/local/general.h
@@ -0,0 +1,16 @@
+#undef ROM_BANNER_TIMEOUT
+#define ROM_BANNER_TIMEOUT 0
+
+#define IMAGE_PNG
+#define CONSOLE_CMD
+
+#define NET_PROTO_IPV6
+#define DOWNLOAD_PROTO_NFS
+
+#define DOWNLOAD_PROTO_HTTPS
+#define CERT_CMD
+
+#define VLAN_CMD
+#define REBOOT_CMD
+#define POWEROFF_CMD
+#define PING_CMD
--- /dev/null
+++ b/src/config/local/qemu/general.h
@@ -0,0 +1,13 @@
+/*
+ * qemu EFI roms are built without HTTPS support,
+ * EFI does that on its own (and better)
+ */
+#ifdef PLATFORM_efi
+# undef DOWNLOAD_PROTO_HTTPS
+# undef CERT_CMD
+# undef SANBOOT_PROTO_AOE
+# undef NET_PROTO_STP
+# undef NET_PROTO_LACP
+# undef NET_PROTO_EAPOL
+# undef NET_PROTO_LLDP
+#endif
|