diff options
author | Alexey Kardashevskiy <aik@ozlabs.ru> | 2017-04-26 13:08:51 +1000 |
---|---|---|
committer | Alexey Kardashevskiy <aik@ozlabs.ru> | 2017-04-26 14:29:25 +1000 |
commit | 2f1e6a73f2090bcd87eb4185763c744a290c13ad (patch) | |
tree | e1120519f8fec246315602420dbfc65192f2bfeb /slof | |
parent | 975b31f80aff26addee5d70c34de9cd1b0a204ca (diff) | |
download | SLOF-2f1e6a73f2090bcd87eb4185763c744a290c13ad.zip SLOF-2f1e6a73f2090bcd87eb4185763c744a290c13ad.tar.gz SLOF-2f1e6a73f2090bcd87eb4185763c744a290c13ad.tar.bz2 |
logo: Update the logo
This removes old ugly logo to save precious boot cycles and make it
easier to do automation scripts. This removes logo for both QEMU and JS2x
boards. As .banner does not call .slof-logo anymore, this also removes
redefinitions of .banner.
While we are here, this updates a year in the copyright notice for
the QEMU board. This also removes some spaces from the standard banner.
Suggested-by: Thomas Huth <thuth@redhat.com>
Signed-off-by: Alexey Kardashevskiy <aik@ozlabs.ru>
Reviewed-by: Thomas Huth <thuth@redhat.com>
Diffstat (limited to 'slof')
-rw-r--r-- | slof/fs/banner.fs | 4 | ||||
-rw-r--r-- | slof/fs/slof-logo.fs | 20 |
2 files changed, 2 insertions, 22 deletions
diff --git a/slof/fs/banner.fs b/slof/fs/banner.fs index d8bf406..7dfe079 100644 --- a/slof/fs/banner.fs +++ b/slof/fs/banner.fs @@ -11,8 +11,8 @@ \ ****************************************************************************/ : banner - cr ." Type 'boot' and press return to continue booting the system." - cr ." Type 'reset-all' and press return to reboot the system." + cr ." Type 'boot' and press return to continue booting the system." + cr ." Type 'reset-all' and press return to reboot the system." cr cr ; diff --git a/slof/fs/slof-logo.fs b/slof/fs/slof-logo.fs deleted file mode 100644 index 53d3184..0000000 --- a/slof/fs/slof-logo.fs +++ /dev/null @@ -1,20 +0,0 @@ -\ ***************************************************************************** -\ * Copyright (c) 2004, 2008 IBM Corporation -\ * All rights reserved. -\ * This program and the accompanying materials -\ * are made available under the terms of the BSD License -\ * which accompanies this distribution, and is available at -\ * http://www.opensource.org/licenses/bsd-license.php -\ * -\ * Contributors: -\ * IBM Corporation - initial implementation -\ ****************************************************************************/ - -: .slof-logo - cr ." ..`. .. ....... .. ...... ......." - cr ." ..`...`''.`'. .''``````..''. .`''```''`. `''``````" - cr ." .`` .:' ': `''..... .''. ''` .''..''......." - cr ." ``.':.';. ``````''`.''. .''. ''``''`````'`" - cr ." ``.':':` .....`''.`'`...... `'`.....`''.`'` " - cr ." .`.`'`` .'`'`````. ``'''''' ``''`'''`. `'` " -; |