diff mbox

[U-Boot,v3,9/9] dfu: tftp: Kconfig: Enable DFU_TFTP support on the am335x_boneblack_defconfig

Message ID 1439506953-23090-10-git-send-email-l.majewski@majess.pl
State Superseded
Delegated to: Ɓukasz Majewski
Headers show

Commit Message

Lukasz Majewski Aug. 13, 2015, 11:02 p.m. UTC
This commit enables support for DFU_TFTP on the am335x bone black device.

Signed-off-by: Lukasz Majewski <l.majewski@majess.pl>

---
Changes for v3:
- New patch
---
 configs/am335x_boneblack_defconfig | 1 +
 1 file changed, 1 insertion(+)

Comments

Joe Hershberger Aug. 18, 2015, 3:12 p.m. UTC | #1
Hi Lukasz,

On Thu, Aug 13, 2015 at 6:02 PM, Lukasz Majewski <l.majewski@majess.pl> wrote:
> This commit enables support for DFU_TFTP on the am335x bone black device.
>
> Signed-off-by: Lukasz Majewski <l.majewski@majess.pl>
>
> ---
> Changes for v3:
> - New patch
> ---
>  configs/am335x_boneblack_defconfig | 1 +
>  1 file changed, 1 insertion(+)
>
> diff --git a/configs/am335x_boneblack_defconfig b/configs/am335x_boneblack_defconfig
> index 60339c8..f1ff65f 100644
> --- a/configs/am335x_boneblack_defconfig
> +++ b/configs/am335x_boneblack_defconfig
> @@ -8,3 +8,4 @@ CONFIG_SYS_EXTRA_OPTIONS="EMMC_BOOT"
>  # CONFIG_CMD_FLASH is not set
>  # CONFIG_CMD_SETEXPR is not set
>  CONFIG_SPI_FLASH=y
> +CONFIG_DFU_TFTP=y

This looks like you simply added this option to the end of the list.
You should run this through "make savedefconfig" so we don't generate
churn on future config changes.
Lukasz Majewski Aug. 18, 2015, 9:28 p.m. UTC | #2
On Tue, 18 Aug 2015 10:12:46 -0500
Joe Hershberger <joe.hershberger@gmail.com> wrote:

> Hi Lukasz,
> 
> On Thu, Aug 13, 2015 at 6:02 PM, Lukasz Majewski
> <l.majewski@majess.pl> wrote:
> > This commit enables support for DFU_TFTP on the am335x bone black
> > device.
> >
> > Signed-off-by: Lukasz Majewski <l.majewski@majess.pl>
> >
> > ---
> > Changes for v3:
> > - New patch
> > ---
> >  configs/am335x_boneblack_defconfig | 1 +
> >  1 file changed, 1 insertion(+)
> >
> > diff --git a/configs/am335x_boneblack_defconfig
> > b/configs/am335x_boneblack_defconfig index 60339c8..f1ff65f 100644
> > --- a/configs/am335x_boneblack_defconfig
> > +++ b/configs/am335x_boneblack_defconfig
> > @@ -8,3 +8,4 @@ CONFIG_SYS_EXTRA_OPTIONS="EMMC_BOOT"
> >  # CONFIG_CMD_FLASH is not set
> >  # CONFIG_CMD_SETEXPR is not set
> >  CONFIG_SPI_FLASH=y
> > +CONFIG_DFU_TFTP=y
> 
> This looks like you simply added this option to the end of the list.

Yes, exactly.

> You should run this through "make savedefconfig" so we don't generate
> churn on future config changes.

Please correct me if I'm wrong. I should run make savedefconfig on the
proper .config. Then mv defconfig ./configs/am335x_boneblack_defconfig
and commit changes?

Best regards,
Lukasz Majewski
Joe Hershberger Aug. 19, 2015, 12:31 a.m. UTC | #3
Hi Lukasz,

On Tue, Aug 18, 2015 at 4:28 PM, Lukasz Majewski <l.majewski@majess.pl> wrote:
> On Tue, 18 Aug 2015 10:12:46 -0500
> Joe Hershberger <joe.hershberger@gmail.com> wrote:
>
>> Hi Lukasz,
>>
>> On Thu, Aug 13, 2015 at 6:02 PM, Lukasz Majewski
>> <l.majewski@majess.pl> wrote:
>> > This commit enables support for DFU_TFTP on the am335x bone black
>> > device.
>> >
>> > Signed-off-by: Lukasz Majewski <l.majewski@majess.pl>
>> >
>> > ---
>> > Changes for v3:
>> > - New patch
>> > ---
>> >  configs/am335x_boneblack_defconfig | 1 +
>> >  1 file changed, 1 insertion(+)
>> >
>> > diff --git a/configs/am335x_boneblack_defconfig
>> > b/configs/am335x_boneblack_defconfig index 60339c8..f1ff65f 100644
>> > --- a/configs/am335x_boneblack_defconfig
>> > +++ b/configs/am335x_boneblack_defconfig
>> > @@ -8,3 +8,4 @@ CONFIG_SYS_EXTRA_OPTIONS="EMMC_BOOT"
>> >  # CONFIG_CMD_FLASH is not set
>> >  # CONFIG_CMD_SETEXPR is not set
>> >  CONFIG_SPI_FLASH=y
>> > +CONFIG_DFU_TFTP=y
>>
>> This looks like you simply added this option to the end of the list.
>
> Yes, exactly.
>
>> You should run this through "make savedefconfig" so we don't generate
>> churn on future config changes.
>
> Please correct me if I'm wrong. I should run make savedefconfig on the
> proper .config. Then mv defconfig ./configs/am335x_boneblack_defconfig
> and commit changes?

You should add it (as you did is fine), then run 'make
am335x_boneblack_defconfig', then run 'make savedefconfig', then 'mv
defconfig configs/am335x_boneblack_defconfig'. I think this is the
process you were describing but I wanted to be explicit.

Cheers,
-Joe
Lukasz Majewski Aug. 21, 2015, 11:11 p.m. UTC | #4
On Tue, 18 Aug 2015 19:31:03 -0500
Joe Hershberger <joe.hershberger@gmail.com> wrote:

> Hi Lukasz,
> 
> On Tue, Aug 18, 2015 at 4:28 PM, Lukasz Majewski
> <l.majewski@majess.pl> wrote:
> > On Tue, 18 Aug 2015 10:12:46 -0500
> > Joe Hershberger <joe.hershberger@gmail.com> wrote:
> >
> >> Hi Lukasz,
> >>
> >> On Thu, Aug 13, 2015 at 6:02 PM, Lukasz Majewski
> >> <l.majewski@majess.pl> wrote:
> >> > This commit enables support for DFU_TFTP on the am335x bone black
> >> > device.
> >> >
> >> > Signed-off-by: Lukasz Majewski <l.majewski@majess.pl>
> >> >
> >> > ---
> >> > Changes for v3:
> >> > - New patch
> >> > ---
> >> >  configs/am335x_boneblack_defconfig | 1 +
> >> >  1 file changed, 1 insertion(+)
> >> >
> >> > diff --git a/configs/am335x_boneblack_defconfig
> >> > b/configs/am335x_boneblack_defconfig index 60339c8..f1ff65f
> >> > 100644 --- a/configs/am335x_boneblack_defconfig
> >> > +++ b/configs/am335x_boneblack_defconfig
> >> > @@ -8,3 +8,4 @@ CONFIG_SYS_EXTRA_OPTIONS="EMMC_BOOT"
> >> >  # CONFIG_CMD_FLASH is not set
> >> >  # CONFIG_CMD_SETEXPR is not set
> >> >  CONFIG_SPI_FLASH=y
> >> > +CONFIG_DFU_TFTP=y
> >>
> >> This looks like you simply added this option to the end of the
> >> list.
> >
> > Yes, exactly.
> >
> >> You should run this through "make savedefconfig" so we don't
> >> generate churn on future config changes.
> >
> > Please correct me if I'm wrong. I should run make savedefconfig on
> > the proper .config. Then mv
> > defconfig ./configs/am335x_boneblack_defconfig and commit changes?
> 
> You should add it (as you did is fine), then run 'make
> am335x_boneblack_defconfig', then run 'make savedefconfig', then 'mv
> defconfig configs/am335x_boneblack_defconfig'. I think this is the
> process you were describing but I wanted to be explicit.

The result of the above is the same as the patch I've prepared by
simply adding proper config by hand. Just pure luck :-)

> 
> Cheers,
> -Joe

Best regards,
Lukasz Majewski
Joe Hershberger Aug. 21, 2015, 11:18 p.m. UTC | #5
On Fri, Aug 21, 2015 at 6:11 PM, Lukasz Majewski <l.majewski@majess.pl> wrote:
> On Tue, 18 Aug 2015 19:31:03 -0500
> Joe Hershberger <joe.hershberger@gmail.com> wrote:
>
>> Hi Lukasz,
>>
>> On Tue, Aug 18, 2015 at 4:28 PM, Lukasz Majewski
>> <l.majewski@majess.pl> wrote:
>> > On Tue, 18 Aug 2015 10:12:46 -0500
>> > Joe Hershberger <joe.hershberger@gmail.com> wrote:
>> >
>> >> Hi Lukasz,
>> >>
>> >> On Thu, Aug 13, 2015 at 6:02 PM, Lukasz Majewski
>> >> <l.majewski@majess.pl> wrote:
>> >> > This commit enables support for DFU_TFTP on the am335x bone black
>> >> > device.
>> >> >
>> >> > Signed-off-by: Lukasz Majewski <l.majewski@majess.pl>
>> >> >
>> >> > ---
>> >> > Changes for v3:
>> >> > - New patch
>> >> > ---
>> >> >  configs/am335x_boneblack_defconfig | 1 +
>> >> >  1 file changed, 1 insertion(+)
>> >> >
>> >> > diff --git a/configs/am335x_boneblack_defconfig
>> >> > b/configs/am335x_boneblack_defconfig index 60339c8..f1ff65f
>> >> > 100644 --- a/configs/am335x_boneblack_defconfig
>> >> > +++ b/configs/am335x_boneblack_defconfig
>> >> > @@ -8,3 +8,4 @@ CONFIG_SYS_EXTRA_OPTIONS="EMMC_BOOT"
>> >> >  # CONFIG_CMD_FLASH is not set
>> >> >  # CONFIG_CMD_SETEXPR is not set
>> >> >  CONFIG_SPI_FLASH=y
>> >> > +CONFIG_DFU_TFTP=y
>> >>
>> >> This looks like you simply added this option to the end of the
>> >> list.
>> >
>> > Yes, exactly.
>> >
>> >> You should run this through "make savedefconfig" so we don't
>> >> generate churn on future config changes.
>> >
>> > Please correct me if I'm wrong. I should run make savedefconfig on
>> > the proper .config. Then mv
>> > defconfig ./configs/am335x_boneblack_defconfig and commit changes?
>>
>> You should add it (as you did is fine), then run 'make
>> am335x_boneblack_defconfig', then run 'make savedefconfig', then 'mv
>> defconfig configs/am335x_boneblack_defconfig'. I think this is the
>> process you were describing but I wanted to be explicit.
>
> The result of the above is the same as the patch I've prepared by
> simply adding proper config by hand. Just pure luck :-)

Hah! Ok, that's great. Given that the only remaining comment is the
verbosity of the Kconfig bool text, I can just change that when I
apply it. No need to resend.

Cheers,
-Joe
Lukasz Majewski Aug. 22, 2015, 9:28 p.m. UTC | #6
On Fri, 21 Aug 2015 18:18:21 -0500
Joe Hershberger <joe.hershberger@gmail.com> wrote:

> On Fri, Aug 21, 2015 at 6:11 PM, Lukasz Majewski
> <l.majewski@majess.pl> wrote:
> > On Tue, 18 Aug 2015 19:31:03 -0500
> > Joe Hershberger <joe.hershberger@gmail.com> wrote:
> >
> >> Hi Lukasz,
> >>
> >> On Tue, Aug 18, 2015 at 4:28 PM, Lukasz Majewski
> >> <l.majewski@majess.pl> wrote:
> >> > On Tue, 18 Aug 2015 10:12:46 -0500
> >> > Joe Hershberger <joe.hershberger@gmail.com> wrote:
> >> >
> >> >> Hi Lukasz,
> >> >>
> >> >> On Thu, Aug 13, 2015 at 6:02 PM, Lukasz Majewski
> >> >> <l.majewski@majess.pl> wrote:
> >> >> > This commit enables support for DFU_TFTP on the am335x bone
> >> >> > black device.
> >> >> >
> >> >> > Signed-off-by: Lukasz Majewski <l.majewski@majess.pl>
> >> >> >
> >> >> > ---
> >> >> > Changes for v3:
> >> >> > - New patch
> >> >> > ---
> >> >> >  configs/am335x_boneblack_defconfig | 1 +
> >> >> >  1 file changed, 1 insertion(+)
> >> >> >
> >> >> > diff --git a/configs/am335x_boneblack_defconfig
> >> >> > b/configs/am335x_boneblack_defconfig index 60339c8..f1ff65f
> >> >> > 100644 --- a/configs/am335x_boneblack_defconfig
> >> >> > +++ b/configs/am335x_boneblack_defconfig
> >> >> > @@ -8,3 +8,4 @@ CONFIG_SYS_EXTRA_OPTIONS="EMMC_BOOT"
> >> >> >  # CONFIG_CMD_FLASH is not set
> >> >> >  # CONFIG_CMD_SETEXPR is not set
> >> >> >  CONFIG_SPI_FLASH=y
> >> >> > +CONFIG_DFU_TFTP=y
> >> >>
> >> >> This looks like you simply added this option to the end of the
> >> >> list.
> >> >
> >> > Yes, exactly.
> >> >
> >> >> You should run this through "make savedefconfig" so we don't
> >> >> generate churn on future config changes.
> >> >
> >> > Please correct me if I'm wrong. I should run make savedefconfig
> >> > on the proper .config. Then mv
> >> > defconfig ./configs/am335x_boneblack_defconfig and commit
> >> > changes?
> >>
> >> You should add it (as you did is fine), then run 'make
> >> am335x_boneblack_defconfig', then run 'make savedefconfig', then
> >> 'mv defconfig configs/am335x_boneblack_defconfig'. I think this is
> >> the process you were describing but I wanted to be explicit.
> >
> > The result of the above is the same as the patch I've prepared by
> > simply adding proper config by hand. Just pure luck :-)
> 
> Hah! Ok, that's great. Given that the only remaining comment is the
> verbosity of the Kconfig bool text, I can just change that when I
> apply it. No need to resend.

I've found some more things (some minor and one major issue) to correct
in this patch series. Version 4 is almost ready.

> 
> Cheers,
> -Joe

Best regards,
Lukasz Majewski
diff mbox

Patch

diff --git a/configs/am335x_boneblack_defconfig b/configs/am335x_boneblack_defconfig
index 60339c8..f1ff65f 100644
--- a/configs/am335x_boneblack_defconfig
+++ b/configs/am335x_boneblack_defconfig
@@ -8,3 +8,4 @@  CONFIG_SYS_EXTRA_OPTIONS="EMMC_BOOT"
 # CONFIG_CMD_FLASH is not set
 # CONFIG_CMD_SETEXPR is not set
 CONFIG_SPI_FLASH=y
+CONFIG_DFU_TFTP=y