forked from coolsnowwolf/lede
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
x64: add EFI Image boot from emmc SSD support
- Loading branch information
1 parent
d9dc1d4
commit 378ca0f
Showing
9 changed files
with
1,795 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
19 changes: 19 additions & 0 deletions
19
target/linux/generic/files/drivers/platform/mikrotik/Kconfig
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
menuconfig MIKROTIK | ||
bool "Platform support for MikroTik RouterBoard virtual devices" | ||
default n | ||
help | ||
Say Y here to get to see options for the MikroTik RouterBoard platform. | ||
This option alone does not add any kernel code. | ||
|
||
|
||
if MIKROTIK | ||
|
||
config MIKROTIK_RB_SYSFS | ||
tristate "RouterBoot sysfs support" | ||
depends on MTD | ||
select LZO_DECOMPRESS | ||
select CRC32 | ||
help | ||
This driver exposes RouterBoot configuration in sysfs. | ||
|
||
endif # MIKROTIK |
4 changes: 4 additions & 0 deletions
4
target/linux/generic/files/drivers/platform/mikrotik/Makefile
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
# | ||
# Makefile for MikroTik RouterBoard platform specific drivers | ||
# | ||
obj-$(CONFIG_MIKROTIK_RB_SYSFS) += routerboot.o rb_hardconfig.o rb_softconfig.o |
Oops, something went wrong.