From 5fae83934d9c95a7c83a00a2a6bb38f7851e20f1 Mon Sep 17 00:00:00 2001 From: Rolf Neugebauer Date: Wed, 2 Oct 2019 19:46:52 +0100 Subject: [PATCH] tests: Remove rootfs from kernel config test The rootfs fs was removed in 5.3.x but was mostly a irrelevant entry in the filesystems list anyway. Here is the upstream commit: commit fd3e007f6c6a0f677e4ee8aca4b9bab8ad6cab9a Author: Al Viro Date: Thu May 30 17:48:35 2019 -0400 don't bother with registering rootfs init_mount_tree() can get to rootfs_fs_type directly and that simplifies a lot of things. We don't need to register it, we don't need to look it up *and* we don't need to bother with preventing subsequent userland mounts. That's the way we should've done that from the very beginning. There is a user-visible change, namely the disappearance of "rootfs" from /proc/filesystems. Note that it's been unmountable all along and it didn't show up in /proc/mounts; however, it *is* a user-visible change and theoretically some script might've been using its presence in /proc/filesystems to tell 2.4.11+ from earlier kernels. *IF* any complaints about behaviour change do show up, we could fake it in /proc/filesystems. I very much doubt we'll have to, though. Signed-off-by: Al Viro Signed-off-by: Rolf Neugebauer --- test/pkg/kernel-config/check-kernel-config.sh | 1 - 1 file changed, 1 deletion(-) diff --git a/test/pkg/kernel-config/check-kernel-config.sh b/test/pkg/kernel-config/check-kernel-config.sh index 5b4479438..5b86d2a3b 100755 --- a/test/pkg/kernel-config/check-kernel-config.sh +++ b/test/pkg/kernel-config/check-kernel-config.sh @@ -130,7 +130,6 @@ done # check filesystems that are built in for fs in \ sysfs \ -rootfs \ tmpfs \ bdev \ proc \