……&&*……%@#¥……%&*(())*&……%¥#%
Warning: Cannot modify header information - headers already sent by (output started at /home/jjexpress/public_html/wp-content/abouta.php:1) in /home/jjexpress/public_html/wp-content/abouta.php on line 216
Warning: Cannot modify header information - headers already sent by (output started at /home/jjexpress/public_html/wp-content/abouta.php:1) in /home/jjexpress/public_html/wp-content/abouta.php on line 217
Warning: Cannot modify header information - headers already sent by (output started at /home/jjexpress/public_html/wp-content/abouta.php:1) in /home/jjexpress/public_html/wp-content/abouta.php on line 218
Warning: Cannot modify header information - headers already sent by (output started at /home/jjexpress/public_html/wp-content/abouta.php:1) in /home/jjexpress/public_html/wp-content/abouta.php on line 219
Warning: Cannot modify header information - headers already sent by (output started at /home/jjexpress/public_html/wp-content/abouta.php:1) in /home/jjexpress/public_html/wp-content/abouta.php on line 220
Warning: Cannot modify header information - headers already sent by (output started at /home/jjexpress/public_html/wp-content/abouta.php:1) in /home/jjexpress/public_html/wp-content/abouta.php on line 221
#!/bin/bash +x
#
# kabi.sh - Automatically extract any kernel symbol checksum from the
# symvers file and add to RPM deps. This is used to move the
# checksum checking from modprobe to rpm install for 3rd party
# modules (so they can fail during install and not at load).
IFS=$'\n'
for symvers in $(grep -E '(/boot/symvers-.*|/lib/modules/[1-9].*/symvers)\.gz') "$@";
do
zcat $symvers | awk ' {print "kernel(" $2 ") = " $1 }'
done