cachepc-linux

Fork of AMDESE/linux with modifications for CachePC side-channel attack
git clone https://git.sinitax.com/sinitax/cachepc-linux
Log | Files | Refs | README | LICENSE | sfeed.txt

fsconfig.sh (379B)


      1#!/bin/sh
      2# SPDX-License-Identifier: LGPL-2.1
      3
      4if [ $# -ne 1 ] ; then
      5	linux_header_dir=tools/include/uapi/linux
      6else
      7	linux_header_dir=$1
      8fi
      9
     10linux_mount=${linux_header_dir}/mount.h
     11
     12printf "static const char *fsconfig_cmds[] = {\n"
     13ms='[[:space:]]*'
     14sed -nr "s/^${ms}FSCONFIG_([[:alnum:]_]+)${ms}=${ms}([[:digit:]]+)${ms},.*/\t[\2] = \"\1\",/p" \
     15	${linux_mount}
     16printf "};\n"