2014-07-08 02:34:40

by Nicholas Krause

[permalink] [raw]
Subject: Fwd: [email protected] [email protected]

---------- Forwarded message ----------
From: Nick Krause <[email protected]>
Date: Mon, Jul 7, 2014 at 10:27 PM
Subject: [email protected] [email protected]
To: [email protected]


Hey guys ,
Since the errors I get for BF561-ACVILON_defconfig not compiling link
to a failure
in a fileyou guys maintain I am sending you this email.Below my message are the
errors that make this build fail in order to help you create a patch
for these errors.
Cheer Nick
arch/blackfin/mach-bf561/boards/acvilon.c: In function
‘bfin_plat_nand_dev_ready’:
arch/blackfin/mach-bf561/boards/acvilon.c:283:2: error: implicit
declaration of function ‘gpio_get_value’
[-Werror=implicit-function-declaration]
return gpio_get_value(BFIN_NAND_PLAT_READY);
^
arch/blackfin/mach-bf561/boards/acvilon.c: In function ‘bfin_plat_nand_init’:
arch/blackfin/mach-bf561/boards/acvilon.c:318:2: error: implicit
declaration of function ‘gpio_request’
[-Werror=implicit-function-declaration]
gpio_request(BFIN_NAND_PLAT_READY, "bfin_nand_plat");
^
cc1: some warnings being treated as errors
make[1]: *** [arch/blackfin/mach-bf561/boards/acvilon.o] Error 1
make: *** [arch/blackfin/mach-bf561/boards] Error 2
make: *** Waiting for unfinished jobs....

Hey Steve
Below are the logs for the other the failures related to blackfin
buids. I didn't realize that you maintained most blackfin boards
Cheers Nick

BlackStamp_defconfig
arch/blackfin/mach-bf533/boards/blackstamp.c:478:2: error: implicit
declaration of function ‘gpio_request’
[-Werror=implicit-function-declaration]
ret = gpio_request(GPIO_PF0, "enet_cpld");
^
arch/blackfin/mach-bf533/boards/blackstamp.c:480:3: error: implicit
declaration of function ‘gpio_direction_output’
[-Werror=implicit-function-declaration]
gpio_direction_output(GPIO_PF0, 1);
^
arch/blackfin/mach-bf533/boards/blackstamp.c:481:3: error: implicit
declaration of function ‘gpio_free’
[-Werror=implicit-function-declaration]
gpio_free(GPIO_PF0);
^
cc1: some warnings being treated as errors
make[1]: *** [arch/blackfin/mach-bf533/boards/blackstamp.o] Error 1
make: *** [arch/blackfin/mach-bf533/boards] Error 2
make: *** Waiting for unfinished jobs....


TCM-BF518_defconfig
UIMAGE arch/blackfin/boot/uImage.lzma
"mkimage" command not found - U-Boot images will not be built
make[1]: *** [arch/blackfin/boot/uImage.lzma] Error 1
make: *** [uImage] Error 2


2014-07-08 09:22:07

by Steven Miao

[permalink] [raw]
Subject: Re: [email protected] [email protected]

Hi Nick,

Thanks, I'll fix these build fails.

On Tue, Jul 8, 2014 at 10:34 AM, Nick Krause <[email protected]> wrote:
> ---------- Forwarded message ----------
> From: Nick Krause <[email protected]>
> Date: Mon, Jul 7, 2014 at 10:27 PM
> Subject: [email protected] [email protected]
> To: [email protected]
>
>
> Hey guys ,
> Since the errors I get for BF561-ACVILON_defconfig not compiling link
> to a failure
> in a fileyou guys maintain I am sending you this email.Below my message are the
> errors that make this build fail in order to help you create a patch
> for these errors.
> Cheer Nick
> arch/blackfin/mach-bf561/boards/acvilon.c: In function
> ‘bfin_plat_nand_dev_ready’:
> arch/blackfin/mach-bf561/boards/acvilon.c:283:2: error: implicit
> declaration of function ‘gpio_get_value’
> [-Werror=implicit-function-declaration]
> return gpio_get_value(BFIN_NAND_PLAT_READY);
> ^
> arch/blackfin/mach-bf561/boards/acvilon.c: In function ‘bfin_plat_nand_init’:
> arch/blackfin/mach-bf561/boards/acvilon.c:318:2: error: implicit
> declaration of function ‘gpio_request’
> [-Werror=implicit-function-declaration]
> gpio_request(BFIN_NAND_PLAT_READY, "bfin_nand_plat");
> ^
> cc1: some warnings being treated as errors
> make[1]: *** [arch/blackfin/mach-bf561/boards/acvilon.o] Error 1
> make: *** [arch/blackfin/mach-bf561/boards] Error 2
> make: *** Waiting for unfinished jobs....
>
> Hey Steve
> Below are the logs for the other the failures related to blackfin
> buids. I didn't realize that you maintained most blackfin boards
> Cheers Nick
>
> BlackStamp_defconfig
> arch/blackfin/mach-bf533/boards/blackstamp.c:478:2: error: implicit
> declaration of function ‘gpio_request’
> [-Werror=implicit-function-declaration]
> ret = gpio_request(GPIO_PF0, "enet_cpld");
> ^
> arch/blackfin/mach-bf533/boards/blackstamp.c:480:3: error: implicit
> declaration of function ‘gpio_direction_output’
> [-Werror=implicit-function-declaration]
> gpio_direction_output(GPIO_PF0, 1);
> ^
> arch/blackfin/mach-bf533/boards/blackstamp.c:481:3: error: implicit
> declaration of function ‘gpio_free’
> [-Werror=implicit-function-declaration]
> gpio_free(GPIO_PF0);
> ^
> cc1: some warnings being treated as errors
> make[1]: *** [arch/blackfin/mach-bf533/boards/blackstamp.o] Error 1
> make: *** [arch/blackfin/mach-bf533/boards] Error 2
> make: *** Waiting for unfinished jobs....
>
>
> TCM-BF518_defconfig
> UIMAGE arch/blackfin/boot/uImage.lzma
> "mkimage" command not found - U-Boot images will not be built
You should install u-boot-tools to get mkimage.
> make[1]: *** [arch/blackfin/boot/uImage.lzma] Error 1
> make: *** [uImage] Error 2

-steven