mirror of https://github.com/acidanthera/audk.git
EmbeddedPkg: Allow longer android kernel command line
AndroidBootImgLib allows for platforms to append to kernel command line but does not allow for the overall kernel command line to go beyond the limit set by the image header. Address this limitation by adding a pcd where platform can tell how many extra characters they expect on their platform in addition to what the image header specifies. Signed-off-by: Ashish Singhal <ashishsingha@nvidia.com> Reviewed-by: Abner Chang <abner.chang@amd.com>
This commit is contained in:
parent
c0207583e0
commit
59b6b5059b
|
@ -183,3 +183,8 @@
|
|||
# Selection between DT and ACPI as a default
|
||||
#
|
||||
gEmbeddedTokenSpaceGuid.PcdDefaultDtPref|TRUE|BOOLEAN|0x0000059
|
||||
|
||||
#
|
||||
# Expected Overflow Android Kernel Command Line Characters
|
||||
#
|
||||
gEmbeddedTokenSpaceGuid.PcdAndroidKernelCommandLineOverflow|0|UINT32|0x000005C
|
||||
|
|
|
@ -335,7 +335,7 @@ AndroidBootImgUpdateArgs (
|
|||
return Status;
|
||||
}
|
||||
|
||||
NewKernelArgSize = ANDROID_BOOTIMG_KERNEL_ARGS_SIZE;
|
||||
NewKernelArgSize = ANDROID_BOOTIMG_KERNEL_ARGS_SIZE + PcdGet32 (PcdAndroidKernelCommandLineOverflow);
|
||||
*KernelArgs = AllocateZeroPool (sizeof (CHAR16) * NewKernelArgSize);
|
||||
if (*KernelArgs == NULL) {
|
||||
DEBUG ((DEBUG_ERROR, "Fail to allocate memory\n"));
|
||||
|
|
|
@ -45,5 +45,6 @@
|
|||
gEfiAcpiTableGuid
|
||||
gFdtTableGuid
|
||||
|
||||
[FeaturePcd]
|
||||
[Pcd]
|
||||
gEmbeddedTokenSpaceGuid.PcdAndroidBootLoadFile2
|
||||
gEmbeddedTokenSpaceGuid.PcdAndroidKernelCommandLineOverflow
|
||||
|
|
Loading…
Reference in New Issue