| Index: sys-boot/u-boot/u-boot-9999.ebuild
|
| diff --git a/sys-boot/u-boot/u-boot-9999.ebuild b/sys-boot/u-boot/u-boot-9999.ebuild
|
| index 4e64e6299139b7bd278e696ea621d9dbc19d5ba2..354e7239dfc26e305da2c9b6f7b6c4f831e35107 100644
|
| --- a/sys-boot/u-boot/u-boot-9999.ebuild
|
| +++ b/sys-boot/u-boot/u-boot-9999.ebuild
|
| @@ -12,8 +12,10 @@ SLOT="0"
|
| KEYWORDS="~arm"
|
| IUSE=""
|
|
|
| -DEPEND=""
|
| -RDEPEND="${DEPEND}"
|
| +# U-Boot should have no runtime dependencies; everything it depends on must be
|
| +# statically linked.
|
| +RDEPEND=""
|
| +DEPEND="chromeos-base/vboot_reference"
|
|
|
| u_boot=${CHROMEOS_U_BOOT:-"files"}
|
| config=${CHROMEOS_U_BOOT_CONFIG:-"versatile_config"}
|
| @@ -46,6 +48,7 @@ src_compile() {
|
| USE_PRIVATE_LIBGCC=yes \
|
| HOSTCC=${CC} \
|
| HOSTSTRIP=${STRIP} \
|
| + VBOOT="${ROOT}/usr" \
|
| all || die "U-Boot compile failed"
|
| }
|
|
|
|
|