From 090da352265f87f5e91606bdae23febdb2cbf8c3 Mon Sep 17 00:00:00 2001 From: Alexander Koskovich Date: Mon, 11 Apr 2022 21:13:13 -0700 Subject: [PATCH] sm8250-common: Sort kernel cmdline and additional flags as a list * This allows better readability and eases tracking further changes. Change-Id: I3a23f7ccb238b5f0e18dfa18080f1ae8ff51109f --- BoardConfigCommon.mk | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/BoardConfigCommon.mk b/BoardConfigCommon.mk index a4afe34..8bda5d2 100644 --- a/BoardConfigCommon.mk +++ b/BoardConfigCommon.mk @@ -43,7 +43,19 @@ TARGET_NO_BOOTLOADER := true # Kernel BOARD_BOOT_HEADER_VERSION := 2 BOARD_KERNEL_BASE := 0x00000000 -BOARD_KERNEL_CMDLINE := androidboot.hardware=qcom androidboot.console=ttyMSM0 androidboot.memcg=1 lpm_levels.sleep_disabled=1 video=vfb:640x400,bpp=32,memsize=3072000 msm_rtb.filter=0x237 service_locator.enable=1 androidboot.usbcontroller=a600000.dwc3 swiotlb=2048 loop.max_part=7 cgroup.memory=nokmem,nosocket reboot=panic_warm +BOARD_KERNEL_CMDLINE := \ + androidboot.console=ttyMSM0 \ + androidboot.hardware=qcom \ + androidboot.memcg=1 \ + androidboot.usbcontroller=a600000.dwc3 \ + cgroup.memory=nokmem,nosocket \ + loop.max_part=7 \ + lpm_levels.sleep_disabled=1 \ + msm_rtb.filter=0x237 \ + reboot=panic_warm \ + service_locator.enable=1 \ + swiotlb=2048 \ + video=vfb:640x400,bpp=32,memsize=3072000 BOARD_KERNEL_IMAGE_NAME := Image BOARD_KERNEL_PAGESIZE := 4096 BOARD_KERNEL_SEPARATED_DTBO := true