Re: [U-Boot] [PATCH] arm: imx: Rework i.MX specific commands to be excluded from SPL

2018-01-12 Thread Stefano Babic
On 03/01/2018 14:52, Tom Rini wrote: > The "clocks" and "bootaux" commands are only usable in full U-Boot, not > SPL, so do not link them inside of SPL. Rework a little of the bootaux > related code to make use of __weak and declare parts of it static as > it's local to the file. > > Cc: Stefano

Re: [U-Boot] [PATCH] arm: imx: Rework i.MX specific commands to be excluded from SPL

2018-01-03 Thread Fabio Estevam
On Wed, Jan 3, 2018 at 11:52 AM, Tom Rini wrote: > The "clocks" and "bootaux" commands are only usable in full U-Boot, not > SPL, so do not link them inside of SPL. Rework a little of the bootaux > related code to make use of __weak and declare parts of it static as > it's

[U-Boot] [PATCH] arm: imx: Rework i.MX specific commands to be excluded from SPL

2018-01-03 Thread Tom Rini
The "clocks" and "bootaux" commands are only usable in full U-Boot, not SPL, so do not link them inside of SPL. Rework a little of the bootaux related code to make use of __weak and declare parts of it static as it's local to the file. Cc: Stefano Babic Cc: Fabio Estevam