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
232d77e7
Commit
232d77e7
authored
8 years ago
by
Tom Rini
Browse files
Options
Downloads
Plain Diff
Merge branch 'master' of
git://git.denx.de/u-boot-ubi
parents
1736121b
1cb075c6
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
common/splash_source.c
+55
-4
55 additions, 4 deletions
common/splash_source.c
include/splash.h
+2
-0
2 additions, 0 deletions
include/splash.h
with
57 additions
and
4 deletions
common/splash_source.c
+
55
−
4
View file @
232d77e7
...
...
@@ -120,6 +120,12 @@ static int splash_select_fs_dev(struct splash_location *location)
case
SPLASH_STORAGE_SATA
:
res
=
fs_set_blk_dev
(
"sata"
,
location
->
devpart
,
FS_TYPE_ANY
);
break
;
case
SPLASH_STORAGE_NAND
:
if
(
location
->
ubivol
!=
NULL
)
res
=
fs_set_blk_dev
(
"ubi"
,
NULL
,
FS_TYPE_UBIFS
);
else
res
=
-
ENODEV
;
break
;
default:
printf
(
"Error: unsupported location storage.
\n
"
);
return
-
ENODEV
;
...
...
@@ -163,6 +169,41 @@ static inline int splash_init_sata(void)
}
#endif
#ifdef CONFIG_CMD_UBIFS
static
int
splash_mount_ubifs
(
struct
splash_location
*
location
)
{
int
res
;
char
cmd
[
32
];
sprintf
(
cmd
,
"ubi part %s"
,
location
->
mtdpart
);
res
=
run_command
(
cmd
,
0
);
if
(
res
)
return
res
;
sprintf
(
cmd
,
"ubifsmount %s"
,
location
->
ubivol
);
res
=
run_command
(
cmd
,
0
);
return
res
;
}
static
inline
int
splash_umount_ubifs
(
void
)
{
return
run_command
(
"ubifsumount"
,
0
);
}
#else
static
inline
int
splash_mount_ubifs
(
struct
splash_location
*
location
)
{
printf
(
"Cannot load splash image: no UBIFS support
\n
"
);
return
-
ENOSYS
;
}
static
inline
int
splash_umount_ubifs
(
void
)
{
printf
(
"Cannot unmount UBIFS: no UBIFS support
\n
"
);
return
-
ENOSYS
;
}
#endif
#define SPLASH_SOURCE_DEFAULT_FILE_NAME "splash.bmp"
static
int
splash_load_fs
(
struct
splash_location
*
location
,
u32
bmp_load_addr
)
...
...
@@ -181,26 +222,36 @@ static int splash_load_fs(struct splash_location *location, u32 bmp_load_addr)
if
(
location
->
storage
==
SPLASH_STORAGE_SATA
)
res
=
splash_init_sata
();
if
(
location
->
ubivol
!=
NULL
)
res
=
splash_mount_ubifs
(
location
);
if
(
res
)
return
res
;
res
=
splash_select_fs_dev
(
location
);
if
(
res
)
return
res
;
goto
out
;
res
=
fs_size
(
splash_file
,
&
bmp_size
);
if
(
res
)
{
printf
(
"Error (%d): cannot determine file size
\n
"
,
res
);
return
res
;
goto
out
;
}
if
(
bmp_load_addr
+
bmp_size
>=
gd
->
start_addr_sp
)
{
printf
(
"Error: splashimage address too high. Data overwrites U-Boot and/or placed beyond DRAM boundaries.
\n
"
);
return
-
EFAULT
;
res
=
-
EFAULT
;
goto
out
;
}
splash_select_fs_dev
(
location
);
return
fs_read
(
splash_file
,
bmp_load_addr
,
0
,
0
,
NULL
);
res
=
fs_read
(
splash_file
,
bmp_load_addr
,
0
,
0
,
NULL
);
out:
if
(
location
->
ubivol
!=
NULL
)
splash_umount_ubifs
();
return
res
;
}
/**
...
...
This diff is collapsed.
Click to expand it.
include/splash.h
+
2
−
0
View file @
232d77e7
...
...
@@ -43,6 +43,8 @@ struct splash_location {
enum
splash_flags
flags
;
u32
offset
;
/* offset from start of storage */
char
*
devpart
;
/* Use the load command dev:part conventions */
char
*
mtdpart
;
/* MTD partition for ubi part */
char
*
ubivol
;
/* UBI volume-name for ubifsmount */
};
int
splash_source_load
(
struct
splash_location
*
locations
,
uint
size
);
...
...
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