Some checks failed
Build Kernel / Build all affected Kernels (push) Has been cancelled
Build all core packages / Build all core packages for selected target (push) Has been cancelled
Build and Push prebuilt tools container / Build and Push all prebuilt containers (push) Has been cancelled
Build Toolchains / Build Toolchains for each target (push) Has been cancelled
Build host tools / Build host tools for linux and macos based systems (push) Has been cancelled
Coverity scan build / Coverity x86/64 build (push) Has been cancelled
21 lines
630 B
Diff
21 lines
630 B
Diff
From a32f7dae82774d6064181dcc989c1c1349c4e47e Mon Sep 17 00:00:00 2001
|
|
From: Richard Oliver <richard.oliver@raspberrypi.com>
|
|
Date: Thu, 20 Jun 2024 09:58:32 +0100
|
|
Subject: [PATCH 1245/1350] lib: earlycpio: export symbol find_cpio_data()
|
|
|
|
Add EXPORT_SYMBOL_GPL() for find_cpio_data() so that loadable modules
|
|
may also parse uncompressed cpio.
|
|
|
|
Signed-off-by: Richard Oliver <richard.oliver@raspberrypi.com>
|
|
---
|
|
lib/earlycpio.c | 1 +
|
|
1 file changed, 1 insertion(+)
|
|
|
|
--- a/lib/earlycpio.c
|
|
+++ b/lib/earlycpio.c
|
|
@@ -139,3 +139,4 @@ struct cpio_data find_cpio_data(const ch
|
|
quit:
|
|
return cd;
|
|
}
|
|
+EXPORT_SYMBOL_GPL(find_cpio_data);
|