refactor into separate Git project
[project/fwtool.git] / src / fwimage.h
diff --git a/src/fwimage.h b/src/fwimage.h
deleted file mode 100644 (file)
index 52dcfb1..0000000
+++ /dev/null
@@ -1,39 +0,0 @@
-/*
- * Copyright (C) 2016 Felix Fietkau <nbd@nbd.name>
- *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License version 2
- * as published by the Free Software Foundation
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
- * GNU General Public License for more details.
- */
-#ifndef __FWIMAGE_H
-#define __FWIMAGE_H
-
-#include <stdint.h>
-
-#define FWIMAGE_MAGIC          0x46577830 /* FWx0 */
-
-struct fwimage_header {
-       uint32_t version;
-       uint32_t flags;
-       char data[];
-};
-
-struct fwimage_trailer {
-       uint32_t magic;
-       uint32_t crc32;
-       uint8_t type;
-       uint8_t __pad[3];
-       uint32_t size;
-};
-
-enum fwimage_type {
-       FWIMAGE_SIGNATURE,
-       FWIMAGE_INFO,
-};
-
-#endif