summaryrefslogtreecommitdiff
path: root/generate_text.pl
blob: 845fb440327963ad0801df9dfbc3fd79ac8f8c05 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#!/usr/bin/perl

$lines = $ARGV[0];
$chars = $ARGV[1];

die unless $lines;
die unless $chars;

while ($lines--) {
	print int(rand(9)) x $chars;
	print "\n";
}
c22c7e93'/>
context:
space:
mode:
authorAndre Przywara <andre.przywara@arm.com>2016-04-11 10:17:46 +0100
committerArnd Bergmann <arnd@arndb.de>2016-04-23 22:38:08 +0200
commit987aedb5d6f6e10c5203c6d0aab9a60ec22c7e93 (patch)
treecdcbee3ca0d178d79ae33cf94b8f3427a1bc7eae /Documentation/devicetree/bindings
parentc3b46c73264b03000d1e18b22f5caf63332547c9 (diff)
generic syscalls: wire up preadv2 and pwritev2 syscalls
These new syscalls are implemented as generic code, so enable them for architectures like arm64 which use the generic syscall table. Signed-off-by: Andre Przywara <andre.przywara@arm.com> Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Diffstat (limited to 'Documentation/devicetree/bindings')