Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 72631
b: refs/heads/master
c: e703f75
h: refs/heads/master
i:
  72629: 4b1f6d2
  72627: 3905ed5
  72623: 4442909
v: v3
  • Loading branch information
Sam Ravnborg committed Oct 25, 2007
1 parent d594d09 commit 3ba2a5e
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 14 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: d013a27cb79a01b324f93adb275162c244cca2de
refs/heads/master: e703f75d620824739148142c3734ae8223e4d1f5
28 changes: 15 additions & 13 deletions trunk/scripts/kconfig/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -4,23 +4,25 @@

PHONY += oldconfig xconfig gconfig menuconfig config silentoldconfig update-po-config

Kconfig := arch/$(ARCH)/Kconfig

xconfig: $(obj)/qconf
$< arch/$(ARCH)/Kconfig
$< $(Kconfig)

gconfig: $(obj)/gconf
$< arch/$(ARCH)/Kconfig
$< $(Kconfig)

menuconfig: $(obj)/mconf
$< arch/$(ARCH)/Kconfig
$< $(Kconfig)

config: $(obj)/conf
$< arch/$(ARCH)/Kconfig
$< $(Kconfig)

oldconfig: $(obj)/conf
$< -o arch/$(ARCH)/Kconfig
$< -o $(Kconfig)

silentoldconfig: $(obj)/conf
$< -s arch/$(ARCH)/Kconfig
$< -s $(Kconfig)

# Create new linux.po file
# Adjust charset to UTF-8 in .po file to accept UTF-8 in Kconfig files
Expand All @@ -45,27 +47,27 @@ update-po-config: $(obj)/kxgettext
PHONY += randconfig allyesconfig allnoconfig allmodconfig defconfig

randconfig: $(obj)/conf
$< -r arch/$(ARCH)/Kconfig
$< -r $(Kconfig)

allyesconfig: $(obj)/conf
$< -y arch/$(ARCH)/Kconfig
$< -y $(Kconfig)

allnoconfig: $(obj)/conf
$< -n arch/$(ARCH)/Kconfig
$< -n $(Kconfig)

allmodconfig: $(obj)/conf
$< -m arch/$(ARCH)/Kconfig
$< -m $(Kconfig)

defconfig: $(obj)/conf
ifeq ($(KBUILD_DEFCONFIG),)
$< -d arch/$(ARCH)/Kconfig
$< -d $(Kconfig)
else
@echo "*** Default configuration is based on '$(KBUILD_DEFCONFIG)'"
$(Q)$< -D arch/$(SRCARCH)/configs/$(KBUILD_DEFCONFIG) arch/$(ARCH)/Kconfig
$(Q)$< -D arch/$(SRCARCH)/configs/$(KBUILD_DEFCONFIG) $(Kconfig)
endif

%_defconfig: $(obj)/conf
$(Q)$< -D arch/$(SRCARCH)/configs/$@ arch/$(ARCH)/Kconfig
$(Q)$< -D arch/$(SRCARCH)/configs/$@ $(Kconfig)

# Help text used by make help
help:
Expand Down

0 comments on commit 3ba2a5e

Please sign in to comment.