summaryrefslogtreecommitdiffstats
path: root/src/basic/linux/update.sh
blob: 6155766aaf87510bca12a2d8092afb29c2feb2d7 (plain)
1
2
3
4
5
6
7
8
9
10
11
#!/usr/bin/env bash
# SPDX-License-Identifier: LGPL-2.1-or-later
set -eu
set -o pipefail

for i in *.h */*.h; do
    curl --fail "https://raw.githubusercontent.com/torvalds/linux/master/include/uapi/linux/$i" -o "$i"

    sed -r -i -e 's/__user //g' -e '/^#include <linux\/compiler(_types)?.h>/ d' "$i"
    sed -r -i 's/^(#include <linux\/fs\.h>)/#if WANT_LINUX_FS_H\n\1\n#endif/' "$i"
done