* added support to Emerge -repository w/ repo/*
[t2sde.git] / package / boot / palo / default-to-boot.patch
blobd00f53c4e892ec4042a8ecd85b7f83e5a81c13ad
1 # --- T2-COPYRIGHT-NOTE-BEGIN ---
2 # T2 SDE: package/*/palo/default-to-boot.patch
3 # Copyright (C) 2024 The T2 SDE Project
4 #
5 # This Copyright note is generated by scripts/Create-CopyPatch,
6 # more information can be found in the files COPYING and README.
7 #
8 # This patch file is dual-licensed. It is available under the license the
9 # patched project is licensed under, as long as it is an OpenSource license
10 # as defined at http://www.opensource.org/ (e.g. BSD, X11) or under the terms
11 # of the GNU General Public License version 2 as used by the T2 SDE.
12 # --- T2-COPYRIGHT-NOTE-END ---
14 As I nearly never need '0' to edit the kernel, let's default to a
15 IMHO much more reasonable 'b' to boot.
17 --- palo-2.24/ipl/ipl.c.vanilla 2024-04-06 13:50:21.630969647 +0200
18 +++ palo-2.24/ipl/ipl.c 2024-04-06 13:51:58.863969220 +0200
19 @@ -406,7 +406,7 @@
20 "'d' toggle debug mode\n"
21 #endif
22 "? ");
23 - numbuf[0] = '0';
24 + numbuf[0] = 'b';
25 numbuf[1] = '\0';
26 enter_text(numbuf, sizeof numbuf - 1);
27 printf("\n");