Export to GitHub

grub4dos-chenall - issue #53

Enhancement - add title [IFEXIST filespec] conditional


Posted on Dec 3, 2011 by Happy Kangaroo

What steps will reproduce the problem? 1. 2. 3.

What is the expected output? What do you see instead?

What version of the product are you using? On what operating system?

Please provide any additional information below. Seems to be a compile bug - if the grub_printf lines are removed then it hangs on loading the menu! Can't find out why!!!

I have tested code fairly well and it seems OK apart from the problem mentioned above.

Attachments

Comment #1

Posted on Dec 4, 2011 by Happy Hippo

/* Now reload menu.lst back to original line */ + errnum = 0; grub_open (config_file); for (j=0; j++ < linecount; get_line_from_config (cmdline, NEW_HEAPSIZE, is_preset));

If it is an embedded, it would be wrong.

Thank you for your code, so I have some ideas,I will try to add a new command iftitle. usage: iftitle [command]title\ntitleinfo

Comment #2

Posted on Dec 4, 2011 by Happy Hippo

the new grldr for test.

add command iftitle usage: iftitle [command] titleinfo\ntitlehelp

Must have at least one space after ']'

Comment #3

Posted on Dec 4, 2011 by Happy Hippo

....

Attachments

Comment #4

Posted on Dec 4, 2011 by Happy Kangaroo

Some issues. what commands are supported - can you do IF EXIST or IF "%A%"=="xx" ?? How can you test for a file a without it displaying on screen - e.g. ls /grldr > nul causes grub4dos to abort. what use could this be used for other than ls to test for a file? Can you give some examples?

also following menu does not work if you uncomment the last title

title reload configure configfile /menu.lst

iftitle [ ls /grldr ] here is grldr using ls E boot

iftitle [ ls /grldrx ] here is grldrx using ls F boot

iftitle [ ls /grldr ] here is grldr using ls at end G

boot

Comment #5

Posted on Dec 4, 2011 by Happy Hippo

all of grub4dos commands can use here,iftitle will call function run_line.

Not spaces in "[]"

eg. iftitle [ls /grldr] here is grldr using ls e boot iftitle [ls /grldrx] here is grldrx using ls f boot iftitle [checkrange 0x80 read 0x8280] you are boot from harddisk boot

Try this one,display nothing on screen.

Attachments

Comment #6

Posted on Dec 4, 2011 by Massive Monkey

Comment deleted

Comment #7

Posted on Dec 4, 2011 by Massive Monkey

chenall

As a related matter, is it possible to improve G4D ability to ignore a Menu Section items:

if only a menu section TITLE is commented with #, ignore that full section (i.e. no need to comment # each line of the section - for easy Menu manual editing) :)

It shouldn't apply to Menu sections that don't have a Title.

Comment #8

Posted on Dec 5, 2011 by Happy Hippo

The code is updated to svn.

You can take a look for it.

for ignore full section.you can set state |= 0x10;

Comment #9

Posted on Dec 5, 2011 by Happy Kangaroo

BUG when test fails and is last in menu - please test EXACT menu shown below

iftitle [find /grldr] test find grldr echo found grldr pause root ()

iftitle [find /grldrx] test find grldrx echo found grldr pause root ()

Comment #10

Posted on Dec 6, 2011 by Happy Hippo

Thank you. the patch for this bug.

Index: stage2/stage2.c

--- stage2/stage2.c (revision 242) +++ stage2/stage2.c (working copy) @@ -2289,7 +2289,7 @@ else grub_close ();

  • if (state == 2)
  • if (state & 2) { if (num_entries < 256) num_entries++; /* the last entry is completed. */

Comment #11

Posted on Dec 6, 2011 by Happy Kangaroo

I have some issues compiling latest version under MINGW32.

build gives error

4128 bytes (4.1 kB) copied, 0.003 seconds, 1.4 MB/s 1+0 records in 1+0 records out 4128 bytes (4.1 kB) copied, 0.003 seconds, 1.4 MB/s ./build: line 139: 7z: command not found ./build: line 142: zip: command not found

Also, grldr created by this build just hangs when it is loaded - no text at all is displayed (using QMEU to test).

Some warnings reported in stage2.c build - see jpg

Attachments

Comment #12

Posted on Dec 7, 2011 by Happy Hippo

I tried.

when delete below line in builtins.c at line 12621,it works,I don't know why..

backup_hooked = putchar_hooked;

Comment #13

Posted on Dec 8, 2011 by Happy Hippo

The sources is updated.

Comment #14

Posted on Dec 9, 2011 by Happy Kangaroo

If I run build under mingw it does not make grldr. If I run make then it does make grldr. The grldr created loops before loading menu at 'Try (hd0,0): NTFS5:' and reboots and so does not work.

Comment #15

Posted on Dec 10, 2011 by Happy Hippo

Please try the new.

I use gcc version 4.3.3 (4.3.3-tdm-1 mingw32),it works.

Comment #16

Posted on Dec 13, 2011 by Happy Hippo

(No comment was entered for this change.)

Status: Done

Labels:
Type-Defect Priority-Medium