Re: [U-Boot] [PATCH v2 1/3] disk/part.c: Make features optional

2011-05-23 Thread Mike Frysinger
On Monday, May 23, 2011 17:49:42 Matthew McClintock wrote: > --- a/common/cmd_mmc.c > +++ b/common/cmd_mmc.c > @@ -180,7 +180,9 @@ int do_mmcops(cmd_tbl_t *cmdtp, int flag, int argc, > char * const argv[]) mmc_dev = mmc_get_dev(curr_device); > if (mmc_dev != NULL && >

[U-Boot] [PATCH v2 1/3] disk/part.c: Make features optional

2011-05-23 Thread Matthew McClintock
If we don't want to build support for any partition types we can now add #undef CONFIG_PARTITIONS in a board config file to keep this from being compiled in. Otherwise boards assume this is compiled in by default Signed-off-by: Matthew McClintock --- v2: Fix patch to apply to current tree Note: