blob: cefaa9b1a1a23b043b6f95e6ef1ee15749c1734b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
|
require u-boot.inc
SRC_URI = "${SOURCEFORGE_MIRROR}/${PN}/${PN}-${PV}.tar.bz2 \
file://arm_flags.patch;patch=1 "
SRC_URI_append_vibren = "ftp://bec-systems.com/pub/pxa255_idp/u-boot/uboot_pxa255-idp_2005-03-23.patch;patch=1"
SRC_URI_append_mnci = "file://mnci.patch;patch=1 \
file://mnci-jffs2.patch;patch=1 \
file://cmd-arm-linux.patch;patch=1 \
file://command-names.patch;patch=1"
# TODO: SRC_URI_append_rt3000
TARGET_LDFLAGS = ""
UBOOT_MACHINE_mnci = "mnci_config"
UBOOT_MACHINE_vibren = "pxa255_idp_config"
inherit base
do_compile () {
oe_runmake ${UBOOT_MACHINE}
oe_runmake all
}
#########################################################
RDEPENDS_append_mnci = " hwctrl"
FILES_${PN}_mnci = "/tmp/${UBOOT_IMAGE}"
do_install_openmn() {
install -d ${D}/tmp
install ${S}/u-boot.bin ${D}/tmp/${UBOOT_IMAGE}
}
pkg_postinst_mnci() {
ldconfig
A=/tmp/bootargs
hwctrl kernel_conf_get bootargs >$A
cp /tmp/${UBOOT_IMAGE} /dev/mtdblock/0
rm /tmp/${UBOOT_IMAGE}
hwctrl kernel_conf_set bootargs "`cat $A`"
cat /dev/mtdblock/0 >/dev/null
exit 0
}
|