blob: bc5956d2c46b5df127d2941b62b7d8dfece2d601 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
# bootsplash-native OE build file
# Copyright (C) 2004, Advanced Micro Devices, Inc. All Rights Reserved
# Released under the MIT license (see packages/COPYING)
require bootsplash_${PV}.bb
DEPENDS += "jpeg-native"
inherit native
S="${WORKDIR}/bootsplash-${PV}"
do_compile() {
oe_runmake splash
}
do_stage() {
install -d ${STAGING_BINDIR}
install -m 0755 Utilities/splash ${STAGING_BINDIR}/splash
}
|