Lines Matching +full:boot +full:- +full:method
1 .. SPDX-License-Identifier: GPL-2.0
7 In order to support ACPI open-ended hardware configurations (e.g. development
46 Method (_CRS, 0, Serialized)
59 ASL Optimizing Compiler version 20140214-64 [Mar 29 2014]
60 Copyright (c) 2000 - 2014 Intel Corporation
62 ASL Input: minnomax.asl - 30 lines, 614 bytes, 7 keywords
63 AML Output: minnowmax.aml - 165 bytes, 6 named objects, 1 executable opcodes
90 mkdir -p kernel/firmware/acpi
95 find kernel | cpio -H newc --create > /boot/instrumented_initrd
96 cat /boot/initrd >>/boot/instrumented_initrd
101 This is the preferred method, when EFI is supported on the platform, because it
104 and using this method will make it easier to convert to the EFI loading
121 "Name-GUID" and that the first 4 bytes in the file (little-endian format)
129 #!/bin/sh -e
131 while [ -n "$1" ]; do
133 "-f") filename="$2"; shift;;
134 "-g") guid="$2"; shift;;
142 echo "Syntax: ${0##*/} -f filename [ -g guid ] name"
146 [ -n "$name" -a -f "$filename" ] || usage
150 [ -d "$EFIVARFS" ] || exit 2
152 if stat -tf $EFIVARFS | grep -q -v de5e81e4; then
153 mount -t efivarfs none $EFIVARFS
157 [ -n "$guid" ] || guid=$(find "$EFIVARFS" -name "$name-*" | head -n1 | cut -f2- -d-)
160 [ -n "$guid" ] || guid="$(cat /proc/sys/kernel/random/uuid)"
164 /bin/echo -ne "\007\000\000\000" | cat - $filename > $tmp
165 dd if=$tmp of="$EFIVARFS/$name-$guid" bs=$(stat -c %s $tmp)