summaryrefslogtreecommitdiff
path: root/README-release
diff options
context:
space:
mode:
authorPádraig Brady <P@draigBrady.com>2013-03-22 11:10:40 +0000
committerPádraig Brady <P@draigBrady.com>2013-03-24 02:29:57 +0000
commitbb9197c40663c232422f5e0296d63d4ab6c1dc50 (patch)
treef94b032917ceba08974b0eec4b96485d691eb306 /README-release
parentdc4fbb99a98140d2287720aa277e89f21c9eb92f (diff)
downloadcoreutils-bb9197c40663c232422f5e0296d63d4ab6c1dc50.tar.xz
maint: improve make src/fs-magic-compare
* README-release: fix the `make` command, and mention how to get the latest results without requring running a system with the latest kernel. * src/local.mk (src/fs-latest-magic.h): A new target to document how/where to place the latest magic header. (src/fs-kernel-magic): Adjust to include separately downloaded header if available. (src/fs-magic): Undefine MANPAGER as it may impact the ability to pipe the output of man(1). (fs-magic-compare): Don't echo the commands run as they're distracting from the output which needs to be examined.
Diffstat (limited to 'README-release')
-rw-r--r--README-release7
1 files changed, 4 insertions, 3 deletions
diff --git a/README-release b/README-release
index e76adb70f..20fcb9e52 100644
--- a/README-release
+++ b/README-release
@@ -25,11 +25,12 @@ Here are most of the steps we (maintainers) follow when making a release.
FIXME: enable excluded programs like arch? to get their manual pages?
* Check for new file system types by running the following command on
- a system with the most recent kernel possible (e.g., Fedora rawhide):
+ a system with the most recent kernel possible, or with the latest
+ upstream include/uapi/linux/magic.h made available at src/fs-latest-magic.h
- make -C src fs-magic-compare
+ make src/fs-magic-compare
- If it finds a new file system magic number, add it to src/stat.c.
+ If it reports new file system magic numbers, add them to src/stat.c.
If it is a remote file system, add the new S_MAGIC_* name you created
in stat.c to the list of remote file system types in src/tail.c's
fremote function.