From 46f24f94e39a6925be48d33e77a4999c82b5f967 Mon Sep 17 00:00:00 2001 From: Keagan McClelland Date: Thu, 14 Oct 2021 11:16:54 -0600 Subject: [PATCH] change random to urandom in build process --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index acf8f557b..14d539dbf 100644 --- a/Makefile +++ b/Makefile @@ -34,7 +34,7 @@ ubuntu.img: product_key.txt: $(shell which echo) -n "X" > product_key.txt - cat /dev/random | base32 | head -c11 | tr '[:upper:]' '[:lower:]' >> product_key.txt + cat /dev/urandom | base32 | head -c11 | tr '[:upper:]' '[:lower:]' >> product_key.txt echo >> product_key.txt $(EMBASSY_BINS): $(APPMGR_SRC)