diff options
author | Jia Zhang <lans.zhang2008@gmail.com> | 2017-08-18 13:24:21 +0800 |
---|---|---|
committer | Jia Zhang <lans.zhang2008@gmail.com> | 2017-08-18 13:24:21 +0800 |
commit | 60588ac9295e50262c4b88f96a45ad311545b882 (patch) | |
tree | 1950e898c7cf475e2ce51bb4f08d49f9922c4f18 | |
parent | 52bf3b6636f95a4cf00d72dc774302905d7d8e88 (diff) | |
download | meta-secure-core-60588ac9295e50262c4b88f96a45ad311545b882.tar.gz |
grub-efi: remove the unused patch
Signed-off-by: Jia Zhang <lans.zhang2008@gmail.com>
-rw-r--r-- | meta-efi-secure-boot/recipes-bsp/grub/grub-efi/grub-enable-serial-console-by-default.patch | 30 |
1 files changed, 0 insertions, 30 deletions
diff --git a/meta-efi-secure-boot/recipes-bsp/grub/grub-efi/grub-enable-serial-console-by-default.patch b/meta-efi-secure-boot/recipes-bsp/grub/grub-efi/grub-enable-serial-console-by-default.patch deleted file mode 100644 index 6d00e4d..0000000 --- a/meta-efi-secure-boot/recipes-bsp/grub/grub-efi/grub-enable-serial-console-by-default.patch +++ /dev/null | |||
@@ -1,30 +0,0 @@ | |||
1 | From cd9fbf5dc00733f8e46966e67be85ff6f9d36e6e Mon Sep 17 00:00:00 2001 | ||
2 | From: Paul Gortmaker <paul.gortmaker@windriver.com> | ||
3 | Date: Fri, 10 Apr 2015 18:38:23 -0400 | ||
4 | Subject: [PATCH] grub: enable serial console by default | ||
5 | |||
6 | Have grub go to the serial console and the default VGA console. | ||
7 | |||
8 | Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com> | ||
9 | --- | ||
10 | util/grub.d/00_header.in | 4 ++++ | ||
11 | 1 file changed, 4 insertions(+) | ||
12 | |||
13 | diff --git a/util/grub.d/00_header.in b/util/grub.d/00_header.in | ||
14 | index 765bfdcd30e3..86b260a2c380 100644 | ||
15 | --- a/util/grub.d/00_header.in | ||
16 | +++ b/util/grub.d/00_header.in | ||
17 | @@ -27,6 +27,10 @@ grub_lang=`echo $LANG | cut -d . -f 1` | ||
18 | export TEXTDOMAIN=@PACKAGE@ | ||
19 | export TEXTDOMAINDIR="@localedir@" | ||
20 | |||
21 | +export GRUB_TERMINAL_INPUT="console serial" | ||
22 | +export GRUB_TERMINAL_OUTPUT="console serial" | ||
23 | +export GRUB_SERIAL_COMMAND="serial --speed=115200 --unit=0 --word=8 --parity=no --stop=1" | ||
24 | + | ||
25 | . "@datadir@/@PACKAGE@/grub-mkconfig_lib" | ||
26 | |||
27 | # Do this as early as possible, since other commands might depend on it. | ||
28 | -- | ||
29 | 2.3.1 | ||
30 | |||