]> Git Repo - J-linux.git/blob - tools/memory-model/scripts/hwfnseg.sh
Merge tag 'vfs-6.13-rc7.fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/vfs/vfs
[J-linux.git] / tools / memory-model / scripts / hwfnseg.sh
1 #!/bin/sh
2 # SPDX-License-Identifier: GPL-2.0+
3 #
4 # Generate the hardware extension to the litmus-test filename, or the
5 # empty string if this is an LKMM run.  The extension is placed in
6 # the shell variable hwfnseg.
7 #
8 # Usage:
9 #       . hwfnseg.sh
10 #
11 # Copyright IBM Corporation, 2019
12 #
13 # Author: Paul E. McKenney <[email protected]>
14
15 if test -z "$LKMM_HW_MAP_FILE"
16 then
17         hwfnseg=
18 else
19         hwfnseg=".$LKMM_HW_MAP_FILE"
20 fi
This page took 0.027821 seconds and 4 git commands to generate.