diff options
author | Frans Meulenbroeks <fransmeulenbroeks@gmail.com> | 2009-01-27 23:59:57 +0100 |
---|---|---|
committer | Frans Meulenbroeks <fransmeulenbroeks@gmail.com> | 2009-01-27 23:59:57 +0100 |
commit | 11ce1c84e98a594caf7b501d8428c06a42c8e3c7 (patch) | |
tree | b1c105ac5ce3a8657b5e5c2fa46a40f24a7bd49b /packages/kexecboot/kexecboot-0.4/scan_devices-top.patch | |
parent | b4ce41c571c04d324e5bf67a1647277c467f5b99 (diff) | |
parent | ffee230ed0b6c49ef4a0b23bc850b843c429f19a (diff) |
Merge branch 'org.openembedded.dev' of git@git.openembedded.net:openembedded into org.openembedded.dev
Diffstat (limited to 'packages/kexecboot/kexecboot-0.4/scan_devices-top.patch')
-rw-r--r-- | packages/kexecboot/kexecboot-0.4/scan_devices-top.patch | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/packages/kexecboot/kexecboot-0.4/scan_devices-top.patch b/packages/kexecboot/kexecboot-0.4/scan_devices-top.patch new file mode 100644 index 0000000000..6b21d03a3d --- /dev/null +++ b/packages/kexecboot/kexecboot-0.4/scan_devices-top.patch @@ -0,0 +1,39 @@ +--- a/kexecboot.c ++++ b/kexecboot.c +@@ -508,28 +508,27 @@ int main(int argc, char **argv) + if ((fb = fb_new(angle)) == NULL) + exit(-1); + +- bl = scan_devices(); +- +- if(!bl->size){ +- puts("No bootable device found"); +- exit(-1); +- } +- + f = fopen(eventif,"r"); + if(!f){ + perror(eventif); + exit(3); + } + +- + // deactivate terminal input +- + tcgetattr(fileno(stdin), &old); + new = old; + new.c_lflag &= ~ECHO; + // new.c_cflag &=~CREAD; + tcsetattr(fileno(stdin), TCSANOW, &new); + ++ bl = scan_devices(); ++/* ++ if(!bl->size){ ++ puts("No bootable device found"); ++ exit(-1); ++ } ++*/ ++ + do{ + display_menu(fb, bl, choice); + do |