repo.or.cz
/
cinitramfs.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
kernel 4.18 support
[cinitramfs.git]
/
script
/
static_modules_h.sh
blob
b579510c989753bf510944bfd4a2395ac16e3728
1
#!/bin/sh
2
3
echo
"\
4
#ifndef STATIC_MODULES_H
5
#define STATIC_MODULES_H
6
ulinux_u8 *static_modules[]={"
7
IFS
=
","
8
for
m
in
$
*;
do
9
echo
"(ulinux_u8*)
\"
$m
\"
,"
10
done
11
echo
"\
12
0};
13
#endif"
14