Patchwork two pathes about libpayload

login
register
about
Submitter baiyin cai
Date 2010-06-22 01:48:42
Message ID <AANLkTik1lwGLKviaz9aICI__tWxgmxhHQZQwmaKC1luK@mail.gmail.com>
Download mbox | patch
Permalink /patch/1539/
State Accepted
Headers show

Comments

baiyin cai - 2010-06-22 01:48:42
hi all,
    the first one lib.patch make libpayload install itself into its own
directory which instead of "/opt".
xcompile.patch which fix the libpayload xcompile script load the wrong path
of coreboot/util.

Signed-off by: Cai Bai Yin <caibaiyin.pku@gmail.com>
Marc Jones - 2010-06-22 19:13:15
Hi Bai Yin,

These changes look good. These patches are small and easy to
understand, but in the future, please send the patches in separate
emails so that they can be commented on more easily.


Acked-By: Marc Jones <marcj303@gmail.com>

r5639
r5640

On Mon, Jun 21, 2010 at 7:48 PM, baiyin cai <caibaiyin.pku@gmail.com> wrote:
> hi all,
>     the first one lib.patch make libpayload install itself into its own
> directory which instead of "/opt".
> xcompile.patch which fix the libpayload xcompile script load the wrong path
> of coreboot/util.
>
> Signed-off by: Cai Bai Yin <caibaiyin.pku@gmail.com>
>
>
>
> --
> coreboot mailing list: coreboot@coreboot.org
> http://www.coreboot.org/mailman/listinfo/coreboot
>

Patch

Index: util/xcompile/xcompile
===================================================================
--- util/xcompile/xcompile	(revision 5634)
+++ util/xcompile/xcompile	(working copy)
@@ -41,7 +41,7 @@ 
 # This should be a loop over all supported architectures
 TARCH=i386
 TWIDTH=32
-for gccprefixes in `pwd`/util/crossgcc/xgcc/bin/${TARCH}-elf- ${TARCH}-elf- ""; do
+for gccprefixes in `pwd`/../../util/crossgcc/xgcc/bin/${TARCH}-elf- ${TARCH}-elf- ""; do
 	if ! which ${gccprefixes}as 2>/dev/null >/dev/null; then
 		continue
 	fi