From mboxrd@z Thu Jan 1 00:00:00 1970 From: Jon Loeliger Date: Sat, 14 Jun 2008 08:20:17 -0500 Subject: [U-Boot-Users] U-Boot and Linux on Walnut based board In-Reply-To: <200806140000.m5E00WHx027926@mail.corelis.com> References: <20080612064511.9964C240E8@gemini.denx.de> <200806121744.m5CHi2h8022515@mail.corelis.com> <200806140000.m5E00WHx027926@mail.corelis.com> Message-ID: <4853C591.40803@freescale.com> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de Brian S. Park wrote: > Wolfgang, > I tried the following versions on our old board and found that > booting linux stops working from 1.3.2-rc1. So, some change between > 1.3.1 and 1.3.2-rc1 is causing my problem. Can you give me any > pointers as to where to look? > > 1.0.0: works > 1.2.0: works > 1.3.0: works > 1.3.1: works > 1.3.2-rc1: does not work > 1.3.2: does not work > 1.3.3: does not work > > Brian > Brian, You are in an excellent position to use "git bisect" now! Do this, roughly: $ git checkout master $ git bisect start $ git bisect bad $ git bisect good v1.3.1 Compile and test the versions as indicated. Then use either $ git bisect good or $ git bisect bad as appropriate. Repeat until you have narrowed the search down to just one suspect commit! jdl