File: config-local.patch

package info (click to toggle)
ipxe 1.21.1%2Bgit20250602.5b3ebf8b%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 25,372 kB
  • sloc: ansic: 369,336; asm: 7,329; perl: 2,613; sh: 850; makefile: 468; python: 284
file content (45 lines) | stat: -rw-r--r-- 1,077 bytes parent folder | download | duplicates (2)
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