summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlistair Delva <adelva@google.com>2021-04-09 11:55:43 -0700
committerMaciej Żenczykowski <maze@google.com>2021-06-29 08:12:28 +0000
commit82413484a6b925a397b08bdde8ddf7deb00cd8b6 (patch)
treebbf77707a9d42b0019d1585851fdea2281a48990
parent668071d16f17e62289e54657f8c9d5b31a60f513 (diff)
downloadtests-82413484a6b925a397b08bdde8ddf7deb00cd8b6.tar.gz
The build_rootfs.sh script will soon require the user to specify a kernel and ramdisk in order to work, so it doesn't make sense to have a "build all" script without also providing/building all the kernels, which is onerous. Change-Id: I7277ceb3ab8dd2316576c001d2b2185e53bb5e5b
-rwxr-xr-xnet/test/build_all_rootfs.sh26
1 files changed, 0 insertions, 26 deletions
diff --git a/net/test/build_all_rootfs.sh b/net/test/build_all_rootfs.sh
deleted file mode 100755
index 6e4fdd6..0000000
--- a/net/test/build_all_rootfs.sh
+++ /dev/null
@@ -1,26 +0,0 @@
-#!/bin/bash
-#
-# Copyright (C) 2019 The Android Open Source Project
-#
-# Licensed under the Apache License, Version 2.0 (the "License");
-# you may not use this file except in compliance with the License.
-# You may obtain a copy of the License at
-#
-# http://www.apache.org/licenses/LICENSE-2.0
-#
-# Unless required by applicable law or agreed to in writing, software
-# distributed under the License is distributed on an "AS IS" BASIS,
-# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-# See the License for the specific language governing permissions and
-# limitations under the License.
-#
-
-set -e
-
-for s in bullseye; do
- for a in i386 amd64 armhf arm64; do
- ./build_rootfs.sh -s "${s}" -a "${a}"
- done
-done
-
-echo 'All rootfs builds completed.'