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
5c745d26
Commit
5c745d26
authored
21 years ago
by
Wolfgang Denk
Browse files
Options
Downloads
Patches
Plain Diff
Add JFFS2 support for INCA-IP board
parent
50015ab3
No related branches found
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
CHANGELOG
+2
-0
2 additions, 0 deletions
CHANGELOG
include/configs/incaip.h
+5
-1
5 additions, 1 deletion
include/configs/incaip.h
include/linux/stat.h
+31
-0
31 additions, 0 deletions
include/linux/stat.h
with
38 additions
and
1 deletion
CHANGELOG
+
2
−
0
View file @
5c745d26
...
...
@@ -2,6 +2,8 @@
Changes since U-Boot 1.0.0:
======================================================================
* Add JFFS2 support for INCA-IP board
* Patch by Bill Hargen, 09 Dec 2003:
- BUBINGA405EP: changed flash driver to protect top sector containing
first instruction.
...
...
This diff is collapsed.
Click to expand it.
include/configs/incaip.h
+
5
−
1
View file @
5c745d26
...
...
@@ -89,7 +89,8 @@
#define CONFIG_COMMANDS (CONFIG_CMD_DFL | \
CFG_CMD_ASKENV | \
CFG_CMD_DHCP | \
CFG_CMD_ELF )
CFG_CMD_ELF | \
CFG_CMD_JFFS2 )
#include
<cmd_confdefs.h>
/*
...
...
@@ -148,6 +149,9 @@
#define CONFIG_INCA_IP_SWITCH
#define CONFIG_NET_MULTI
#define CFG_JFFS2_FIRST_BANK 1
#define CFG_JFFS2_NUM_BANKS 1
/*-----------------------------------------------------------------------
* Cache Configuration
*/
...
...
This diff is collapsed.
Click to expand it.
include/linux/stat.h
+
31
−
0
View file @
5c745d26
...
...
@@ -94,6 +94,37 @@ struct stat {
#endif
/* __ARM__ */
#if defined (__MIPS__)
struct
stat
{
dev_t
st_dev
;
long
st_pad1
[
3
];
ino_t
st_ino
;
mode_t
st_mode
;
nlink_t
st_nlink
;
uid_t
st_uid
;
gid_t
st_gid
;
dev_t
st_rdev
;
long
st_pad2
[
2
];
off_t
st_size
;
long
st_pad3
;
/*
* Actually this should be timestruc_t st_atime, st_mtime and st_ctime
* but we don't have it under Linux.
*/
time_t
st_atime
;
long
reserved0
;
time_t
st_mtime
;
long
reserved1
;
time_t
st_ctime
;
long
reserved2
;
long
st_blksize
;
long
st_blocks
;
long
st_pad4
[
14
];
};
#endif
/* __MIPS__ */
#ifdef __cplusplus
}
#endif
...
...
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