mirror of
https://bitbucket.org/smil3y/kde-playground.git
synced 2025-02-23 18:32:51 +00:00
12 lines
472 B
Bash
Executable file
12 lines
472 B
Bash
Executable file
#!/bin/sh
|
|
set -eu
|
|
|
|
cd include
|
|
rm dmx.h frontend.h
|
|
wget https://git.kernel.org/cgit/linux/kernel/git/torvalds/linux.git/plain/include/uapi/linux/dvb/dmx.h
|
|
wget https://git.kernel.org/cgit/linux/kernel/git/torvalds/linux.git/plain/include/uapi/linux/dvb/frontend.h
|
|
unifdef -k -U__KERNEL__ -o dmx.h dmx.h || true
|
|
unifdef -k -U__KERNEL__ -o frontend.h frontend.h || true
|
|
sed 'N;s/,\n\}/\n\}/;P;D;' -i dmx.h
|
|
sed 'N;s/,\n\}/\n\}/;P;D;' -i frontend.h
|
|
sed 's/_UAPI_/_/g' -i dmx.h
|