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