]> xenbits.xensource.com Git - xen.git/commitdiff
automation: Remove XEN_CONFIG_EXPERT leftovers
authorXenia Ragiadakou <burzalodowa@gmail.com>
Thu, 28 Jul 2022 07:58:55 +0000 (10:58 +0300)
committerStefano Stabellini <stefano.stabellini@amd.com>
Thu, 28 Jul 2022 23:02:48 +0000 (16:02 -0700)
The EXPERT config option cannot anymore be selected via the environmental
variable XEN_CONFIG_EXPERT. Remove stale references to XEN_CONFIG_EXPERT
from the automation code.

Signed-off-by: Xenia Ragiadakou <burzalodowa@gmail.com>
Reviewed-by: Stefano Stabellini <sstabellini@kernel.org>
automation/build/README.md
automation/scripts/build
automation/scripts/containerize

index 2137957408c6f24ae59c99b54d4358dfc6ff647c..00305eed031514d08a143ea566cd8b5b932aba5d 100644 (file)
@@ -65,9 +65,6 @@ understands.
 - CONTAINER_NO_PULL: If set to 1, the script will not pull from docker hub.
   This is useful when testing container locally.
 
-- XEN_CONFIG_EXPERT: If this is defined in your shell it will be
-  automatically passed through to the container.
-
 If your docker host has Linux kernel > 4.11, and you want to use containers
 that run old glibc (for example, CentOS 6 or SLES11SP4), you may need to add
 
index 281f8b1fccd7fe29d3ea73f3400b93426d7a4560..21b3bc57c8ff44d84d2287b270d1e9d0fc325c0f 100755 (executable)
@@ -91,6 +91,6 @@ for cfg in `ls ${cfg_dir}`; do
     echo "Building $cfg"
     make -j$(nproc) -C xen clean
     rm -f xen/.config
-    make -C xen KBUILD_DEFCONFIG=../../../../${cfg_dir}/${cfg} XEN_CONFIG_EXPERT=y defconfig
-    make -j$(nproc) -C xen XEN_CONFIG_EXPERT=y
+    make -C xen KBUILD_DEFCONFIG=../../../../${cfg_dir}/${cfg} defconfig
+    make -j$(nproc) -C xen
 done
index 8992c67278aeafaff7b428673b14682e9ab23e7e..9d4beca4fa4b171fe4906dc078b013f5e3344fc9 100755 (executable)
@@ -101,7 +101,6 @@ exec ${docker_cmd} run \
     -v "${CONTAINER_PATH}":/build:rw${selinux} \
     -v "${HOME}/.ssh":/root/.ssh:ro \
     ${SSH_AUTH_DIR:+-v "${SSH_AUTH_DIR}":/tmp/ssh-agent${selinux}} \
-    ${XEN_CONFIG_EXPERT:+-e XEN_CONFIG_EXPERT=${XEN_CONFIG_EXPERT}} \
     ${CONTAINER_ARGS} \
     -${termint}i --rm -- \
     ${CONTAINER} \