From mboxrd@z Thu Jan 1 00:00:00 1970 From: Graeme Russ Date: Sat, 17 Apr 2010 18:25:28 +1000 Subject: [U-Boot] [STATUS] Heads-up: Reorganize directory structure In-Reply-To: <20100413092323.44D8719F60@gemini.denx.de> References: <20100413092323.44D8719F60@gemini.denx.de> Message-ID: <4BC97078.2010405@gmail.com> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de 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