From 34b2ef68e19f5909f3e61bb70ffa36d2a26a29fa Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Sun, 28 Dec 2025 15:45:18 +0000 Subject: [PATCH] Add clone-sparkos.sh script to root home directory Co-authored-by: johndoe6345789 <224850594+johndoe6345789@users.noreply.github.com> --- rootfs/root/clone-sparkos.sh | 2 ++ scripts/setup_rootfs.sh | 8 ++++++++ 2 files changed, 10 insertions(+) create mode 100755 rootfs/root/clone-sparkos.sh diff --git a/rootfs/root/clone-sparkos.sh b/rootfs/root/clone-sparkos.sh new file mode 100755 index 0000000..6f7fb28 --- /dev/null +++ b/rootfs/root/clone-sparkos.sh @@ -0,0 +1,2 @@ +#!/bin/sh +git clone https://github.com/johndoe6345789/SparkOS.git diff --git a/scripts/setup_rootfs.sh b/scripts/setup_rootfs.sh index 7146b1f..f211d33 100755 --- a/scripts/setup_rootfs.sh +++ b/scripts/setup_rootfs.sh @@ -111,6 +111,14 @@ export EDITOR=vi export PAGER=less EOF +# Create git clone script for SparkOS repository +cat > "$ROOTFS_DIR/root/clone-sparkos.sh" << 'EOF' +#!/bin/sh +git clone https://github.com/johndoe6345789/SparkOS.git +EOF + +chmod +x "$ROOTFS_DIR/root/clone-sparkos.sh" + # Create a simple help script cat > "$ROOTFS_DIR/bin/sparkos-help" << 'EOF' #!/bin/sh