move the broadcom driver stuff into its own submenu

SVN-Revision: 4073
This commit is contained in:
Felix Fietkau 2006-06-25 16:05:43 +00:00
parent f59462b0e7
commit 44746a7f68
3 changed files with 21 additions and 4 deletions

View File

@ -74,6 +74,7 @@ define Package/Default
PRIORITY:=optional
DEFAULT:=
MENU:=
SUBMENU:=
TITLE:=
DESCRIPTION:=
endef
@ -124,6 +125,11 @@ define BuildPackage
echo "Menu: $(MENU)";
endif
ifneq ($(SUBMENU),)
DUMPINFO += \
echo "Submenu: $(SUBMENU)";
endif
ifneq ($(DEFAULT),)
DUMPINFO += \
echo "Default: $(DEFAULT)";

View File

@ -21,8 +21,8 @@ define Package/kmod-brcm-wl
CATEGORY:=Drivers
DEPENDS:=@LINUX_2_4_BRCM
DEFAULT:=y
MENU:=1
TITLE:=Proprietary BCM43xx WiFi driver
SUBMENU:=Proprietary BCM43xx WiFi driver
TITLE:=Kernel driver (normal version)
DESCRIPTION:=Proprietary Wireless driver for the Broadcom BCM43xx chipset
VERSION:=$(LINUX_VERSION)+$(PKG_VERSION)-$(PKG_RELEASE)
endef
@ -30,8 +30,7 @@ endef
define Package/kmod-brcm-wl-mimo
$(call Package/kmod-brcm-wl)
DEFAULT:=m if ALL
MENU:=
TITLE:=Proprietary BCM43xx WiFi driver (MIMO version)
TITLE:=Kernel driver (MIMO version)
DESCRIPTION:=Proprietary Wireless driver for the Broadcom BCM43xx chipset (MIMO version)
endef

View File

@ -5,6 +5,7 @@ my $src;
my $makefile;
my $pkg;
my %category;
my $cur_menu;
sub print_category($) {
my $cat = shift;
@ -15,6 +16,16 @@ sub print_category($) {
my %spkg = %{$category{$cat}};
foreach my $spkg (sort {uc($a) cmp uc($b)} keys %spkg) {
foreach my $pkg (@{$spkg{$spkg}}) {
if ($cur_menu ne $pkg->{submenu}) {
if ($cur_menu) {
print "endmenu\n";
undef $cur_menu;
}
if ($pkg->{submenu}) {
$cur_menu = $pkg->{submenu};
print "menu \"$cur_menu\"\n";
}
}
my $title = $pkg->{name};
my $c = (72 - length($pkg->{name}) - length($pkg->{title}));
if ($c > 0) {
@ -65,6 +76,7 @@ while ($line = <>) {
$line =~ /^Version: \s*(.+)\s*$/ and $pkg->{version} = $1;
$line =~ /^Title: \s*(.+)\s*$/ and $pkg->{title} = $1;
$line =~ /^Menu: \s*(.+)\s*$/ and $pkg->{menu} = $1;
$line =~ /^Submenu: \s*(.+)\s*$/ and $pkg->{submenu} = $1;
$line =~ /^Default: \s*(.+)\s*$/ and $pkg->{default} = $1;
$line =~ /^Depends: \s*(.+)\s*$/ and do {
my @dep = split /\s+/, $1;