summaryrefslogtreecommitdiffstats
path: root/lib/Kconfig
diff options
context:
space:
mode:
authorMartin Hofmann <martin.hofmann@mni.thm.de>2019-01-05 19:45:12 +0100
committerSascha Hauer <s.hauer@pengutronix.de>2019-01-07 08:42:56 +0100
commita8c86dd239154ed4c5b3a7e67fdd6822a96d75f4 (patch)
tree0df9c155923e4add88ee4bd7e5e9c43051918b8c /lib/Kconfig
parentd80179baf828c8086edf68fa83ff67ab93d9a638 (diff)
downloadbarebox-a8c86dd239154ed4c5b3a7e67fdd6822a96d75f4.tar.gz
barebox-a8c86dd239154ed4c5b3a7e67fdd6822a96d75f4.tar.xz
Add generic implementation for muldi3
Since version v2018.08.0 some shared copies of gcc routines got added to barebox so that archs don't need to have their own copy inside their lib. The arch I am working on atm also needs support for muldi3 which is not present as a generic version right now. This patch adds the generic version from latest linux v4.20 to barebox and lets the archs select it in their Kconfig so they don't need to provide it themself. Signed-off-by: Martin Hofmann <martin.hofmann_at_mni.thm.de> Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
Diffstat (limited to 'lib/Kconfig')
-rw-r--r--lib/Kconfig3
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/Kconfig b/lib/Kconfig
index 67680adbb5..e048aded8b 100644
--- a/lib/Kconfig
+++ b/lib/Kconfig
@@ -145,4 +145,7 @@ config GENERIC_LIB_ASHRDI3
config GENERIC_LIB_LSHRDI3
bool
+config GENERIC_LIB_MULDI3
+ bool
+
endmenu