summaryrefslogtreecommitdiffstats
path: root/arch/mips/mach-ath79/bbu.c
blob: 0f64e6195ad7bd79fd236109be943dcec5924180 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// SPDX-License-Identifier: GPL-2.0-or-later
/*
 * Copyright (c) 2017 Oleksij Rempel <linux@rempel-privat.de>
 */

#include <common.h>
#include <bbu.h>
#include <init.h>

static int ath79_init_bbu(void)
{
	bbu_register_std_file_update("barebox", BBU_HANDLER_FLAG_DEFAULT,
				     "/dev/spiflash.barebox",
				     filetype_mips_barebox);

	return 0;
}
postcore_initcall(ath79_init_bbu);