summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarek Paśnikowski <marek@marekpasnikowski.pl>2024-07-22 12:07:30 +0200
committerMarek Paśnikowski <marek@marekpasnikowski.pl>2024-07-22 12:07:30 +0200
commit20fc12b09f0bc3ccf044bba9e021f8d8b7ec66fd (patch)
tree9978c2ee0d4bc1a8ad5e72837978242467d149e0
parent2550469d6337b218d2f79941a7d68307aa29a70c (diff)
feature: implement the minimal mcdowell system configuration
-rw-r--r--systems/mcdowell.scm9
1 files changed, 9 insertions, 0 deletions
diff --git a/systems/mcdowell.scm b/systems/mcdowell.scm
new file mode 100644
index 0000000..4e97866
--- /dev/null
+++ b/systems/mcdowell.scm
@@ -0,0 +1,9 @@
+(define-module (systems mcdowell)
+ #:use-module (machines portable-bios) ; portable-operating-system
+ )
+
+;; string
+(define host-name*
+ "mcdowell")
+
+(operating-system* host-name*)