[multiboot-media-creator/development] bugfix to make building on x86_64 successful
by Dave Riches
commit e040315cdbe45faf11a4990ea883304cffc861e7
Author: Dave Riches <dcr226(a)fedorapeople.org>
Date: Sun Nov 21 14:01:18 2010 +0000
bugfix to make building on x86_64 successful
multiboot-media-creator-0.1 | 3 ++-
1 files changed, 2 insertions(+), 1 deletions(-)
---
diff --git a/multiboot-media-creator-0.1 b/multiboot-media-creator-0.1
index 8d3a449..27cb372 100755
--- a/multiboot-media-creator-0.1
+++ b/multiboot-media-creator-0.1
@@ -55,7 +55,8 @@ title Verify media
configfile /boot/grub/submenu.lst
EOT
ln -s grub.conf image/boot/grub/menu.lst
-cp -fv /usr/share/grub/i386-redhat/stage2_eltorito image/boot/grub/
+cp -fv /usr/share/grub/*-redhat/stage2_eltorito image/boot/grub/
+#cp -fv /usr/share/grub/i386-redhat/stage2_eltorito image/boot/grub/
mkisofs -R -v -V "Multi-Boot" -b boot/grub/stage2_eltorito -no-emul-boot -boot-load-size 4 -boot-info-table -allow-limited-size -o Multi-Boot.iso image
echo "Cleaning up in 5 seconds, hit <ctrl>-C to stop me"
sleep 5
12 years, 4 months
[multiboot-media-creator] (8 commits) ...Merge branch 'development'
by Dave Riches
Summary of changes:
6b48fee... removed wishlist, this is now on trac (*)
c09ea22... Merge branch 'master' into development (*)
462e68c... fixed no-copy on image (*)
d423f60... in the case for dvds, if the checksum is present its now pa (*)
5cb8d4c... fix for CHECKSUM files. Disabled large copy to test (*)
d026755... small fix (*)
7c4214e... made it copy again (*)
f42490c... Merge branch 'development'
(*) This commit already existed in another branch; no separate mail sent
12 years, 4 months
[multiboot-media-creator] update to include CHECKSUM files
by Dave Riches
commit c161b16253a2d2b8814293df84ab2373f83a8eb7
Author: Dave Riches <dcr226(a)fedorapeople.org>
Date: Wed Nov 17 17:19:33 2010 +0000
update to include CHECKSUM files
multiboot-media-creator-0.1 | 4 +++-
1 files changed, 3 insertions(+), 1 deletions(-)
---
diff --git a/multiboot-media-creator-0.1 b/multiboot-media-creator-0.1
index 567dbd1..8d3a449 100755
--- a/multiboot-media-creator-0.1
+++ b/multiboot-media-creator-0.1
@@ -18,7 +18,7 @@ EOT
for i in *iso
do
BN=$(basename $i .iso)
- mkdir -pv image/${BN}/{boot,images}
+ mkdir -pv image/${BN}/{boot,images,CHECKSUM}
mount -o loop $i tmp
grep -q live tmp/isolinux/isolinux.cfg && status="Live" || status="NotLive"
echo $status
@@ -45,6 +45,8 @@ title ${BN}
initrd /${BN}/boot/initrd.img
EOT
cp -fv $i image/${BN}/
+ CS=$(echo ${BN} | sed "s/DVD/CHECKSUM/g")
+ cp -fv $CS* image/${BN}/CHECKSUM/
umount -v tmp
fi
done
12 years, 4 months
[multiboot-media-creator/development] made it copy again
by Dave Riches
commit 7c4214ee9d1122a370d6705f1424b955637ffeca
Author: Dave <dcr226(a)fedoraproject.org>
Date: Tue Nov 16 21:25:00 2010 +0000
made it copy again
multiboot-media-creator-0.1 | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/multiboot-media-creator-0.1 b/multiboot-media-creator-0.1
index 68bf3e1..8d3a449 100755
--- a/multiboot-media-creator-0.1
+++ b/multiboot-media-creator-0.1
@@ -23,7 +23,7 @@ do
grep -q live tmp/isolinux/isolinux.cfg && status="Live" || status="NotLive"
echo $status
if [ $status = "Live" ]; then
-# cp -rfv tmp/* image/${BN}/
+ cp -rfv tmp/* image/${BN}/
cat >> image/boot/grub/grub.conf <<EOT
title ${BN}
kernel /${BN}/isolinux/vmlinuz0 root=live:LABEL=Multi-Boot live_dir=/${BN}/LiveOS/ rootfstype=auto ro liveimg quiet rhgb
@@ -44,7 +44,7 @@ title ${BN}
kernel /${BN}/boot/vmlinuz repo=hd:LABEL=Multi-Boot:/${BN}/
initrd /${BN}/boot/initrd.img
EOT
-# cp -fv $i image/${BN}/
+ cp -fv $i image/${BN}/
CS=$(echo ${BN} | sed "s/DVD/CHECKSUM/g")
cp -fv $CS* image/${BN}/CHECKSUM/
umount -v tmp
12 years, 4 months
[multiboot-media-creator/development] small fix
by Dave Riches
commit d0267557966ef3db2ed38ea690b82741df8c13c1
Author: Dave <dcr226(a)fedoraproject.org>
Date: Tue Nov 16 21:12:20 2010 +0000
small fix
0 files changed, 0 insertions(+), 0 deletions(-)
---
diff --git a/multiboot-media-creator-0.1 b/multiboot-media-creator-0.1
old mode 100644
new mode 100755
12 years, 4 months
[multiboot-media-creator/development] fix for CHECKSUM files. Disabled large copy to test
by Dave Riches
commit 5cb8d4cf240fe8554e87e17bc6ea4e4da27b1953
Author: Dave <dcr226(a)fedoraproject.org>
Date: Tue Nov 16 21:10:09 2010 +0000
fix for CHECKSUM files. Disabled large copy to test
multiboot-media-creator-0.1 | 6 ++++--
1 files changed, 4 insertions(+), 2 deletions(-)
---
diff --git a/multiboot-media-creator-0.1 b/multiboot-media-creator-0.1
index 7de045c..68bf3e1 100644
--- a/multiboot-media-creator-0.1
+++ b/multiboot-media-creator-0.1
@@ -23,7 +23,7 @@ do
grep -q live tmp/isolinux/isolinux.cfg && status="Live" || status="NotLive"
echo $status
if [ $status = "Live" ]; then
- cp -rfv tmp/* image/${BN}/
+# cp -rfv tmp/* image/${BN}/
cat >> image/boot/grub/grub.conf <<EOT
title ${BN}
kernel /${BN}/isolinux/vmlinuz0 root=live:LABEL=Multi-Boot live_dir=/${BN}/LiveOS/ rootfstype=auto ro liveimg quiet rhgb
@@ -44,7 +44,9 @@ title ${BN}
kernel /${BN}/boot/vmlinuz repo=hd:LABEL=Multi-Boot:/${BN}/
initrd /${BN}/boot/initrd.img
EOT
- cp -fv $i* image/${BN}/
+# cp -fv $i image/${BN}/
+ CS=$(echo ${BN} | sed "s/DVD/CHECKSUM/g")
+ cp -fv $CS* image/${BN}/CHECKSUM/
umount -v tmp
fi
done
12 years, 4 months
[multiboot-media-creator/development] in the case for dvds, if the checksum is present its now passed to the /image folder on the device
by Dave Riches
commit d423f60a08706e21f74effed7fd9b25fabb8cd7d
Author: Dave Riches <dcr226(a)fedorapeople.org>
Date: Tue Nov 16 18:47:46 2010 +0000
in the case for dvds, if the checksum is present its now passed to the /image folder on the device
multiboot-media-creator-0.1 | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/multiboot-media-creator-0.1 b/multiboot-media-creator-0.1
index 567dbd1..7de045c 100644
--- a/multiboot-media-creator-0.1
+++ b/multiboot-media-creator-0.1
@@ -18,7 +18,7 @@ EOT
for i in *iso
do
BN=$(basename $i .iso)
- mkdir -pv image/${BN}/{boot,images}
+ mkdir -pv image/${BN}/{boot,images,CHECKSUM}
mount -o loop $i tmp
grep -q live tmp/isolinux/isolinux.cfg && status="Live" || status="NotLive"
echo $status
@@ -44,7 +44,7 @@ title ${BN}
kernel /${BN}/boot/vmlinuz repo=hd:LABEL=Multi-Boot:/${BN}/
initrd /${BN}/boot/initrd.img
EOT
- cp -fv $i image/${BN}/
+ cp -fv $i* image/${BN}/
umount -v tmp
fi
done
12 years, 4 months
[multiboot-media-creator] added deps to README
by Dave Riches
commit d8c6daa59e64105458338af48fbbc642c66623bf
Author: Dave Riches <dcr226(a)fedorapeople.org>
Date: Fri Nov 12 18:04:40 2010 +0000
added deps to README
README | 6 ++++++
1 files changed, 6 insertions(+), 0 deletions(-)
---
diff --git a/README b/README
index 8760056..df6e406 100644
--- a/README
+++ b/README
@@ -12,3 +12,9 @@ chmod +x multiboot-media-creator-0.1
./multiboot-media-creator-0.1
the result should be a Multi-Boot.iso image which can then be used, as described above
+
+Dependencies:
+
+genisofs (more importantly mkisofs)
+rsync
+bash
12 years, 4 months
[multiboot-media-creator] added executable permission to the file
by Dave Riches
commit a5621e5fc3a80b8f2ccb6401c96fd118e5175687
Author: Dave Riches <dcr226(a)fedorapeople.org>
Date: Thu Nov 11 19:20:11 2010 +0000
added executable permission to the file
0 files changed, 0 insertions(+), 0 deletions(-)
---
diff --git a/multiboot-media-creator-0.1 b/multiboot-media-creator-0.1
old mode 100644
new mode 100755
12 years, 4 months