Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at f60a2abfdbf298a4722dfef331c38447fa18c4e3 8 lines 270 B view raw
1#!/bin/sh 2 3if [ ! -f "$1" ]; then 4 SEED=`od -A n -t x8 -N 32 /dev/urandom | tr -d ' \n'` 5 echo "const char *randstruct_seed = \"$SEED\";" > "$1" 6 HASH=`echo -n "$SEED" | sha256sum | cut -d" " -f1 | tr -d ' \n'` 7 echo "#define RANDSTRUCT_HASHED_SEED \"$HASH\"" > "$2" 8fi