Force coreboot mconf to create temp files in the output directory
[coreboot.git] / util / sconfig / sconfig.l
index 3d1593acacdfd712407fba45a43b14e610bf2857..50c315b0c30dd096fc3bb2971da6cd6502aba1fc 100755 (executable)
@@ -42,6 +42,8 @@ pci_domain    {yylval.number=PCI_DOMAIN; return(BUS);}
 irq            {yylval.number=IRQ; return(RESOURCE);}
 drq            {yylval.number=DRQ; return(RESOURCE);}
 io             {yylval.number=IO; return(RESOURCE);}
+inherit                {return(INHERIT);}
+subsystemid    {return(SUBSYSTEMID);}
 end            {return(END);}
 =              {return(EQUALS);}
 0x[0-9a-fA-F.]+        {yylval.string = malloc(yyleng+1); strncpy(yylval.string, yytext, yyleng); yylval.string[yyleng]='\0'; return(NUMBER);}