Author: oxygene Date: Wed Apr 14 16:41:30 2010 New Revision: 5428 URL: https://tracker.coreboot.org/trac/coreboot/changeset/5428
Log: sconfig should return success when it's successful Signed-off-by: Patrick Georgi <[email protected]> Acked-by: Patrick Georgi <[email protected]> Modified: trunk/util/sconfig/sconfig.tab.c_shipped trunk/util/sconfig/sconfig.y Modified: trunk/util/sconfig/sconfig.tab.c_shipped ============================================================================== --- trunk/util/sconfig/sconfig.tab.c_shipped Wed Apr 14 16:35:40 2010 (r5427) +++ trunk/util/sconfig/sconfig.tab.c_shipped Wed Apr 14 16:41:30 2010 (r5428) @@ -2057,5 +2057,6 @@ walk_device_tree(staticc, &root, pass1, NULL); fclose(staticc); + return 0; } Modified: trunk/util/sconfig/sconfig.y ============================================================================== --- trunk/util/sconfig/sconfig.y Wed Apr 14 16:35:40 2010 (r5427) +++ trunk/util/sconfig/sconfig.y Wed Apr 14 16:41:30 2010 (r5428) @@ -497,4 +497,5 @@ walk_device_tree(staticc, &root, pass1, NULL); fclose(staticc); + return 0; } -- coreboot mailing list: [email protected] http://www.coreboot.org/mailman/listinfo/coreboot

