From be7a4bee3cae087f1274a6bac5355e9fdf9b49a7 Mon Sep 17 00:00:00 2001 From: Emil Velikov Date: Mon, 2 Sep 2024 18:58:35 +0100 Subject: [PATCH] testsuite: move setup-rootfs.sh to scripts/ There will be a few more scripts incoming, so let's give them a dedicated location. Signed-off-by: Emil Velikov Link: https://github.com/kmod-project/kmod/pull/86 Signed-off-by: Lucas De Marchi --- Makefile.am | 4 ++-- {testsuite => scripts}/setup-rootfs.sh | 0 2 files changed, 2 insertions(+), 2 deletions(-) rename {testsuite => scripts}/setup-rootfs.sh (100%) diff --git a/Makefile.am b/Makefile.am index 543c74f1..92f9dff7 100644 --- a/Makefile.am +++ b/Makefile.am @@ -163,12 +163,12 @@ endif # TESTSUITE # ------------------------------------------------------------------------------ -EXTRA_DIST += testsuite/setup-rootfs.sh +EXTRA_DIST += scripts/setup-rootfs.sh MODULE_PLAYGROUND = testsuite/module-playground ROOTFS = testsuite/rootfs ROOTFS_PRISTINE = $(top_srcdir)/testsuite/rootfs-pristine -CREATE_ROOTFS = $(AM_V_GEN) $(top_srcdir)/testsuite/setup-rootfs.sh $(ROOTFS_PRISTINE) $(ROOTFS) $(MODULE_PLAYGROUND) $(top_builddir)/config.h $(sysconfdir) $(module_directory) +CREATE_ROOTFS = $(AM_V_GEN) $(top_srcdir)/scripts/setup-rootfs.sh $(ROOTFS_PRISTINE) $(ROOTFS) $(MODULE_PLAYGROUND) $(top_builddir)/config.h $(sysconfdir) $(module_directory) build-module-playground: $(AM_V_GEN)if test "$(top_srcdir)" != "$(top_builddir)"; then \ diff --git a/testsuite/setup-rootfs.sh b/scripts/setup-rootfs.sh similarity index 100% rename from testsuite/setup-rootfs.sh rename to scripts/setup-rootfs.sh -- 2.47.3