Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 343601
b: refs/heads/master
c: 1892517
h: refs/heads/master
i:
  343599: 3ff569e
v: v3
  • Loading branch information
Steven Rostedt authored and Steven Rostedt committed Dec 12, 2012
1 parent e668860 commit e70bd95
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 5 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 7786954c95dbeba26ef39d2b6899bf06fbf2b629
refs/heads/master: 189251705649bdfdf5e5850eb178f8cbfdac5480
12 changes: 8 additions & 4 deletions trunk/tools/testing/ktest/ktest.pl
Original file line number Diff line number Diff line change
Expand Up @@ -1966,10 +1966,14 @@ sub make_oldconfig {

if (!run_command "$make olddefconfig") {
# Perhaps olddefconfig doesn't exist in this version of the kernel
# try a yes '' | oldconfig
doprint "olddefconfig failed, trying yes '' | make oldconfig\n";
run_command "yes '' | $make oldconfig" or
dodie "failed make config oldconfig";
# try oldnoconfig
doprint "olddefconfig failed, trying make oldnoconfig\n";
if (!run_command "$make oldnoconfig") {
doprint "oldnoconfig failed, trying yes '' | make oldconfig\n";
# try a yes '' | oldconfig
run_command "yes '' | $make oldconfig" or
dodie "failed make config oldconfig";
}
}
}

Expand Down

0 comments on commit e70bd95

Please sign in to comment.