From 5dfac4879ce5f34503ae7537eefd3fc48d6fa750 Mon Sep 17 00:00:00 2001 From: Kimplul Date: Wed, 25 Aug 2021 23:47:08 +0300 Subject: libfdt seems to work At least as far as reading memory info, cool. One issue I have is that .(ro)data is apparently accessed by absolute addresses, so I need to know at which address the kernel is going to be loaded. I would prefer completely position independent code, but if that's not possible then eh. --- lib/libfdt_env.h | 17 ----------------- 1 file changed, 17 deletions(-) delete mode 100644 lib/libfdt_env.h (limited to 'lib/libfdt_env.h') diff --git a/lib/libfdt_env.h b/lib/libfdt_env.h deleted file mode 100644 index 166b558..0000000 --- a/lib/libfdt_env.h +++ /dev/null @@ -1,17 +0,0 @@ -#ifndef LIBFDT_ENV_H -/* take over libfdt */ -#define LIBFDT_ENV_H - -#include -#include - -typedef int16_t fdt16_t; -typedef int32_t fdt32_t; -typedef int64_t fdt64_t; - -#define fdt32_to_cpu(x) be32_to_cpu(x) -#define cpu_to_fdt32(x) cpu_to_be32(x) -#define fdt64_to_cpu(x) be64_to_cpu(x) -#define cpu_to_fdt64(x) cpu_to_be64(x) - -#endif /* LIBFDT_ENV_H */ -- cgit v1.3