From e55bfd6c9dd864ffbe6eb86554d557c5251c0081 Mon Sep 17 00:00:00 2001 From: James Byrne Date: Tue, 26 Nov 2019 09:52:04 +0000 Subject: [PATCH] package/minicom: make default port and lock directory fixed defaults Minicom's configure script will set values for the default port and lock directory based on the configuration of the host machine, which is not useful for cross-compiling or reproducible builds, so instead set them to sensible default values. Signed-off-by: James Byrne Signed-off-by: Thomas Petazzoni (cherry picked from commit eeaa4328004dff1a45483bfde1fb80cc03724c0b) Signed-off-by: Peter Korsgaard --- package/minicom/minicom.mk | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/package/minicom/minicom.mk b/package/minicom/minicom.mk index a3c58d2d4e..e42cd5c2ab 100644 --- a/package/minicom/minicom.mk +++ b/package/minicom/minicom.mk @@ -22,4 +22,8 @@ define MINICOM_MKDIR_M4 endef MINICOM_POST_PATCH_HOOKS += MINICOM_MKDIR_M4 +MINICOM_CONF_OPTS = \ + --enable-dfl-port=/dev/ttyS1 \ + --enable-lock-dir=/var/lock + $(eval $(autotools-package))