aboutsummaryrefslogtreecommitdiffstats
path: root/package/utils/mtd-utils
Commit message (Expand)AuthorAgeFilesLines
* mtd-utils: revert faulty upstream patch for nowChristian Lamparter2018-06-081-0/+30
* mtd-utils: activate --gc-sectionsHauke Mehrtens2018-04-281-0/+3
* mtd-utils: update to 2.0.2Syrone Wong2018-04-284-62/+47
* nand-utils: add flash_erase utilityAdriĆ  Llaudet2018-04-031-2/+2
* mtd-utils: Mark some lzma functions as staticHauke Mehrtens2018-04-031-19/+19
* mtd: fix compile warningsHauke Mehrtens2018-03-182-4/+4
* mtd-utils: use source package name for lzo in PKG_BUILD_DEPENDSMatthias Schiffer2017-07-081-1/+1
* mtd-utils: mark as nonsharedJo-Philipp Wich2017-01-101-0/+2
* treewide: clean up and unify PKG_VERSION for git based downloadsFelix Fietkau2016-12-221-4/+1
* treewide: clean up download hashesFelix Fietkau2016-12-161-1/+1
* source: Switch to xz for packages and tools where possibleDaniel Engberg2016-10-061-1/+2
* mtd-utils: merge ubi/nand-utils into one packageJohn Crispin2016-07-114-0/+5137
weight: bold } /* Literal.Number.Integer.Long */
module top_properties (input logic clock, read, write, ready);
	a_rw: assert property ( @(posedge clock) !(read && write) );
`ifdef FAIL
	a_wr: assert property ( @(posedge clock) write |-> ready );
`else
	a_wr: assert property ( @(posedge clock) write |=> ready );
`endif
endmodule

bind top top_properties properties_inst (.*);