Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
linux
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
linux
Commits
34fc0f54
Commit
34fc0f54
authored
Sep 09, 2002
by
Linus Torvalds
Committed by
Linus Torvalds
Sep 09, 2002
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
atari_rootsec.h moved to fs/partitions/atari.h, but somehow the
version in include/linux didn't get deleted.
parent
81e0a1a6
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
34 deletions
+0
-34
include/linux/atari_rootsec.h
include/linux/atari_rootsec.h
+0
-34
No files found.
include/linux/atari_rootsec.h
deleted
100644 → 0
View file @
81e0a1a6
#ifndef _LINUX_ATARI_ROOTSEC_H
#define _LINUX_ATARI_ROOTSEC_H
/*
* linux/include/linux/atari_rootsec.h
* definitions for Atari Rootsector layout
* by Andreas Schwab (schwab@ls5.informatik.uni-dortmund.de)
*
* modified for ICD/Supra partitioning scheme restricted to at most 12
* partitions
* by Guenther Kelleter (guenther@pool.informatik.rwth-aachen.de)
*/
struct
partition_info
{
u_char
flg
;
/* bit 0: active; bit 7: bootable */
char
id
[
3
];
/* "GEM", "BGM", "XGM", or other */
u32
st
;
/* start of partition */
u32
siz
;
/* length of partition */
};
struct
rootsector
{
char
unused
[
0x156
];
/* room for boot code */
struct
partition_info
icdpart
[
8
];
/* info for ICD-partitions 5..12 */
char
unused2
[
0xc
];
u32
hd_siz
;
/* size of disk in blocks */
struct
partition_info
part
[
4
];
u32
bsl_st
;
/* start of bad sector list */
u32
bsl_cnt
;
/* length of bad sector list */
u16
checksum
;
/* checksum for bootable disks */
}
__attribute__
((
__packed__
));
#endif
/* _LINUX_ATARI_ROOTSEC_H */
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment