diff options
author | Chris Larson <clarson@kergoth.com> | 2004-11-09 00:36:47 +0000 |
---|---|---|
committer | Chris Larson <clarson@kergoth.com> | 2004-11-09 00:36:47 +0000 |
commit | f96441b9faf769c9ecdd4d338b605ea3d0cc4010 (patch) | |
tree | edb17ec2c4ea13c5acb1c7350957a249a820e28d /slugtool | |
parent | b6588aa6851fb220cedc387d21c51513ef8d67f4 (diff) |
Disable bk EOLN_NATIVE conversions on all files in packages FILESPATHs, to prevent it screwing up patches.
BKrev: 4190111fA4MuVozAqwE7xOSL9fr-TA
Diffstat (limited to 'slugtool')
-rw-r--r-- | slugtool/slugtool/redboot_typo.patch | 57 |
1 files changed, 57 insertions, 0 deletions
diff --git a/slugtool/slugtool/redboot_typo.patch b/slugtool/slugtool/redboot_typo.patch index e69de29bb2..e74e8fbe42 100644 --- a/slugtool/slugtool/redboot_typo.patch +++ b/slugtool/slugtool/redboot_typo.patch @@ -0,0 +1,57 @@ + +# +# Patch managed by http://www.holgerschurig.de/patcher.html +# + +--- slugtool-1.0-r0/slugtool.c~redboot_typo.patch ++++ slugtool-1.0-r0/slugtool.c +@@ -2,11 +2,11 @@ + + #define NULLFILE ((FILE *)NULL) + +-#define REDBOOK_START 0 +-#define REDBOOK_LENGTH 0x40000 ++#define REDBOOT_START 0 ++#define REDBOOT_LENGTH 0x40000 + + #define CONF_SECTION_LENGTH 0x20000 +-#define CONF_HEADER (REDBOOK_START + REDBOOK_LENGTH) ++#define CONF_HEADER (REDBOOT_START + REDBOOT_LENGTH) + #define CONF_HEADER_LENGTH 0x10 + #define CONF_START (CONF_HEADER + CONF_HEADER_LENGTH) + #define CONF_LENGTH (CONF_SECTION_LENGTH - CONF_HEADER_LENGTH) +@@ -96,10 +96,10 @@ + printf ("Unpacking '%s'....\n", filename); + fpin = fopen (filename, "r"); + +- fseek (fpin, REDBOOK_START, SEEK_SET); +- printf ("\tRedbook....\n"); +- fpout = fopen ("Redbook", "w"); +- writefile (REDBOOK_LENGTH, fpin, fpout); ++ fseek (fpin, REDBOOT_START, SEEK_SET); ++ printf ("\tRedboot....\n"); ++ fpout = fopen ("Redboot", "w"); ++ writefile (REDBOOT_LENGTH, fpin, fpout); + fclose (fpout); + + printf ("\tReading SysConf Header....\n"); +@@ -169,14 +169,14 @@ + + fpout = fopen (filename, "r+"); + +- printf ("\tRedbook....\n"); +- fpin = fopen ("Redbook", "r"); ++ printf ("\tRedboot....\n"); ++ fpin = fopen ("Redboot", "r"); + if (fpin == NULLFILE) { +- printf ("File 'Redbook' not found!\n"); ++ printf ("File 'Redboot' not found!\n"); + usage (); + } +- fseek (fpout, REDBOOK_START, SEEK_SET); +- writefile (REDBOOK_LENGTH, fpin, fpout); ++ fseek (fpout, REDBOOT_START, SEEK_SET); ++ writefile (REDBOOT_LENGTH, fpin, fpout); + fclose (fpin); + + printf ("\tSysConf....\n"); |