Date
1 - 2 of 2
[isar-cip-core][PATCH] tmp_fs: Correct option generation
Jan Kiszka
On 18.10.22 09:26, Quirin Gylstorff wrote:
From: Quirin Gylstorff <quirin.gylstorff@...>Thanks, applied. And then I applied Uladzimir's patch on top again. Result now in next. Jan -- Siemens AG, Technology Competence Center Embedded Linux |
|
Quirin Gylstorff
From: Quirin Gylstorff <quirin.gylstorff@...>
This fixes issues https://gitlab.com/cip-project/cip-core/isar-cip-core/-/issues/44. Signed-off-by: Quirin Gylstorff <quirin.gylstorff@...> --- recipes-core/tmp-fs/tmp-fs_0.1.bb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/recipes-core/tmp-fs/tmp-fs_0.1.bb b/recipes-core/tmp-fs/tmp-fs_0.1.bb index 3ec20c7..b86b0fb 100644 --- a/recipes-core/tmp-fs/tmp-fs_0.1.bb +++ b/recipes-core/tmp-fs/tmp-fs_0.1.bb @@ -15,7 +15,7 @@ SRC_URI = "file://postinst \ TMP_FS_SIZE ?= "500M" TMP_FS_MODE ?= "755" -TMP_FS_OPTIONS = "nodev,nosuid,size=${TMP_SIZE},mode=${TMP_MODE}" +TMP_FS_OPTIONS = "nodev,nosuid,size=${TMP_FS_SIZE},mode=${TMP_FS_MODE}" TEMPLATE_FILES = "tmp.mount.tmpl" TEMPLATE_VARS += "TMP_FS_OPTIONS" -- 2.35.1 |
|