Re: [U-Boot] [PATCHv2] buildman: Fix problem with non-existent output directories

2019-11-24 Thread Tom Rini
On Tue, Nov 19, 2019 at 03:14:33PM -0500, Tom Rini wrote: > Now that we have buildman telling genboards.cfg to use an output > directory we need to ensure that it exists. > > Cc: Bin Meng > Cc: Simon Glass > Fixes: bc750bca1246 ("tools: buildman: Honor output directory when generating >

Re: [U-Boot] [PATCHv2] buildman: Fix problem with non-existent output directories

2019-11-19 Thread Bin Meng
On Wed, Nov 20, 2019 at 4:14 AM Tom Rini wrote: > > Now that we have buildman telling genboards.cfg to use an output > directory we need to ensure that it exists. > > Cc: Bin Meng > Cc: Simon Glass > Fixes: bc750bca1246 ("tools: buildman: Honor output directory when generating > boards.cfg") >

[U-Boot] [PATCHv2] buildman: Fix problem with non-existent output directories

2019-11-19 Thread Tom Rini
Now that we have buildman telling genboards.cfg to use an output directory we need to ensure that it exists. Cc: Bin Meng Cc: Simon Glass Fixes: bc750bca1246 ("tools: buildman: Honor output directory when generating boards.cfg") Signed-off-by: Tom Rini --- Changes in v2: - Use os.makedirs()