
14 Jun
2008
14 Jun
'08
3:20 p.m.
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