// SPDX-License-Identifier: GPL-2.0 /* * fs/partitions/sysv68.c * * Copyright (C) 2007 Philippe De Muyter <[email protected]> */ #include "check.h" /* * Volume ID structure: on first 256-bytes sector of disk */ struct volumeid { … }; /* * config block: second 256-bytes sector on disk */ struct dkconfig { … }; /* * combined volumeid and dkconfig block */ struct dkblk0 { … }; /* * Slice Table Structure */ struct slice { … }; int sysv68_partition(struct parsed_partitions *state) { … }