mirror of
https://git.yoctoproject.org/psplash
synced 2025-10-14 10:38:53 +08:00
14 lines
255 B
Bash
Executable File
14 lines
255 B
Bash
Executable File
#!/bin/sh
|
|
#
|
|
# SPDX-License-Identifier: GPL-2.0-or-later
|
|
#
|
|
|
|
set -e
|
|
|
|
imageh=`basename $1 .png`-img.h
|
|
name="${2}_IMG"
|
|
gdk-pixbuf-csource --macros $1 > $imageh.tmp
|
|
sed -e "s/MY_PIXBUF/${name}/g" -e "s/guint8/uint8/g" $imageh.tmp > $imageh && rm $imageh.tmp
|
|
|
|
|