blob: 4b7e7b715cba5959c89d5244e859b61c41109472 (
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
|
# This kernel compiler is required by the Freecom FSG-3 machine
# Please talk to Rod Whitby before considering removing this file.
DEFAULT_PREFERENCE = "-1"
SECTION = "devel"
# cut-down gcc for kernel builds
# only installs ${TARGET_PREFIX}gcc-${PV}, not ${TARGET_PREFIX}gcc.
require gcc-cross-initial_${PV}.bb
PROVIDES = "virtual/${TARGET_PREFIX}gcc-${PV}"
SRC_URI += "file://gcc-3.4.4-makefile-fix.patch;patch=1"
do_install () {
:
}
do_stage () {
cd gcc
oe_runmake install-common install-headers install-libgcc
install -m 0755 xgcc ${CROSS_DIR}/bin/${TARGET_PREFIX}gcc-${PV}
}
|