Skip to content
Snippets Groups Projects
  • Iskren Chernev's avatar
    1e452fbb
    oneplus-billie2: new device (OnePlus Nord N100) · 1e452fbb
    Iskren Chernev authored
    So far the debug-shell in initfs works. The device uses dynamic
    partitions, so that has to be figured out to get a proper rootfs.
    
    One thing to look out for is that mount_subpartitions task in initfs
    hangs, so pmos_boot=sth was added to kernel cmdline to skip it. This is
    also related to dynamic partitions, anyway.
    1e452fbb
    History
    oneplus-billie2: new device (OnePlus Nord N100)
    Iskren Chernev authored
    So far the debug-shell in initfs works. The device uses dynamic
    partitions, so that has to be figured out to get a proper rootfs.
    
    One thing to look out for is that mount_subpartitions task in initfs
    hangs, so pmos_boot=sth was added to kernel cmdline to skip it. This is
    also related to dynamic partitions, anyway.
0001-Fix-function-definition.patch 1.02 KiB
From 63ffb678357b8df70db7b6c36e85dd68d06141c8 Mon Sep 17 00:00:00 2001
From: Iskren Chernev <me@iskren.info>
Date: Thu, 18 Feb 2021 14:59:40 +0200
Subject: [PATCH 1/8] Fix function definition

The current code was causing the compiler to complain about old-style
definition:

	error: this old-style function definition is not preceded by
	a prototype [-Werror,-Wstrict-prototypes]

Signed-off-by: Iskren Chernev <me@iskren.info>
---
 drivers/oneplus/coretech/memplus/core/memplus_core.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/oneplus/coretech/memplus/core/memplus_core.c b/drivers/oneplus/coretech/memplus/core/memplus_core.c
index 1f351cacca2f1..c2262df2efb35 100755
--- a/drivers/oneplus/coretech/memplus/core/memplus_core.c
+++ b/drivers/oneplus/coretech/memplus/core/memplus_core.c
@@ -128,7 +128,7 @@ static inline bool current_is_gcd(void)
 	return current == gc_tsk;
 }
 
-bool ctech_current_is_swapind() {
+bool ctech_current_is_swapind(void) {
 	return current == swapind_tsk;
 }
 
-- 
2.30.1