diff options
author | Michael Krelin <hacker@klever.net> | 2007-05-07 21:58:16 +0000 |
---|---|---|
committer | Michael Krelin <hacker@klever.net> | 2007-05-07 21:58:16 +0000 |
commit | 518527b6271e8f0adf22ba8a69984047ed238228 (patch) | |
tree | 67254ea3e926a4ff35316a7cb0a06d38a9f6222c /packages/psplash/psplash-zap_1.0.bb | |
parent | 1c484102d87944ebda3f30bcffce3e788cfe0cf3 (diff) |
packages/psplash: added psplash-zap package with initscript to quit psplash before going for login prompt on console image.
Diffstat (limited to 'packages/psplash/psplash-zap_1.0.bb')
-rw-r--r-- | packages/psplash/psplash-zap_1.0.bb | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/packages/psplash/psplash-zap_1.0.bb b/packages/psplash/psplash-zap_1.0.bb new file mode 100644 index 0000000000..58fa3ed52b --- /dev/null +++ b/packages/psplash/psplash-zap_1.0.bb @@ -0,0 +1,13 @@ + +SRC_URI = "file://zzapsplash-init" + +do_install_prepend() { + install -d "${D}${sysconfdir}/init.d/" + install -m 0755 "${WORKDIR}/zzapsplash-init" "${D}${sysconfdir}/init.d/zzapsplash" +} + +inherit update-rc.d + +INITSCRIPT_NAME = "zzapsplash" +INITSCRIPT_PARAMS = "start 99 5 S ." + |