-
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.
Merge tag 'for-linus' of git://github.com/openrisc/linux
Pull OpenRISC updates from Stafford Horne: "A few cleanups and compiler warning fixes for OpenRISC. Also, this includes dts and defconfig updates to enable Ethernet on OpenRISC/Litex FPGA SoC's now that the LiteEth driver has gone upstream" * tag 'for-linus' of git://github.com/openrisc/linux: openrisc/litex: Update defconfig openrisc/litex: Add ethernet device openrisc/litex: Update uart address openrisc: Fix compiler warnings in setup openrisc: rename or32 code & comments to or1k openrisc: don't printk() unconditionally
- Loading branch information
Showing
10 changed files
with
58 additions
and
40 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
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 |
---|---|---|
@@ -1,18 +1,24 @@ | ||
CONFIG_BLK_DEV_INITRD=y | ||
CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC=y | ||
CONFIG_BUG_ON_DATA_CORRUPTION=y | ||
CONFIG_CC_OPTIMIZE_FOR_SIZE=y | ||
CONFIG_DEVTMPFS=y | ||
CONFIG_DEVTMPFS_MOUNT=y | ||
CONFIG_EMBEDDED=y | ||
CONFIG_OPENRISC_BUILTIN_DTB="or1klitex" | ||
CONFIG_HZ_100=y | ||
CONFIG_INITRAMFS_SOURCE="openrisc-rootfs.cpio.gz" | ||
CONFIG_NET=y | ||
CONFIG_PACKET=y | ||
CONFIG_UNIX=y | ||
CONFIG_INET=y | ||
CONFIG_DEVTMPFS=y | ||
CONFIG_DEVTMPFS_MOUNT=y | ||
CONFIG_OF_OVERLAY=y | ||
CONFIG_OPENRISC_BUILTIN_DTB="or1klitex" | ||
CONFIG_PANIC_ON_OOPS=y | ||
CONFIG_PRINTK_TIME=y | ||
CONFIG_LITEX_SOC_CONTROLLER=y | ||
CONFIG_NETDEVICES=y | ||
CONFIG_LITEX_LITEETH=y | ||
CONFIG_SERIAL_LITEUART=y | ||
CONFIG_SERIAL_LITEUART_CONSOLE=y | ||
CONFIG_SOFTLOCKUP_DETECTOR=y | ||
CONFIG_TTY_PRINTK=y | ||
CONFIG_LITEX_SOC_CONTROLLER=y | ||
CONFIG_TMPFS=y | ||
CONFIG_PRINTK_TIME=y | ||
CONFIG_PANIC_ON_OOPS=y | ||
CONFIG_SOFTLOCKUP_DETECTOR=y | ||
CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC=y | ||
CONFIG_BUG_ON_DATA_CORRUPTION=y |
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
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,15 @@ | ||
/* SPDX-License-Identifier: GPL-2.0 */ | ||
/* | ||
* Copyright (C) 2021 Stafford Horne | ||
*/ | ||
#ifndef _ASM_OR1K_SETUP_H | ||
#define _ASM_OR1K_SETUP_H | ||
|
||
#include <linux/init.h> | ||
#include <asm-generic/setup.h> | ||
|
||
#ifndef __ASSEMBLY__ | ||
void __init or1k_early_setup(void *fdt); | ||
#endif | ||
|
||
#endif /* _ASM_OR1K_SETUP_H */ |
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
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
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
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
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 |
---|---|---|
@@ -1,6 +1,6 @@ | ||
# SPDX-License-Identifier: GPL-2.0-only | ||
# | ||
# Makefile for or32 specific library files.. | ||
# Makefile for or1k specific library files.. | ||
# | ||
|
||
obj-y := delay.o string.o memset.o memcpy.o |
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