docs: Get rid of last remaining mentions of stivale(2)
diff --git a/PROTOCOL.md b/PROTOCOL.md
index 84b30be4..866ffaf0 100644
--- a/PROTOCOL.md
+++ b/PROTOCOL.md
@@ -1,14 +1,12 @@
# The Limine Boot Protocol
-The Limine boot protocol is a modern, minimal, fast, and extensible boot
-protocol, with a focus on backwards and forwards compatibility,
-created from the experience gained by working on the
-[stivale boot protocols](https://github.com/stivale).
+The Limine boot protocol is a modern, portable, featureful, and extensible boot
+protocol.
This file serves as the official centralised collection of features that
-the Limine boot protocol is composed of. Other bootloaders may support extra
+the Limine boot protocol is comprised of. Other bootloaders may support extra
unofficial features, but it is strongly recommended to avoid fragmentation
-and submit new features by opening a pull request to this repository.
+and submit new features by opening a pull request to the Limine repository.
The [limine.h](/limine.h) file provides an implementation of all the
structures and constants described in this document, for the C and C++
diff --git a/common/menu.c b/common/menu.c
index 59184602..3501f872 100644
--- a/common/menu.c
+++ b/common/menu.c
@@ -1017,12 +1017,7 @@ noreturn void boot(char *config) {
panic(true, "Boot protocol not specified for this entry");
}
- if (!strcmp(proto, "stivale1") || !strcmp(proto, "stivale") || !strcmp(proto, "stivale2")) {
- quiet = false;
- print("The stivale and stivale2 protocols are no longer supported as of Limine 4.x\n");
- print("Please notify kernel maintainers to move to the Limine boot protocol or\n");
- print("roll back to Limine 3.x.\n\n");
- } else if (!strcmp(proto, "limine")) {
+ if (!strcmp(proto, "limine")) {
limine_load(config, cmdline);
} else if (!strcmp(proto, "linux")) {
linux_load(config, cmdline);
