Compare commits
8 commits
main
...
4.18_branc
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
54d0cc9a3c | ||
|
|
128c49e4e6 | ||
|
|
5b38099abe | ||
|
|
d5ef6be38e | ||
|
|
52473bd79c | ||
|
|
75f1500cb6 | ||
|
|
dba310c554 | ||
|
|
c4c0f00a57 |
28 changed files with 17 additions and 223 deletions
17
Makefile.inc
17
Makefile.inc
|
|
@ -265,26 +265,9 @@ endef
|
|||
# ResourceTemplate is the correct code.
|
||||
# As it's valid ASL, disable the warning.
|
||||
EMPTY_RESOURCE_TEMPLATE_WARNING = 3150
|
||||
# IASL compiler check for usage of _CRS, _DIS, _PRS, and _SRS objects:
|
||||
# 1) If _PRS is present, must have _CRS and _SRS
|
||||
# 2) If _SRS is present, must have _PRS (_PRS requires _CRS and _SRS)
|
||||
# 3) If _DIS is present, must have _SRS (_SRS requires _PRS, _PRS requires _CRS and _SRS)
|
||||
# 4) If _SRS is present, probably should have a _DIS (Remark only)
|
||||
# A warning will be issued for each of these cases.
|
||||
# For existing ASL code, ignore this warnings
|
||||
IASL_MISSING_DEPENDENCY = 3141
|
||||
|
||||
IASL_WARNINGS_LIST = $(EMPTY_RESOURCE_TEMPLATE_WARNING)
|
||||
|
||||
ifeq ($(CONFIG_IGNORE_IASL_MISSING_DEPENDENCY),y)
|
||||
IASL_WARNINGS_LIST += $(IASL_MISSING_DEPENDENCY)
|
||||
build_complete::
|
||||
printf "*** WARNING: The ASL code for this platform is incomplete. Please fix it. ***\n"
|
||||
printf "*** If _PRS is present, must have _CRS and _SRS ***\n"
|
||||
printf "*** If _SRS is present, must have _PRS and _CRS ***\n"
|
||||
printf "*** If _DIS is present, must have _SRS, _PRS and _CRS ***\n"
|
||||
endif
|
||||
|
||||
IGNORED_IASL_WARNINGS = $(addprefix -vw , $(IASL_WARNINGS_LIST))
|
||||
|
||||
define asl_template
|
||||
|
|
|
|||
|
|
@ -10,4 +10,4 @@ static void init_tpm_dev(void *unused)
|
|||
tpm_setup(s3resume);
|
||||
}
|
||||
|
||||
BOOT_STATE_INIT_ENTRY(BS_DEV_INIT, BS_ON_ENTRY, init_tpm_dev, NULL);
|
||||
BOOT_STATE_INIT_ENTRY(BS_DEV_INIT, BS_ON_EXIT, init_tpm_dev, NULL);
|
||||
|
|
|
|||
|
|
@ -29,25 +29,6 @@ Device (WLCO)
|
|||
CONFIG_EC_BASE_PACKET,
|
||||
16, 16)
|
||||
})
|
||||
|
||||
Name (_PRS, ResourceTemplate ()
|
||||
{
|
||||
StartDependentFn (0, 0) {
|
||||
IO (Decode16,
|
||||
CONFIG_EC_BASE_HOST_DATA,
|
||||
CONFIG_EC_BASE_HOST_DATA,
|
||||
4, 4)
|
||||
IO (Decode16,
|
||||
CONFIG_EC_BASE_HOST_COMMAND,
|
||||
CONFIG_EC_BASE_HOST_COMMAND,
|
||||
4, 4)
|
||||
IO (Decode16,
|
||||
CONFIG_EC_BASE_PACKET,
|
||||
CONFIG_EC_BASE_PACKET,
|
||||
16, 16)
|
||||
}
|
||||
EndDependentFn ()
|
||||
})
|
||||
}
|
||||
|
||||
Device (WEVT)
|
||||
|
|
|
|||
|
|
@ -26,15 +26,6 @@ Device (SIO)
|
|||
IO (Decode16, 0x03F8, 0x3F8, 0x08, 0x08)
|
||||
IRQNoFlags () {4}
|
||||
})
|
||||
|
||||
Name (_PRS, ResourceTemplate ()
|
||||
{
|
||||
StartDependentFn (0, 0) {
|
||||
IO (Decode16, 0x03F8, 0x3F8, 0x08, 0x08)
|
||||
IRQNoFlags () {4}
|
||||
}
|
||||
EndDependentFn ()
|
||||
})
|
||||
}
|
||||
|
||||
Device (PS2K)
|
||||
|
|
@ -58,16 +49,6 @@ Device (SIO)
|
|||
IO (Decode16, 0x64, 0x64, 0x01, 0x01)
|
||||
IRQ (Edge, ActiveHigh, Exclusive) {1}
|
||||
})
|
||||
|
||||
Name (_PRS, ResourceTemplate()
|
||||
{
|
||||
StartDependentFn (0, 0) {
|
||||
IO (Decode16, 0x60, 0x60, 0x01, 0x01)
|
||||
IO (Decode16, 0x64, 0x64, 0x01, 0x01)
|
||||
IRQ (Edge, ActiveHigh, Exclusive) {1}
|
||||
}
|
||||
EndDependentFn ()
|
||||
})
|
||||
}
|
||||
|
||||
Device (PS2M)
|
||||
|
|
@ -88,13 +69,5 @@ Device (SIO)
|
|||
{
|
||||
IRQ (Edge, ActiveHigh, Exclusive) {12}
|
||||
})
|
||||
|
||||
Name (_PRS, ResourceTemplate()
|
||||
{
|
||||
StartDependentFn (0, 0) {
|
||||
IRQ (Edge, ActiveHigh, Exclusive) {12}
|
||||
}
|
||||
EndDependentFn ()
|
||||
})
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -24,16 +24,6 @@ Device (SIO) {
|
|||
FixedIO (0x64, 0x01)
|
||||
IRQNoFlags () {1}
|
||||
})
|
||||
|
||||
Name (_PRS, ResourceTemplate()
|
||||
{
|
||||
StartDependentFn (0, 0) {
|
||||
FixedIO (0x60, 0x01)
|
||||
FixedIO (0x64, 0x01)
|
||||
IRQNoFlags () {1}
|
||||
}
|
||||
EndDependentFn ()
|
||||
})
|
||||
}
|
||||
#endif
|
||||
}
|
||||
|
|
|
|||
|
|
@ -25,17 +25,6 @@ Device (SIO)
|
|||
FixedIO (0x64, 0x01)
|
||||
IRQNoFlags () {1}
|
||||
})
|
||||
|
||||
Name (_PRS, ResourceTemplate()
|
||||
{
|
||||
StartDependentFn (0, 0)
|
||||
{
|
||||
FixedIO (0x60, 0x01)
|
||||
FixedIO (0x64, 0x01)
|
||||
IRQNoFlags () {1}
|
||||
}
|
||||
EndDependentFn ()
|
||||
})
|
||||
}
|
||||
#endif
|
||||
|
||||
|
|
@ -55,17 +44,6 @@ Device (SIO)
|
|||
FixedIO (0x64, 0x01)
|
||||
IRQNoFlags () {12}
|
||||
})
|
||||
|
||||
Name (_PRS, ResourceTemplate()
|
||||
{
|
||||
StartDependentFn (0, 0)
|
||||
{
|
||||
FixedIO (0x60, 0x01)
|
||||
FixedIO (0x64, 0x01)
|
||||
IRQNoFlags () {12}
|
||||
}
|
||||
EndDependentFn ()
|
||||
})
|
||||
}
|
||||
#endif
|
||||
|
||||
|
|
|
|||
|
|
@ -2,9 +2,6 @@
|
|||
|
||||
if BOARD_ACER_G43T_AM3
|
||||
|
||||
config IGNORE_IASL_MISSING_DEPENDENCY
|
||||
def_bool y
|
||||
|
||||
config BOARD_SPECIFIC_OPTIONS
|
||||
def_bool y
|
||||
select CPU_INTEL_SOCKET_LGA775
|
||||
|
|
|
|||
|
|
@ -2,9 +2,6 @@
|
|||
|
||||
if BOARD_ASROCK_H81M_HDS
|
||||
|
||||
config IGNORE_IASL_MISSING_DEPENDENCY
|
||||
def_bool y
|
||||
|
||||
config BOARD_SPECIFIC_OPTIONS
|
||||
def_bool y
|
||||
select BOARD_ROMSIZE_KB_4096
|
||||
|
|
|
|||
|
|
@ -14,9 +14,6 @@ config BOARD_ASUS_H61_SERIES
|
|||
|
||||
if BOARD_ASUS_H61_SERIES
|
||||
|
||||
config IGNORE_IASL_MISSING_DEPENDENCY
|
||||
def_bool y
|
||||
|
||||
config MAINBOARD_DIR
|
||||
default "asus/h61-series"
|
||||
|
||||
|
|
|
|||
|
|
@ -2,9 +2,6 @@
|
|||
|
||||
if BOARD_ASUS_P5QPL_AM || BOARD_ASUS_P5G41T_M_LX
|
||||
|
||||
config IGNORE_IASL_MISSING_DEPENDENCY
|
||||
def_bool y
|
||||
|
||||
config BOARD_SPECIFIC_OPTIONS
|
||||
def_bool y
|
||||
select CPU_INTEL_SOCKET_LGA775
|
||||
|
|
|
|||
|
|
@ -2,9 +2,6 @@
|
|||
|
||||
if BOARD_FOXCONN_D41S
|
||||
|
||||
config IGNORE_IASL_MISSING_DEPENDENCY
|
||||
def_bool y
|
||||
|
||||
config BOARD_SPECIFIC_OPTIONS
|
||||
def_bool y
|
||||
select CPU_INTEL_SOCKET_FCBGA559
|
||||
|
|
|
|||
|
|
@ -2,9 +2,6 @@
|
|||
|
||||
if BOARD_FOXCONN_G41S_K || BOARD_FOXCONN_G41M
|
||||
|
||||
config IGNORE_IASL_MISSING_DEPENDENCY
|
||||
def_bool y
|
||||
|
||||
config BOARD_SPECIFIC_OPTIONS
|
||||
def_bool y
|
||||
select CPU_INTEL_SOCKET_LGA775
|
||||
|
|
|
|||
|
|
@ -2,9 +2,6 @@
|
|||
|
||||
if BOARD_GIGABYTE_GA_D510UD
|
||||
|
||||
config IGNORE_IASL_MISSING_DEPENDENCY
|
||||
def_bool y
|
||||
|
||||
config BOARD_SPECIFIC_OPTIONS
|
||||
def_bool y
|
||||
select BOARD_ROMSIZE_KB_512
|
||||
|
|
|
|||
|
|
@ -1,8 +1,5 @@
|
|||
if BOARD_INTEL_DCP847SKE
|
||||
|
||||
config IGNORE_IASL_MISSING_DEPENDENCY
|
||||
def_bool y
|
||||
|
||||
config BOARD_SPECIFIC_OPTIONS
|
||||
def_bool y
|
||||
select BOARD_ROMSIZE_KB_8192
|
||||
|
|
|
|||
|
|
@ -2,9 +2,6 @@
|
|||
|
||||
if BOARD_INTEL_DG41WV
|
||||
|
||||
config IGNORE_IASL_MISSING_DEPENDENCY
|
||||
def_bool y
|
||||
|
||||
config BOARD_SPECIFIC_OPTIONS
|
||||
def_bool y
|
||||
select CPU_INTEL_SOCKET_LGA775
|
||||
|
|
|
|||
|
|
@ -2,9 +2,6 @@
|
|||
|
||||
if BOARD_INTEL_DG43GT
|
||||
|
||||
config IGNORE_IASL_MISSING_DEPENDENCY
|
||||
def_bool y
|
||||
|
||||
config BOARD_SPECIFIC_OPTIONS
|
||||
def_bool y
|
||||
select CPU_INTEL_SOCKET_LGA775
|
||||
|
|
|
|||
|
|
@ -1,8 +1,5 @@
|
|||
if BOARD_INTEL_EMERALDLAKE2
|
||||
|
||||
config IGNORE_IASL_MISSING_DEPENDENCY
|
||||
def_bool y
|
||||
|
||||
config BOARD_SPECIFIC_OPTIONS
|
||||
def_bool y
|
||||
select NORTHBRIDGE_INTEL_SANDYBRIDGE
|
||||
|
|
|
|||
|
|
@ -2,9 +2,6 @@
|
|||
|
||||
if BOARD_SUPERMICRO_X10SLM_PLUS_F
|
||||
|
||||
config IGNORE_IASL_MISSING_DEPENDENCY
|
||||
def_bool y
|
||||
|
||||
config BOARD_SPECIFIC_OPTIONS
|
||||
def_bool y
|
||||
select BOARD_ROMSIZE_KB_16384
|
||||
|
|
|
|||
|
|
@ -1,8 +1,5 @@
|
|||
if BOARD_SUPERMICRO_X9SCL
|
||||
|
||||
config IGNORE_IASL_MISSING_DEPENDENCY
|
||||
def_bool y
|
||||
|
||||
config BOARD_SPECIFIC_OPTIONS
|
||||
def_bool y
|
||||
select BOARD_ROMSIZE_KB_8192
|
||||
|
|
|
|||
|
|
@ -18,5 +18,6 @@ static void pmc_lock_smi(void)
|
|||
void soc_lockdown_config(int chipset_lockdown)
|
||||
{
|
||||
/* APL only supports CHIPSET_LOCKDOWN_COREBOOT */
|
||||
pmc_lock_smi();
|
||||
if (CONFIG(SOC_INTEL_GEMINILAKE))
|
||||
pmc_lock_smi();
|
||||
}
|
||||
|
|
|
|||
|
|
@ -171,4 +171,12 @@ Device (SUPERIO_ID(PN, SUPERIO_PNP_LDN)) {
|
|||
Store (One, PNP_DEVICE_ACTIVE)
|
||||
EXIT_CONFIG_MODE ()
|
||||
}
|
||||
|
||||
/* This is used for _SRS. Since _DIS only disables the device
|
||||
* without changing the resources this works.
|
||||
*/
|
||||
Method (_PRS, 0)
|
||||
{
|
||||
return (_CRS)
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -108,12 +108,6 @@ Device (SIO) {
|
|||
IO (Decode16, SIO_ENVC_IO1, SIO_ENVC_IO1, 0x04, 0x04)
|
||||
})
|
||||
|
||||
Name (_PRS, ResourceTemplate ()
|
||||
{
|
||||
IO (Decode16, SIO_ENVC_IO0, SIO_ENVC_IO0, 0x08, 0x08)
|
||||
IO (Decode16, SIO_ENVC_IO1, SIO_ENVC_IO1, 0x04, 0x04)
|
||||
})
|
||||
|
||||
OperationRegion (ECAP, SystemIO, SIO_ENVC_IO0, 0x07)
|
||||
Field (ECAP, ByteAcc, NoLock, Preserve)
|
||||
{
|
||||
|
|
@ -151,12 +145,6 @@ Device (SIO) {
|
|||
IO (Decode16, SIO_GPIO_IO0, SIO_GPIO_IO0, 0x01, 0x01)
|
||||
IO (Decode16, SIO_GPIO_IO1, SIO_GPIO_IO1, 0x08, 0x08)
|
||||
})
|
||||
|
||||
Name (_PRS, ResourceTemplate ()
|
||||
{
|
||||
IO (Decode16, SIO_GPIO_IO0, SIO_GPIO_IO0, 0x01, 0x01)
|
||||
IO (Decode16, SIO_GPIO_IO1, SIO_GPIO_IO1, 0x08, 0x08)
|
||||
})
|
||||
}
|
||||
#endif
|
||||
|
||||
|
|
@ -175,11 +163,6 @@ Device (SIO) {
|
|||
IRQNoFlags () {4}
|
||||
})
|
||||
|
||||
Name (_PRS, ResourceTemplate ()
|
||||
{
|
||||
IO (Decode16, 0x03F8, 0x03F8, 0x08, 0x08)
|
||||
IRQNoFlags () {4}
|
||||
})
|
||||
}
|
||||
#endif
|
||||
|
||||
|
|
@ -200,12 +183,6 @@ Device (SIO) {
|
|||
IRQNoFlags () {1}
|
||||
})
|
||||
|
||||
Name (_PRS, ResourceTemplate()
|
||||
{
|
||||
IO (Decode16, 0x60, 0x60, 0x01, 0x01)
|
||||
IO (Decode16, 0x64, 0x64, 0x01, 0x01)
|
||||
IRQNoFlags () {1}
|
||||
})
|
||||
}
|
||||
#endif
|
||||
|
||||
|
|
@ -223,10 +200,6 @@ Device (SIO) {
|
|||
IRQNoFlags () {12}
|
||||
})
|
||||
|
||||
Name (_PRS, ResourceTemplate()
|
||||
{
|
||||
IRQNoFlags () {12}
|
||||
})
|
||||
}
|
||||
#endif
|
||||
|
||||
|
|
@ -247,13 +220,6 @@ Device (SIO) {
|
|||
DMA (Compatibility, NotBusMaster, Transfer8) {2}
|
||||
})
|
||||
|
||||
Name (_PRS, ResourceTemplate()
|
||||
{
|
||||
IO (Decode16, 0x03F0, 0x03F0, 0x01, 0x06)
|
||||
IO (Decode16, 0x03F7, 0x03F7, 0x01, 0x01)
|
||||
IRQNoFlags () {6}
|
||||
DMA (Compatibility, NotBusMaster, Transfer8) {2}
|
||||
})
|
||||
}
|
||||
#endif
|
||||
|
||||
|
|
@ -272,11 +238,6 @@ Device (SIO) {
|
|||
IRQNoFlags () { SIO_INFR_IRQ }
|
||||
})
|
||||
|
||||
Name (_PRS, ResourceTemplate()
|
||||
{
|
||||
IO (Decode16, SIO_INFR_IO0, SIO_INFR_IO0, 0x08, 0x08)
|
||||
IRQNoFlags () { SIO_INFR_IRQ }
|
||||
})
|
||||
}
|
||||
#endif
|
||||
}
|
||||
|
|
|
|||
|
|
@ -108,12 +108,6 @@ Device (SIO) {
|
|||
IO (Decode16, SIO_ENVC_IO1, SIO_ENVC_IO1, 0x04, 0x04)
|
||||
})
|
||||
|
||||
Name (_PRS, ResourceTemplate ()
|
||||
{
|
||||
IO (Decode16, SIO_ENVC_IO0, SIO_ENVC_IO0, 0x08, 0x08)
|
||||
IO (Decode16, SIO_ENVC_IO1, SIO_ENVC_IO1, 0x04, 0x04)
|
||||
})
|
||||
|
||||
OperationRegion (ECAP, SystemIO, SIO_ENVC_IO0, 0x07)
|
||||
Field (ECAP, ByteAcc, NoLock, Preserve)
|
||||
{
|
||||
|
|
@ -151,12 +145,6 @@ Device (SIO) {
|
|||
IO (Decode16, SIO_GPIO_IO0, SIO_GPIO_IO0, 0x01, 0x01)
|
||||
IO (Decode16, SIO_GPIO_IO1, SIO_GPIO_IO1, 0x08, 0x08)
|
||||
})
|
||||
|
||||
Name (_PRS, ResourceTemplate ()
|
||||
{
|
||||
IO (Decode16, SIO_GPIO_IO0, SIO_GPIO_IO0, 0x01, 0x01)
|
||||
IO (Decode16, SIO_GPIO_IO1, SIO_GPIO_IO1, 0x08, 0x08)
|
||||
})
|
||||
}
|
||||
#endif
|
||||
|
||||
|
|
@ -174,12 +162,6 @@ Device (SIO) {
|
|||
IO (Decode16, 0x03F8, 0x03F8, 0x08, 0x08)
|
||||
IRQNoFlags () {4}
|
||||
})
|
||||
|
||||
Name (_PRS, ResourceTemplate ()
|
||||
{
|
||||
IO (Decode16, 0x03F8, 0x03F8, 0x08, 0x08)
|
||||
IRQNoFlags () {4}
|
||||
})
|
||||
}
|
||||
#endif
|
||||
|
||||
|
|
@ -199,13 +181,6 @@ Device (SIO) {
|
|||
IO (Decode16, 0x64, 0x64, 0x01, 0x01)
|
||||
IRQNoFlags () {1}
|
||||
})
|
||||
|
||||
Name (_PRS, ResourceTemplate()
|
||||
{
|
||||
IO (Decode16, 0x60, 0x60, 0x01, 0x01)
|
||||
IO (Decode16, 0x64, 0x64, 0x01, 0x01)
|
||||
IRQNoFlags () {1}
|
||||
})
|
||||
}
|
||||
#endif
|
||||
|
||||
|
|
@ -222,11 +197,6 @@ Device (SIO) {
|
|||
{
|
||||
IRQNoFlags () {12}
|
||||
})
|
||||
|
||||
Name (_PRS, ResourceTemplate()
|
||||
{
|
||||
IRQNoFlags () {12}
|
||||
})
|
||||
}
|
||||
#endif
|
||||
|
||||
|
|
@ -246,14 +216,6 @@ Device (SIO) {
|
|||
IRQNoFlags () {6}
|
||||
DMA (Compatibility, NotBusMaster, Transfer8) {2}
|
||||
})
|
||||
|
||||
Name (_PRS, ResourceTemplate()
|
||||
{
|
||||
IO (Decode16, 0x03F0, 0x03F0, 0x01, 0x06)
|
||||
IO (Decode16, 0x03F7, 0x03F7, 0x01, 0x01)
|
||||
IRQNoFlags () {6}
|
||||
DMA (Compatibility, NotBusMaster, Transfer8) {2}
|
||||
})
|
||||
}
|
||||
#endif
|
||||
|
||||
|
|
@ -271,12 +233,6 @@ Device (SIO) {
|
|||
IO (Decode16, SIO_INFR_IO0, SIO_INFR_IO0, 0x08, 0x08)
|
||||
IRQNoFlags () { SIO_INFR_IRQ }
|
||||
})
|
||||
|
||||
Name (_PRS, ResourceTemplate()
|
||||
{
|
||||
IO (Decode16, SIO_INFR_IO0, SIO_INFR_IO0, 0x08, 0x08)
|
||||
IRQNoFlags () { SIO_INFR_IRQ }
|
||||
})
|
||||
}
|
||||
#endif
|
||||
}
|
||||
|
|
|
|||
|
|
@ -37,7 +37,7 @@ MPFR_VERSION=4.1.0
|
|||
MPC_VERSION=1.2.1
|
||||
GCC_VERSION=11.2.0
|
||||
BINUTILS_VERSION=2.37
|
||||
IASL_VERSION=20220331
|
||||
IASL_VERSION="R10_20_22"
|
||||
# CLANG version number
|
||||
CLANG_VERSION=15.0.0
|
||||
CMAKE_VERSION=3.24.2
|
||||
|
|
@ -52,7 +52,7 @@ MPFR_ARCHIVE="https://ftpmirror.gnu.org/mpfr/mpfr-${MPFR_VERSION}.tar.xz"
|
|||
MPC_ARCHIVE="https://ftpmirror.gnu.org/mpc/mpc-${MPC_VERSION}.tar.gz"
|
||||
GCC_ARCHIVE="https://ftpmirror.gnu.org/gcc/gcc-${GCC_VERSION}/gcc-${GCC_VERSION}.tar.xz"
|
||||
BINUTILS_ARCHIVE="https://ftpmirror.gnu.org/binutils/binutils-${BINUTILS_VERSION}.tar.xz"
|
||||
IASL_ARCHIVE="https://acpica.org/sites/acpica/files/acpica-unix2-${IASL_VERSION}.tar.gz"
|
||||
IASL_ARCHIVE="https://github.com/acpica/acpica/archive/refs/tags/${IASL_VERSION}.tar.gz"
|
||||
# CLANG toolchain archive locations
|
||||
LLVM_ARCHIVE="https://github.com/llvm/llvm-project/releases/download/llvmorg-${CLANG_VERSION}/llvm-${CLANG_VERSION}.src.tar.xz"
|
||||
CLANG_ARCHIVE="https://github.com/llvm/llvm-project/releases/download/llvmorg-${CLANG_VERSION}/clang-${CLANG_VERSION}.src.tar.xz"
|
||||
|
|
@ -75,7 +75,7 @@ MPC_DIR="mpc-${MPC_VERSION}"
|
|||
GCC_DIR="gcc-${GCC_VERSION}"
|
||||
# shellcheck disable=SC2034
|
||||
BINUTILS_DIR="binutils-${BINUTILS_VERSION}"
|
||||
IASL_DIR="acpica-unix2-${IASL_VERSION}"
|
||||
IASL_DIR="acpica-${IASL_VERSION}"
|
||||
# CLANG toolchain directories
|
||||
LLVM_DIR="llvm-${CLANG_VERSION}.src"
|
||||
CLANG_DIR="clang-${CLANG_VERSION}.src"
|
||||
|
|
|
|||
1
util/crossgcc/sum/R10_20_22.tar.gz.cksum
Normal file
1
util/crossgcc/sum/R10_20_22.tar.gz.cksum
Normal file
|
|
@ -0,0 +1 @@
|
|||
560d9e43692e1957bcf24a9bdd663ffe77da88dd tarballs/R10_20_22.tar.gz
|
||||
|
|
@ -1 +0,0 @@
|
|||
bf8a86addc7fbfa819f1ed2897a0890c42cdcf62 tarballs/acpica-unix2-20220331.tar.gz
|
||||
|
|
@ -192,6 +192,8 @@ detect_special_flags() {
|
|||
|
||||
testcc "$GCC" "$CFLAGS_GCC -Wno-address-of-packed-member $FLAGS_GCC" &&
|
||||
CFLAGS_GCC="$CFLAGS_GCC -Wno-address-of-packed-member"
|
||||
testcc "$GCC" "$CFLAGS_GCC --param=min-pagesize=1024 $FLAGS_GCC" &&
|
||||
CFLAGS_GCC="$CFLAGS_GCC --param=min-pagesize=1024"
|
||||
case "$architecture" in
|
||||
x86)
|
||||
;;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue