aboutsummaryrefslogtreecommitdiffstats
path: root/package/util-linux-ng
Commit message (Expand)AuthorAgeFilesLines
* This patch adds a new package "flock" that allows to manage file locks from s...Jo-Philipp Wich2009-05-071-1/+17
* remove false dependence in util-linux-ngClaudio Mignanti2009-02-081-1/+0
* add missing dependency on libblkid to swap-utils, needed for swapon/off (clos...Nicolas Thill2008-09-151-1/+1
* add missing dependencies on libblkid/libuuid for mount-utils/swap-utils (shou...Nicolas Thill2008-08-201-5/+7
* fixed mount path (closes #3464)Matteo Croce2008-05-251-2/+2
* Fix mount utilites installation (#3464)Florian Fainelli2008-05-241-1/+1
* fix some wrong pathsMatteo Croce2008-05-191-15/+14
* Package mount and umountFlorian Fainelli2008-01-041-1/+16
* add back patch to fix building on avr32 and crisImre Kaloz2007-12-091-0/+11
* nuke util-linux in favor of util-linux-ng, build only what we needImre Kaloz2007-10-251-0/+119
{ color: #dd2200; background-color: #fff0f0 } /* Literal.String.Double */ .highlight .se { color: #0044dd; background-color: #fff0f0 } /* Literal.String.Escape */ .highlight .sh { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Heredoc */ .highlight .si { color: #3333bb; background-color: #fff0f0 } /* Literal.String.Interpol */ .highlight .sx { color: #22bb22; background-color: #f0fff0 } /* Literal.String.Other */ .highlight .sr { color: #008800; background-color: #fff0ff } /* Literal.String.Regex */ .highlight .s1 { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Single */ .highlight .ss { color: #aa6600; background-color: #fff0f0 } /* Literal.String.Symbol */ .highlight .bp { color: #003388 } /* Name.Builtin.Pseudo */ .highlight .fm { color: #0066bb; font-weight: bold } /* Name.Function.Magic */ .highlight .vc { color: #336699 } /* Name.Variable.Class */ .highlight .vg { color: #dd7700 } /* Name.Variable.Global */ .highlight .vi { color: #3333bb } /* Name.Variable.Instance */ .highlight .vm { color: #336699 } /* Name.Variable.Magic */ .highlight .il { color: #0000DD; font-weight: bold } /* Literal.Number.Integer.Long */
module top (
	input clk,
	input a, b, c, d
);
	default clocking @(posedge clk); endclocking

	assert property (
		a |=> b throughout (c ##1 d)
	);

`ifndef FAIL
	assume property (
		a |=> b && c
	);
	assume property (
		b && c |=> b && d
	);
`endif
endmodule