• Skip to sidebar navigation
  • Skip to content

Bitbucket

  • More
    ProjectsRepositories
  • Help
    • Online help
    • Learn Git
    • Welcome to Bitbucket
    • Keyboard shortcuts
  • Log In
Alexander Dahl
  1. Alexander Dahl

buildroot

Public
Actions
  • Clone
  • Compare

Learn more about cloning repositories

You have read-only access

Navigation
  • Source
  • Commits
  • Branches
  • All Branches Graph
  • Forks
  1. Alexander Dahl
  2. buildroot

Source

buildroot/boot/uboot/2015.07/0001-Revert-arch-Make-board-selection-choices-optional.patch
Alexey BrodkinAlexey Brodkin committed aacf0ae9e3e31 Jul 2015
Raw file
Source viewDiff to previous
xxxxxxxxxx
diff --git a/arch/arm/mach-tegra/tegra114/Kconfig b/arch/arm/mach-tegra/tegra114/Kconfig
 
1
From ee11fed43e2bd029f71af1e72ab9bb5652f5fc54 Mon Sep 17 00:00:00 2001
2
From: Alexey Brodkin <abrodkin@synopsys.com>
3
Date: Wed, 29 Jul 2015 20:32:59 +0300
4
Subject: [PATCH] Revert "arch: Make board selection choices optional"
5
​
6
This reverts commit a26cd04920dc069fd6e91abb785426cf6c29f45f.
7
​
8
Reverted commit caused an issue with "make oldconfig" - default prompt
9
for target selection was set as No that lead to missing platform
10
selection by automated scripts like that:
11
------------------>8------------------
12
"yes "" | make oldconfig" on defconfig
13
------------------>8------------------
14
​
15
And that lead to build failure:
16
------------------>8------------------
17
$ make
18
scripts/kconfig/conf --silentoldconfig Kconfig
19
  CHK     include/config.h
20
  UPD     include/config.h
21
  GEN     include/autoconf.mk
22
In file included from ./include/common.h:18:0:
23
include/config.h:5:22: fatal error: configs/.h: No such file or directory
24
 #include <configs/.h>
25
                      ^
26
compilation terminated.
27
scripts/Makefile.autoconf:72: recipe for target 'include/autoconf.mk' failed
28
make[1]: *** [include/autoconf.mk] Error 1
29
------------------>8------------------
30
​
31
Signed-off-by: Alexey Brodkin <abrodkin@synopsys.com>
32
---
33
 arch/arc/Kconfig                     | 1 -
34
 arch/arm/Kconfig                     | 1 -
35
 arch/arm/cpu/armv7/exynos/Kconfig    | 1 -
36
 arch/arm/cpu/armv7/mx5/Kconfig       | 1 -
37
 arch/arm/cpu/armv7/mx6/Kconfig       | 1 -
38
 arch/arm/cpu/armv7/omap3/Kconfig     | 1 -
39
 arch/arm/cpu/armv7/omap4/Kconfig     | 1 -
40
 arch/arm/cpu/armv7/omap5/Kconfig     | 1 -
41
 arch/arm/cpu/armv7/rmobile/Kconfig   | 1 -
42
 arch/arm/cpu/armv7/s5pc1xx/Kconfig   | 1 -
43
 arch/arm/mach-at91/Kconfig           | 1 -
44
 arch/arm/mach-bcm283x/Kconfig        | 1 -
45
 arch/arm/mach-davinci/Kconfig        | 1 -
46
 arch/arm/mach-integrator/Kconfig     | 2 --
47
 arch/arm/mach-keystone/Kconfig       | 1 -
48
 arch/arm/mach-kirkwood/Kconfig       | 1 -
49
 arch/arm/mach-nomadik/Kconfig        | 1 -
50
 arch/arm/mach-orion5x/Kconfig        | 1 -
51
 arch/arm/mach-socfpga/Kconfig        | 1 -
52
 arch/arm/mach-tegra/Kconfig          | 1 -
53
 arch/arm/mach-tegra/tegra114/Kconfig | 1 -
54
 arch/arm/mach-tegra/tegra124/Kconfig | 1 -
55
 arch/arm/mach-tegra/tegra20/Kconfig  | 1 -
56
 arch/arm/mach-tegra/tegra30/Kconfig  | 1 -
57
 arch/arm/mach-zynq/Kconfig           | 1 -
58
 arch/avr32/Kconfig                   | 1 -
59
 arch/blackfin/Kconfig                | 1 -
60
 arch/m68k/Kconfig                    | 1 -
61
 arch/microblaze/Kconfig              | 1 -
62
 arch/mips/Kconfig                    | 1 -
63
 arch/nds32/Kconfig                   | 1 -
64
 arch/nios2/Kconfig                   | 1 -
65
 arch/openrisc/Kconfig                | 1 -
66
 arch/powerpc/Kconfig                 | 1 -
67
 arch/powerpc/cpu/mpc512x/Kconfig     | 1 -
68
 arch/powerpc/cpu/mpc5xx/Kconfig      | 1 -
69
 arch/powerpc/cpu/mpc5xxx/Kconfig     | 1 -
70
 arch/powerpc/cpu/mpc8260/Kconfig     | 1 -
71
 arch/powerpc/cpu/mpc83xx/Kconfig     | 1 -
72
 arch/powerpc/cpu/mpc85xx/Kconfig     | 1 -
73
 arch/powerpc/cpu/mpc86xx/Kconfig     | 1 -
74
 arch/powerpc/cpu/mpc8xx/Kconfig      | 1 -
75
 arch/powerpc/cpu/ppc4xx/Kconfig      | 1 -
76
 arch/sh/Kconfig                      | 1 -
77
 arch/sparc/Kconfig                   | 1 -
78
 board/amcc/canyonlands/Kconfig       | 1 -
79
 board/coreboot/Kconfig               | 1 -
80
 board/dbau1x00/Kconfig               | 1 -
81
 board/google/Kconfig                 | 1 -
82
 board/intel/Kconfig                  | 1 -
83
 board/micronas/vct/Kconfig           | 1 -
84
 board/seco/Kconfig                   | 2 --
85
 board/sunxi/Kconfig                  | 1 -
86
 53 files changed, 55 deletions(-)
87
​
88
diff --git a/arch/arc/Kconfig b/arch/arc/Kconfig
89
index 925e312..640cda8 100644
90
--- a/arch/arc/Kconfig
91
+++ b/arch/arc/Kconfig
92
@@ -129,7 +129,6 @@ config ARC_CACHE_LINE_SHIFT
  • Git repository management for enterprise teams powered by Atlassian Bitbucket
  • Atlassian Bitbucket v6.7.2
  • Documentation
  • Request a feature
  • About
  • Contact Atlassian
Atlassian

Everything looks good. We'll let you know here if there's anything you should know about.