[U-Boot] [STATUS] Heads-up: Reorganize directory structure

Graeme Russ graeme.russ at gmail.com
Sat Apr 17 10:25:28 CEST 2010


Wolfgang Denk wrote:
> Hello Custodians,
> 
> please note that I have applied Peter Tyser's "Reorganize directory
> structure" patch series. This results in a massive change of the
> directory structure.

Just to let you know, the fix up for my i386 patch series was trivial:

#!/bin/bash

for file in ./*.patch
do
        mv "${file}" "${file}".old

        sed -e 's/lib_i386/arch\/i386\/lib/g' \
            -e 's/include\/asm-i386/arch\/i386\/include\/asm/g' \
            -e 's/cpu\/i386/arch\/i386\/cpu/g' < "${file}".old > "${file}"
done

With a minor tweak due to 'Change directory-specific CFLAGS to use full
path' patch. i386 built clean first go.

I ended up doing a complete system upgrade after SNAFU'ing my system
with a uname i686 -> i486 hack for building my target root fs :(

Will post revised patch set soon

Thanks Peter - loving the new layout

Regards,

Graeme


More information about the U-Boot mailing list