Lines Matching +full:user +full:- +full:defined

1 .. SPDX-License-Identifier: GPL-2.0
7 In order to support ACPI open-ended hardware configurations (e.g. development
19 user defined SSDT tables that contain the board specific information.
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
73 This option allows loading of user defined SSDTs from initrd and it is useful
90 mkdir -p kernel/firmware/acpi
95 find kernel | cpio -H newc --create > /boot/instrumented_initrd
102 allows a persistent, OS independent way of storing the user defined SSDTs. There
103 is also work underway to implement EFI support for loading user defined SSDTs
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)
171 This option allows loading of user defined SSDTs from user space via the configfs