aboutsummaryrefslogtreecommitdiffstats
path: root/package/boot/kexec-tools
Commit message (Expand)AuthorAgeFilesLines
* kexec-tools: change kdump.init STOP indexJoseph Tingiris2019-09-042-2/+2
* treewide: fix syntax errors exposed after kconfig updateJo-Philipp Wich2019-09-041-2/+2
* kexec-tools: bump version to 2.0.16Philip Prindeville2018-02-115-245/+3
* kexec-tools: issue warning when dd'ing vmcorePhilip Prindeville2018-02-112-1/+3
* kexec-tools: bump version and add support for crashdump kernelDaniel Golle2017-06-095-24/+265
* kexec-tools: get kexec running on MUSL and x86 hardwarePhilip Prindeville2017-04-032-0/+211
* kexec-tools: remove useless CONFIG_KEXEC_TOOLS_TARGET_NAME indirectionFelix Fietkau2016-12-202-11/+1
* kexec-tools: build by default, even if CONFIG_KERNEL_KEXEC is unsetFelix Fietkau2016-12-201-1/+1
* kexec-tools: enable support for x86_64Felix Fietkau2016-12-201-1/+1
* kexec-tools: update to 2.0.14-rc1, fix build errorsFelix Fietkau2016-12-207-321/+24
* kexec-tools: fix compile errorGilles Mazoyer2016-12-201-0/+11
* treewide: clean up download hashesFelix Fietkau2016-12-161-1/+1
* packages: use $(LN) macro, make symlinks relativeNicolas Thill2015-04-031-1/+1
* kexec-tools: bump version from v2.0.4 to v2.0.9.John Crispin2015-02-139-145/+329
* kexec-tools: show up only when KERNEL_KEXEC is enabled.John Crispin2015-02-131-1/+1
* license info - revert r43155John Crispin2014-11-031-3/+0
* Add more license tags with SPDX identifiersJohn Crispin2014-11-031-0/+3
* kexec-tools: disable lzma supportHauke Mehrtens2014-02-211-1/+2
* kexec: bump to latest head revisionJohn Crispin2014-01-171-2/+2
* kexec-tools: reduce sizeFelix Fietkau2013-06-282-0/+39
* kexec-tools: make zlib support optional, but enabled by defaultFelix Fietkau2013-06-282-2/+10
* move boot related packages to their own folderJohn Crispin2012-10-163-0/+204
Alan Mishchenko] Affiliation [UC Berkeley] Date [Ver. 1.0. Started - June 20, 2005.] Revision [$Id: ioReadVerilog.c,v 1.00 2005/06/20 00:00:00 alanmi Exp $] ***********************************************************************/ #include "ioAbc.h" #include "base/ver/ver.h" ABC_NAMESPACE_IMPL_START //////////////////////////////////////////////////////////////////////// /// DECLARATIONS /// //////////////////////////////////////////////////////////////////////// //extern Abc_Lib_t * Ver_ParseFile( char * pFileName, Abc_Lib_t * pGateLib, int fCheck, int fUseMemMan ); //////////////////////////////////////////////////////////////////////// /// FUNCTION DEFINITIONS /// //////////////////////////////////////////////////////////////////////// /**Function************************************************************* Synopsis [Reads hierarchical design from the Verilog file.] Description [] SideEffects [] SeeAlso [] ***********************************************************************/ Abc_Ntk_t * Io_ReadVerilog( char * pFileName, int fCheck ) { Abc_Ntk_t * pNtk, * pTemp; Abc_Lib_t * pDesign; int i, RetValue; // parse the verilog file pDesign = Ver_ParseFile( pFileName, NULL, fCheck, 1 ); if ( pDesign == NULL ) return NULL; // detect top-level model RetValue = Abc_LibFindTopLevelModels( pDesign ); pNtk = (Abc_Ntk_t *)Vec_PtrEntry( pDesign->vTops, 0 ); if ( RetValue > 1 ) { printf( "Warning: The design has %d root-level modules: ", Vec_PtrSize(pDesign->vTops) ); Vec_PtrForEachEntry( Abc_Ntk_t *, pDesign->vTops, pTemp, i ) printf( " %s", Abc_NtkName(pTemp) ); printf( "\n" ); printf( "The first one (%s) will be used.\n", pNtk->pName ); } // extract the master network pNtk->pDesign = pDesign; pDesign->pManFunc = NULL; // verify the design for cyclic dependence assert( Vec_PtrSize(pDesign->vModules) > 0 ); if ( Vec_PtrSize(pDesign->vModules) == 1 ) { // printf( "Warning: The design is not hierarchical.\n" ); Abc_LibFree( pDesign, pNtk ); pNtk->pDesign = NULL; pNtk->pSpec = Extra_UtilStrsav( pFileName ); } else { // check that there is no cyclic dependency Abc_NtkIsAcyclicHierarchy( pNtk ); } //Io_WriteVerilog( pNtk, "_temp.v" ); Abc_NtkPrintBoxInfo( pNtk ); return pNtk; } //////////////////////////////////////////////////////////////////////// /// END OF FILE /// //////////////////////////////////////////////////////////////////////// ABC_NAMESPACE_IMPL_END