You've already forked edk2-platforms
mirror of
https://github.com/Dasharo/edk2-platforms.git
synced 2026-03-06 14:51:43 -08:00
This change modularizes the Ext4 DSC/FDF files following the model used
in edk2/NetworkPkg.
A platform DSC can include Ext4 using "!include Features/Ext4.dsc.inc".
Ext.dsc.inc includes all the required information to enable Ext4
features. Similarly, "!include Features/Ext4.fdf.inc" would be used in
the platform FDF.
The Ext4 feature is enabled by default, but could be disabled at build
time using:
BLD_*_EXT4_ENABLE=FALSE
Signed-off-by: Jake Garver <jake@nvidia.com>
Reviewed-by: Pedro Falcato <pedro.falcato@gmail.com>
15 lines
416 B
PHP
15 lines
416 B
PHP
## @file
|
|
# Ext4 DSC include file for [Components] section of all Architectures.
|
|
#
|
|
# SPDX-FileCopyrightText: Copyright (c) 2022 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
|
|
# SPDX-License-Identifier: BSD-2-Clause-Patent
|
|
#
|
|
##
|
|
|
|
!if $(EXT4_ENABLE) == TRUE
|
|
Features/Ext4Pkg/Ext4Dxe/Ext4Dxe.inf {
|
|
<PcdsFixedAtBuild>
|
|
gEfiMdePkgTokenSpaceGuid.PcdDebugPrintErrorLevel|0x80000007
|
|
}
|
|
!endif
|