Commit 372b61ae authored by Florent Revest's avatar Florent Revest

initramfs-boot-android: adds a distro.conf

parent b47cf06a
distro_name="asteroid"
distro_rootfs_file="/etc/asteroid-release"
FILESEXTRAPATHS_prepend := "${THISDIR}/${PN}:"
/*
* pslash - a lightweight framebuffer splashscreen for embedded devices.
*
* Copyright (c) 2012 sleep(5) ltd
* Author: Tomas Frydrych <tomas@sleepfive.com>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2, or (at your option)
* any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
*/
#ifndef _HAVE_PSPLASH_COLORS_H
#define _HAVE_PSPLASH_COLORS_H
/* This is the overall background color */
#define PSPLASH_BACKGROUND_COLOR 0xec,0xec,0xec
/* This is the color of any text output */
#define PSPLASH_TEXT_COLOR 0x6d,0x6d,0x6d
/* This is the color of the progress bar indicator */
#define PSPLASH_BAR_COLOR 0x6d,0x6d,0x6d
/* This is the color of the progress bar background */
#define PSPLASH_BAR_BACKGROUND_COLOR 0xec,0xec,0xec
#endif
FILESEXTRAPATHS_prepend := "${THISDIR}/files:"
DEPENDS += "gdk-pixbuf-native"
SRC_URI += "file://psplash-colors.h \
file://psplash-bar-img.png"
SPLASH_IMAGES = "file://psplash-poky-img.png;outsuffix=default"
do_configure_append () {
cd ${S}
cp ../psplash-colors.h ./
cp ../psplash-bar-img.png ./psplash-bar.png
./make-image-header.sh ./psplash-bar.png BAR
}
# Erase psplash's pkg_postinst which masks psplash from systemd
pkg_postinst_${PN} () {
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment