summaryrefslogtreecommitdiff
path: root/rbutil/rbutilqt/irivertools/checksums.h
diff options
context:
space:
mode:
authorDominik Riebeling <Dominik.Riebeling@gmail.com>2008-09-28 17:02:36 +0000
committerDominik Riebeling <Dominik.Riebeling@gmail.com>2008-09-28 17:02:36 +0000
commit197c24c5d331703b8b1d743f5699263cd623df38 (patch)
tree9c054f54f43b0c788b0760adf08595fe48643afb /rbutil/rbutilqt/irivertools/checksums.h
parent063d37b08f6110a250c1f1a70883c4c45705f7b8 (diff)
downloadrockbox-197c24c5d331703b8b1d743f5699263cd623df38.tar.gz
rockbox-197c24c5d331703b8b1d743f5699263cd623df38.zip
Completely rework the bootloader installation class:
- create a base class and make derived classes for each installation type. - sort installations by type, not by player model. - remove duplicated code for iriver (de)scrambling functionality and use the functions inside of the tools folder directly -- we already do the same for rbspeex. - make bootloader file backup optional and allow choosing a target location. - clean up some wording and add some more guiding messages. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18657 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'rbutil/rbutilqt/irivertools/checksums.h')
-rw-r--r--rbutil/rbutilqt/irivertools/checksums.h41
1 files changed, 0 insertions, 41 deletions
diff --git a/rbutil/rbutilqt/irivertools/checksums.h b/rbutil/rbutilqt/irivertools/checksums.h
deleted file mode 100644
index 6b66455f1f..0000000000
--- a/rbutil/rbutilqt/irivertools/checksums.h
+++ /dev/null
@@ -1,41 +0,0 @@
1/***************************************************************************
2 * __________ __ ___.
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
7 * \/ \/ \/ \/ \/
8 * Module: rbutil
9 * File: irivertools.h
10 *
11 * Copyright (C) 2007 Dominik Wenger
12 *
13 * This program is free software; you can redistribute it and/or
14 * modify it under the terms of the GNU General Public License
15 * as published by the Free Software Foundation; either version 2
16 * of the License, or (at your option) any later version.
17 *
18 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
19 * KIND, either express or implied.
20 *
21 ****************************************************************************/
22
23#ifndef CHECKSUMS_H
24#define CHECKSUMS_H
25
26/* precalculated checksums for H110/H115 */
27static struct sumpairs h100pairs[] = {
28#include "h100sums.h"
29};
30
31/* precalculated checksums for H120/H140 */
32static struct sumpairs h120pairs[] = {
33#include "h120sums.h"
34};
35
36/* precalculated checksums for H320/H340 */
37static struct sumpairs h300pairs[] = {
38#include "h300sums.h"
39};
40
41#endif