Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
R
reform-boundary-uboot
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Jack Humbert
reform-boundary-uboot
Commits
f5fcc3c2
Commit
f5fcc3c2
authored
18 years ago
by
Wolfgang Denk
Committed by
Wolfgang Denk
18 years ago
Browse files
Options
Downloads
Patches
Plain Diff
MCC200: Software Updater: allow both "ramdisk" and "filesystem" types
as root file system images.
parent
489c696a
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
board/mcc200/auto_update.c
+11
-9
11 additions, 9 deletions
board/mcc200/auto_update.c
with
11 additions
and
9 deletions
board/mcc200/auto_update.c
+
11
−
9
View file @
f5fcc3c2
...
@@ -94,21 +94,21 @@ char *aufile[AU_MAXFILES] = {
...
@@ -94,21 +94,21 @@ char *aufile[AU_MAXFILES] = {
/* sizes of flash areas for each file */
/* sizes of flash areas for each file */
long
ausize
[
AU_MAXFILES
]
=
{
long
ausize
[
AU_MAXFILES
]
=
{
(
AU_FL_FIRMWARE_ND
+
1
)
-
AU_FL_FIRMWARE_ST
,
(
AU_FL_FIRMWARE_ND
+
1
)
-
AU_FL_FIRMWARE_ST
,
(
AU_FL_KERNEL_ND
+
1
)
-
AU_FL_KERNEL_ST
,
(
AU_FL_KERNEL_ND
+
1
)
-
AU_FL_KERNEL_ST
,
(
AU_FL_ROOTFS_ND
+
1
)
-
AU_FL_ROOTFS_ST
(
AU_FL_ROOTFS_ND
+
1
)
-
AU_FL_ROOTFS_ST
,
};
};
/* array of flash areas start and end addresses */
/* array of flash areas start and end addresses */
struct
flash_layout
aufl_layout
[
AU_MAXFILES
]
=
{
struct
flash_layout
aufl_layout
[
AU_MAXFILES
]
=
{
{
AU_FL_FIRMWARE_ST
,
AU_FL_FIRMWARE_ND
,},
{
AU_FL_FIRMWARE_ST
,
AU_FL_FIRMWARE_ND
,
},
{
AU_FL_KERNEL_ST
,
AU_FL_KERNEL_ND
,},
{
AU_FL_KERNEL_ST
,
AU_FL_KERNEL_ND
,
},
{
AU_FL_ROOTFS_ST
,
AU_FL_ROOTFS_ND
,
}
{
AU_FL_ROOTFS_ST
,
AU_FL_ROOTFS_ND
,
},
};
};
/* where to load files into memory */
/* where to load files into memory */
#define LOAD_ADDR ((unsigned char *)0x00200000)
#define LOAD_ADDR ((unsigned char *)0x00200000)
/* the
app
is the largest image */
/* the
root file system
is the largest image */
#define MAX_LOADSZ ausize[IDX_ROOTFS]
#define MAX_LOADSZ ausize[IDX_ROOTFS]
/*i2c address of the keypad status*/
/*i2c address of the keypad status*/
...
@@ -193,7 +193,9 @@ int au_check_header_valid(int idx, long nbytes)
...
@@ -193,7 +193,9 @@ int au_check_header_valid(int idx, long nbytes)
printf
(
"Image %s wrong type
\n
"
,
aufile
[
idx
]);
printf
(
"Image %s wrong type
\n
"
,
aufile
[
idx
]);
return
-
1
;
return
-
1
;
}
}
if
((
idx
==
IDX_ROOTFS
)
&&
(
hdr
->
ih_type
!=
IH_TYPE_RAMDISK
))
{
if
((
idx
==
IDX_ROOTFS
)
&&
(
(
hdr
->
ih_type
!=
IH_TYPE_RAMDISK
)
||
(
hdr
->
ih_type
!=
IH_TYPE_FILESYSTEM
)
)
)
{
printf
(
"Image %s wrong type
\n
"
,
aufile
[
idx
]);
printf
(
"Image %s wrong type
\n
"
,
aufile
[
idx
]);
return
-
1
;
return
-
1
;
}
}
...
@@ -277,9 +279,9 @@ int au_do_update(int idx, long sz)
...
@@ -277,9 +279,9 @@ int au_do_update(int idx, long sz)
return
-
1
;
return
-
1
;
}
}
/* check the d
crc
of the copy */
/* check the d
ata CRC
of the copy */
if
(
crc32
(
0
,
(
uchar
*
)(
start
+
off
),
ntohl
(
hdr
->
ih_size
))
!=
ntohl
(
hdr
->
ih_dcrc
))
{
if
(
crc32
(
0
,
(
uchar
*
)(
start
+
off
),
ntohl
(
hdr
->
ih_size
))
!=
ntohl
(
hdr
->
ih_dcrc
))
{
printf
(
"Image %s Bad Data Checksum
A
fter COPY
\n
"
,
aufile
[
idx
]);
printf
(
"Image %s Bad Data Checksum
a
fter COPY
\n
"
,
aufile
[
idx
]);
return
-
1
;
return
-
1
;
}
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment