mirror of
https://github.com/20kdc/OC-KittenOS.git
synced 2024-11-08 11:38:07 +11:00
15 lines
513 B
Bash
Executable File
15 lines
513 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# This is released into the public domain.
|
|
# No warranty is provided, implied or otherwise.
|
|
|
|
cp ocemu.cfg.default ocemu.cfg && rm -rf c1-sda c1-sdb
|
|
mkdir c1-sda c1-sdb
|
|
echo -n c1-sda > c1-eeprom/data.bin
|
|
cd ..
|
|
cp -r code/* laboratory/c1-sdb/
|
|
cp -r repository/* laboratory/c1-sdb/
|
|
lua claw/clawconv.lua laboratory/c1-sdb/data/app-claw/ < claw/code-claw.lua > /dev/null
|
|
lua claw/clawconv.lua laboratory/c1-sdb/data/app-claw/ < claw/repo-claw.lua >> /dev/null
|
|
cp -r laboratory/c1-sdb/* laboratory/c1-sda/
|