From 18a24a9aee22932349fd6267b467714fc63e5ae2 Mon Sep 17 00:00:00 2001 From: Douglas RAILLARD Date: Tue, 18 Dec 2018 12:21:39 +0000 Subject: [PATCH] shell: Move scripts into tools Move standalone scripts into tools/ instead of shell/. Also remove buildroot stub function in lisa_shell, since it was not adding anything on top of the scripts themselves. --- shell/lisa_shell | 12 ------------ {shell => tools}/for-each-subtree.py | 0 .../lisa-buildroot-create-rootfs | 0 .../lisa-buildroot-update-kernel-config | 0 4 files changed, 12 deletions(-) rename {shell => tools}/for-each-subtree.py (100%) rename shell/lisa_buildroot_create_rootfs => tools/lisa-buildroot-create-rootfs (100%) rename shell/lisa_buildroot_update_kernel_config => tools/lisa-buildroot-update-kernel-config (100%) diff --git a/shell/lisa_shell b/shell/lisa_shell index 99bd89acf..cc1a949c2 100755 --- a/shell/lisa_shell +++ b/shell/lisa_shell @@ -416,18 +416,6 @@ function lisa-wltest-series { $WLTEST_HOME/test_series "$@" } -################################################################################ -# LISA Shell buildroot rootfs generation functions -################################################################################ - -function lisa-buildroot-create-rootfs { - "$LISA_HOME/shell/lisa_buildroot_create_rootfs" "$@" -} - -function lisa-buildroot-update-kernel-config { - "$LISA_HOME/shell/lisa_buildroot_update_kernel_config" "$@" -} - ################################################################################ # LISA Shell MAIN ################################################################################ diff --git a/shell/for-each-subtree.py b/tools/for-each-subtree.py similarity index 100% rename from shell/for-each-subtree.py rename to tools/for-each-subtree.py diff --git a/shell/lisa_buildroot_create_rootfs b/tools/lisa-buildroot-create-rootfs similarity index 100% rename from shell/lisa_buildroot_create_rootfs rename to tools/lisa-buildroot-create-rootfs diff --git a/shell/lisa_buildroot_update_kernel_config b/tools/lisa-buildroot-update-kernel-config similarity index 100% rename from shell/lisa_buildroot_update_kernel_config rename to tools/lisa-buildroot-update-kernel-config -- GitLab