This should definitely fix CD booting, it was still looking for the tgz at 192k while zbeos is now almost 300k... Maybe we need something more failproof but it shoudl do for now.

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@28965 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
François Revol 2009-01-20 04:40:57 +00:00
parent f62e434974
commit 9b7603b992

View File

@ -33,7 +33,7 @@
#endif
static const uint32 kFloppyArchiveOffset = 192 * 1024; // at 192 kB
static const uint32 kFloppyArchiveOffset = BOOT_ARCHIVE_IMAGE_OFFSET * 1024; // initially at 192 kB, now defined at build time
static const size_t kTarRegionSize = 16 * 1024 * 1024; // 16 MB
namespace TarFS {