1 |
diff -Nur -x '*.orig' -x '*.rej' e-smith-grub-1.0.0/root/etc/e-smith/templates/boot/grub/grub.conf/UpdateSplash mezzanine_patched_e-smith-grub-1.0.0/root/etc/e-smith/templates/boot/grub/grub.conf/UpdateSplash |
2 |
--- e-smith-grub-1.0.0/root/etc/e-smith/templates/boot/grub/grub.conf/UpdateSplash 1969-12-31 17:00:00.000000000 -0700 |
3 |
+++ mezzanine_patched_e-smith-grub-1.0.0/root/etc/e-smith/templates/boot/grub/grub.conf/UpdateSplash 2007-07-13 13:44:31.000000000 -0600 |
4 |
@@ -0,0 +1,14 @@ |
5 |
+{ |
6 |
+ our @newlines; |
7 |
+ foreach( @lines ) { |
8 |
+ next if /^foreground/ || /^background/; |
9 |
+ if ( s/^splashimage=(.*)/splash\.xpm\.gz/splashimage=$1/smeserver.xpm.gz/ ) { |
10 |
+ push @newlines, $_; |
11 |
+ push @newlines, "foreground 000000"; |
12 |
+ push @newlines, "background 4E95D3"; |
13 |
+ } else { |
14 |
+ push @newlines, $_; |
15 |
+ } |
16 |
+ } |
17 |
+ $OUT = ""; |
18 |
+} |