summaryrefslogtreecommitdiff
path: root/copy_fdd.sh
blob: 940586e5acd71bff626e0ae52774feb0763cad60 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/bin/sh

# We assume mnt/ is the directory where the image is mounted, and src/ is the directory with all the compiled files

# Update GRUB's menu.cfg
cp menu_fdd.cfg mnt/boot/menu.cfg

# copy kernel
cp src/stem/stem.elf mnt
cp src/grapes/test/test mnt

#echo "*** Launching a BASH shell, if you want to do any maintenance ***"
#bash || exit 0