repo.or.cz
/
linux_from_scratch_hints.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Add a symbolic link to the lfs-uefi-20170207.txt hint
[linux_from_scratch_hints.git]
/
ATTACHMENTS
/
entropy
/
entropy_avail.sh
blob
c984b43ea7d51700b8885b15245021af1d65adbb
1
#!/bin/sh
2
# Public domain
3
4
LOG
=
entropy_avail.log
5
touch
$LOG
6
7
while
true
;
do
8
cat
/
proc
/
sys
/
kernel
/
random
/
entropy_avail
>>
$LOG
9
sleep
1
10
tail
-n
1
$LOG
11
done