kernel 4.17 with waring about ext4 soft dep on crc32c
[cinitramfs.git] / script / static_modules_h.sh
blobb579510c989753bf510944bfd4a2395ac16e3728
1 #!/bin/sh
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"